Table of Contents

    
    
    In [4]:
    from planetarypy import io
    
    
    
    In [5]:
    io.config
    
    
    
    
    ---------------------------------------------------------------------------
    AttributeError                            Traceback (most recent call last)
    <ipython-input-5-2a42449fab28> in <module>()
    ----> 1 io.config
    
    AttributeError: module 'planetarypy.io' has no attribute 'config'
    
    
    In [3]:
    io.rootpath
    
    
    
    
    Out[3]:
    '/Volumes/Anya4TB/michi'
    
    
    In [2]:
    io.set_database_path('/Volumes/Anya4TB/michi')
    
    
    
    
    Saved database path [data_archive]
    path = "/Volumes/Anya4TB/michi"
     into /Users/klay6683/.planetarypy.toml.
    
    
    
    In [9]:
    from planetarypy.pdstools import cassini
    
    
    
    In [10]:
    cassini.META()
    
    
    
    
    Call me with one of the following index names:
    index :  Cumulative product index of volume series
    inventory :  Cumulative list of observed bodies by product
    moon_summary :  Cumulative list of observed geometry on moons
    ring_summary :  Cumulative list of observed geometry on rings
    saturn_summary :  Cumulative list of observed geometry on Saturn
    
    ---------------------------------------------------------------------------
    ValueError                                Traceback (most recent call last)
    <ipython-input-10-856c3ae328e4> in <module>()
    ----> 1 cassini.META()
    
    ~/Dropbox/src/planetarypy/planetarypy/pdstools/cassini.py in __init__(self, name)
         19             for k, v in self.INDICES.items():
         20                 print(k, ": ", v)
    ---> 21             raise ValueError("Provide index name.")
         22         else:
         23             self._name = name
    
    ValueError: Provide index name.
    
    
    In [13]:
    meta = cassini.ISS_META('ring_summary')
    
    
    
    In [14]:
    meta.folder_url
    
    
    
    
    Out[14]:
    'http://pds-rings.seti.org/metadata/COISS_2xxx/COISS_2999/'
    
    
    In [ ]: