#!/usr/bin/env python # coding: utf-8 # # pds4_utils example # # This is a work-in-progress notebook demonstrating how to use the psd4_utils module. # In[1]: from pds4_utils import read, write, dbase, cdf_utils # In[2]: get_ipython().run_line_magic('pinfo', 'dbase.index_products') # In[7]: idx = dbase.index_products(directory='/Users/mbentley/Desktop/bc_mtm_mcam/') # In[8]: idx.head() # In[9]: idx[idx.product_type=='Product_Observational'].head() # In[ ]: