Commit 7a703d39 authored by Kristin's avatar Kristin Committed by GitHub
Browse files

Fix Cassini Driver metakernel load (#195)

* Add getPosition with coefficients

* Add some exceptions and associated test

* remove debug statements and change test name

* Updated to use gsl for polynomial evaluation and separated out into a helper function. Swapped order of coeffs, other changes in response to review comments

* Added a couple of suggested tests and updated documentation

* Modify IsisLabel driver for refactor. Update test

* Create new test for ISIS Label mixin, remove changes to ISIS spice test, and updated Isis Label for review comments

* Fix cassini driver start time keyword

* remove print statement

* Removed merge-added whitespace
parent bf8d0f07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ class CassiniIssPds3LabelNaifSpiceDriver(Pds3Label, NaifSpice, Framer, RadialDis
        mks = sorted(glob(os.path.join(metakernel_dir,'*.tm')))
        if not hasattr(self, '_metakernel'):
            for mk in mks:
               if str(self.start_time.year) in os.path.basename(mk):
               if str(self.utc_start_time.year) in os.path.basename(mk):
                   self._metakernel = mk
        return self._metakernel