Skip to content
Snippets Groups Projects
Unverified Commit 4f3b906d authored by Austin Sanders's avatar Austin Sanders Committed by GitHub
Browse files

Mvic mpf driver (#485)

* Added legendre distortion model

* tests and data for mvic driver

* Initial NewHorizonsMvicIsisLabelNaifSpiceDriver

* Added missing import

* Renamed labels

* Fixed failing tests

* converted to mvic framer

* Added legendre distortion model

* tests and data for mvic driver

* Initial NewHorizonsMvicIsisLabelNaifSpiceDriver

* Added missing import

* Renamed labels

* Fixed failing tests

* Added ephemeris start/stop times

* Replaced mvic tdi isd with mvic framer isd

* Added data for mvic framer

* Updated mvic framer tests

* Address PR feedback

* deleted unused files

* Renamed mvic_isd to mvic_mpf_isd

* Address PR feedback
parent 3781ed64
No related branches found
No related tags found
No related merge requests found
Showing
with 16261 additions and 8 deletions
class LegendreDistortion():
"""
Mix-in for sensors that use a legendre distortion model.
"""
@property
def usgscsm_distortion_model(self):
"""
Expects odtx and odty to be defined. These should be lists containing
the legendre distortion coefficients
Returns
-------
: dict
Dictionary containing the usgscsm distortion model
"""
return {
"legendre":{
"x_coefficients" : self.odtx,
"y_coefficients" : self.odty
}
}
class RadialDistortion():
"""
Mix-in for sensors that use a radial distortion model.
......
......@@ -7,7 +7,7 @@ import spiceypy as spice
import numpy as np
from ale.base import Driver
from ale.base.type_distortion import NoDistortion
from ale.base.type_distortion import NoDistortion, LegendreDistortion
from ale.base.data_naif import NaifSpice
from ale.base.label_isis import IsisLabel
from ale.base.type_sensor import Framer
......@@ -50,7 +50,6 @@ class NewHorizonsLorriIsisLabelNaifSpiceDriver(Framer, IsisLabel, NaifSpice, NoD
1x1 binning: -98301
4x4 binning: -98302
Returns
-------
: integer
......@@ -60,14 +59,42 @@ class NewHorizonsLorriIsisLabelNaifSpiceDriver(Framer, IsisLabel, NaifSpice, NoD
@property
def detector_center_line(self):
"""
The center of the CCD in detector pixels
Expects ikid to be defined. this should be the integer Naif ID code for
the instrument.
Returns
-------
list :
The center of the CCD formatted as line, sample
"""
return float(spice.gdpool('INS{}_BORESIGHT'.format(self.ikid), 0, 3)[0])
@property
def detector_center_sample(self):
"""
The center of the CCD in detector pixels
Expects ikid to be defined. this should be the integer Naif ID code for
the instrument.
Returns
-------
list :
The center of the CCD formatted as line, sample
"""
return float(spice.gdpool('INS{}_BORESIGHT'.format(self.ikid), 0, 3)[1])
@property
def sensor_name(self):
"""
Returns the name of the instrument
Returns
-------
: str
Name of the sensor
"""
return self.label['IsisCube']['Instrument']['SpacecraftName']
@property
......@@ -194,3 +221,208 @@ class NewHorizonsLeisaIsisLabelNaifSpiceDriver(LineScanner, IsisLabel, NaifSpice
Exposure duration in seconds
"""
return self.label['IsisCube']['Instrument']['ExposureDuration']
class NewHorizonsMvicIsisLabelNaifSpiceDriver(Framer, IsisLabel, NaifSpice, LegendreDistortion, Driver):
"""
Driver for reading New Horizons MVIC ISIS3 Labels. These are Labels that have been
ingested into ISIS from PDS EDR images but have not been spiceinit'd yet.
"""
@property
def parent_id(self):
"""
The base naif id of the spacecraft. For New Horizons, this is -98000.
Required for distortion coefficients, which are not unique to instruments,
but are instead shared by all instruments on the spacecraft + residuals.
Returns
-------
: int
Naif id of the spacecraft
"""
return round(self.ikid, -2)
@property
def sensor_model_version(self):
"""
Returns instrument model version
Returns
-------
: int
ISIS sensor model version
"""
return 1
@property
def instrument_name(self):
"""
The name of the instrument. This is not included in the .fit label, but is
present in the .lbl file, so it is not present in ISIS conversion, and it
must be hard-coded.
Returns
-------
: str
Name of the instrument
"""
return "MULTISPECTRAL VISIBLE IMAGING CAMERA"
@property
def instrument_id(self):
"""
Returns an instrument id for uniquely identifying the instrument, but often
also used to be piped into Spice Kernels to acquire IKIDs. Therefore they
the same ID the Spice expects in bods2c calls.
Returns
-------
: str
instrument id
"""
id_lookup = {
"MVIC_FRAMING" : "NH_MVIC"
}
return id_lookup[super().instrument_id]
@property
def ikid(self):
"""
Overridden to grab the ikid from the Isis Cube since there is no way to
obtain this value with a spice bods2c call. Isis sets this value during
ingestion, based on the original fits file.
Returns
-------
: integer
Naif Integer ID code for the instrument
"""
return self.label['IsisCube']['Kernels']['NaifFrameCode'][0]
@property
def detector_center_line(self):
""" Returns detector center line. This information is found in ik/nh_ralph_v100.ti, which
is not loaded as an ik."""
return -1
@property
def detector_center_sample(self):
""" Returns detector center line. This information is found in ik/nh_ralph_v100.ti, which
is not loaded as an ik."""
return 0
@property
def sensor_name(self):
"""
Returns the name of the instrument
Returns
-------
: str
Name of the sensor
"""
return self.label['IsisCube']['Instrument']['SpacecraftName']
@property
def odtx(self):
"""
Returns the x coefficient for the optical distortion model
Expects ikid to be defined. This must be the integer Naif id code of the instrument
Returns
-------
: list
Optical distortion x coefficients
"""
return spice.gdpool('INS{}_DISTORTION_COEF_X'.format(self.parent_id),0, 20).tolist()
@property
def odty(self):
"""
Returns the y coefficient for the optical distortion model.
Expects ikid to be defined. This must be the integer Naif id code of the instrument
Returns
-------
: list
Optical distortion y coefficients
"""
return spice.gdpool('INS{}_DISTORTION_COEF_Y'.format(self.parent_id), 0, 20).tolist()
@property
def band_times(self):
if not hasattr(self, "_ephem_band_times"):
band_times = self.label['IsisCube']['BandBin']['UtcTime']
self._ephem_band_times = []
for time in band_times:
if type(time) is pvl.Quantity:
time = time.value
self._ephem_band_times.append(spice.utc2et(time.strftime("%Y-%m-%d %H:%M:%S.%f")))
return self._ephem_band_times
@property
def ephemeris_time(self):
"""
Returns an array of times between the start/stop ephemeris times
based on the number of lines in the image.
Expects ephemeris start/stop times to be defined. These should be
floating point numbers containing the start and stop times of the
images.
Expects image_lines to be defined. This should be an integer containing
the number of lines in the image.
Returns
-------
: ndarray
ephemeris times split based on image lines
"""
if not hasattr(self, "_ephemeris_time"):
self._ephemeris_time = np.linspace(self.ephemeris_start_time, self.ephemeris_stop_time, self.image_lines + 1)
return self._ephemeris_time
@property
def ephemeris_start_time(self):
"""
Returns the ephemeris start time of the image.
Expects spacecraft_id to be defined. This should be the integer
Naif ID code for the spacecraft.
Returns
-------
: float
ephemeris start time of the image
"""
return self.band_times[0]
@property
def ephemeris_stop_time(self):
"""
Returns the ephemeris stop time of the image.
Expects spacecraft_id to be defined. This should be the integer
Naif ID code for the spacecraft.
Returns
-------
: float
ephemeris stop time of the image
"""
return self.band_times[-1]
@property
def naif_keywords(self):
"""
Adds base NH instrument distortion, which is shared among all instruments on NH.
Returns
-------
: dict
Dictionary of keywords and values that ISIS creates and attaches to the label
"""
return {**super().naif_keywords,
f"INS{self.parent_id}_DISTORTION_COEF_X": self.odtx,
f"INS{self.parent_id}_DISTORTION_COEF_Y": self.odty}
\ No newline at end of file
This diff is collapsed.
DAFETF NAIF DAF ENCODED TRANSFER FILE
'DAF/CK '
'2'
'6'
' < DAFCAT: CK CONCATENATION > '
BEGIN_ARRAY 1 115
'nhpc '
'D7129C6B335^B'
'D712BD291C4^B'
'-17ED0'
'1'
'3'
'1'
115
'3541222C7874E8^0'
'-2A62D649E275CA^0'
'F3EC2A94272238^0'
'257C5FC00EFA76^0'
'-1A600588F08F2A^-3'
'130A28F352395B^-3'
'18F76CFA6C842^-4'
'355E1566128968^0'
'-2A69CFBA427C96^0'
'F3E57340DF9D9^0'
'2577030F5A5862^0'
'-33DC38D688F99E^-3'
'CAF88235126F08^-4'
'-AD8931F1833048^-5'
'354159B4EFBBDC^0'
'-2A6C536067585A^0'
'F3E6F0B376F5D^0'
'25934F4C4FFC46^0'
'64488A1DD6A81C^-4'
'-1A248844F809C3^-3'
'43D8F0822AE73^-4'
'3510044E0863DA^0'
'-2A67ED8B6346BC^0'
'F3ED5B3D264FA^0'
'25B45C75F45C82^0'
'-24711E0AC564A8^-3'
'-28B109DF586D22^-3'
'-1A25FEB8873B4^-3'
'34DFD8F30F550E^0'
'-2A628A6CEFE608^0'
'F3F3DFF897C368^0'
'25D3DD23E1AB38^0'
'-6DD152C288660C^-3'
'-261B97E3DB9C5E^-3'
'-3925C4AEBCCBC6^-3'
'34AEB3111C22BC^0'
'-2A5FFC72696D6E^0'
'F3F98E76967BA^0'
'25F69807733BE2^0'
'-4DD35FA1FF3F94^-3'
'-1AE724F4C9585^-3'
'-16FDB40D0E4007^-3'
'348AFFF922397A^0'
'-2A5F71F5DEDDA^0'
'F3FC896FC3662^0'
'261578556B6ED8^0'
'2AC1D2DB1D38FC^-3'
'-11E3398F20153^-3'
'-5FE39A8C62FB1C^-4'
'3483CF1F604F88^0'
'-2A5F89A813FD4^0'
'F3FCE7F0FAA2E8^0'
'261CEADDD748E4^0'
'-9401AC175C60F^-4'
'1496427C9129D2^-4'
'6D70E5E2FF5CC^-5'
'34A65FFF207F9E^0'
'-2A65BE1374FC5C^0'
'F3F4FA17AD1EA^0'
'2619158D461F7A^0'
'99C6712747A6B8^-4'
'1B6B63D0FCF03D^-3'
'23EF3886980DD6^-3'
'34CED6641CAC8^0'
'-2A68AE76ABD89A^0'
'F3ED5827641CE8^0'
'260EAD72265B64^0'
'-84486D81EA5948^-3'
'5AA8F009BCACB8^-4'
'-2495BA8768A4BC^-3'
'34F9603B0CADB6^0'
'-2A76D654C27832^0'
'F3E111CAD11CB^0'
'261270DEF692CE^0'
'102F71B3C3473F^-3'
'213EE43668C54E^-3'
'280235008374A4^-3'
'3522680001FFD2^0'
'-2A7FF616395D9^0'
'F3D6C49F32C598^0'
'261110E526ED42^0'
'50465B7881B344^-3'
'176D23B6E00A03^-3'
'27E005F7DE4EA^-3'
'354CDC5B5D4022^0'
'-2A84E6B87538F4^0'
'F3CE06E24B59B8^0'
'26082EA0A18F3^0'
'-17EE0CF16119EE^-3'
'110F69B7B92292^-3'
'-533C7942B7BD^-4'
'356523A1C54C4E^0'
'-2A8D629DB77E6A^0'
'F3C63629B6C8D^0'
'260EBBA2992546^0'
'31040575DBEB0E^-3'
'69F3FBDB2E462^-4'
'85F55F0A45107^-4'
'D7129C6B335^B'
'D7129E086F^B'
'D712A0E4DB^B'
'D712A3C147^B'
'D712A69DB3^B'
'D712A97A1F^B'
'D712AB8706^B'
'D712AC568B^B'
'D712AF32F7^B'
'D712B20F63^B'
'D712B4EBCF^B'
'D712B7C83B^B'
'D712BAA4A7^B'
'D712BD291C4^B'
'D7129C6B335^B'
'1^1'
'E^1'
END_ARRAY 1 115
TOTAL_ARRAYS 1
~NAIF/SPC BEGIN COMMENTS~
This CK is for testing with the image: /Users/arsanders/pds/nh/mvic/small/mpf/mpf_0295610274_0x539_sci_isis.cub
This CK was generated using the following command: {}
~NAIF/SPC END COMMENTS~
DAFETF NAIF DAF ENCODED TRANSFER FILE
'DAF/CK '
'2'
'6'
' < DAFCAT: CK CONCATENATION > '
BEGIN_ARRAY 1 924
'nhpc '
'D715AADF1C8^B'
'D715C40C6C8^B'
'-17ED0'
'1'
'3'
'1'
924
'AE67914029AAE8^0'
'27ADBFE2E02454^0'
'5259BF8D8713C8^0'
'-A39817577AB82^0'
'-6E2BECE8308A78^-4'
'758A7F4019B96C^-4'
'8536C2D86C8248^-4'
'-AE678574281488^0'
'-27ADCDCE77BB7C^0'
'-525998E5CA8BB4^0'
'A39834000AF6C8^0'
'-6B0896F37EFFFC^-4'
'785CDE0E65F03^-4'
'8A547F284DB378^-4'
'-AE66D0DEACBE38^0'
'-27AEE0BCECFB84^0'
'-52573483DD3E5C^0'
'A399E60FF8232^0'
'-58D40259068AC8^-4'
'-106583D45A42AC^-4'
'51D30AF9550074^-4'
'-AE66223176BF98^0'
'-27AFA7292E8A72^0'
'-5254D7C7A6EF^0'
'A39BA079C11E68^0'
'-45596F193A18A8^-4'
'39CBB1EDC6ADBA^-4'
'220AD9708FFC48^-4'
'-AE655EEA125EE^0'
'-27B05C41D72982^0'
'-52527B4F697E9C^0'
'A39D74DBF26C58^0'
'-9A1393A413BAB^-4'
'3F7AC80D495BA8^-4'
'3DFDAB024571F2^-4'
'-AE64A2B9C00138^0'
'-27B0E5D0802C42^0'
'-52500ADF73CC94^0'
'A39F563B4189^0'
'-B598566C489788^-4'
'15C021DC03D582^-4'
'4BFE65EB5F07B8^-4'
'-AE63BC058C1F98^0'
'-27B1A9B67105BE^0'
'-524DBF085863D8^0'
'A3A1444A9984F8^0'
'-C2CA25F614978^-4'
'3AD6FCAA079012^-4'
'5285DD519FA0E8^-4'
'-AE62DA725BF118^0'
'-27B25A7F6F7078^0'
'-524B49C91AB37C^0'
'A3A34648463A58^0'
'-52338EACFF7414^-4'
'6BAFEAB618ED4C^-4'
'5D0D154EF242FC^-4'
'-AE61E85F823978^0'
'-27B3139C255CE6^0'
'-5248CC635577A4^0'
'A3A55BDD04E1F^0'
'-45D647394538F4^-4'
'55559DF0D4CD68^-4'
'4E84C9AB284328^-4'
'-AE610976F9B83^0'
'-27B3AD28E5D7B4^0'
'-5246290773DC58^0'
'A3A777B101FD9^0'
'-4E8BE5A31E5004^-4'
'6E3E2070834854^-4'
'16031B3DE7BAE^-4'
'-AE601BD57893A8^0'
'-27B48157C87322^0'
'-5243CFAF057A2^0'
'A3A96FB3BB1E08^0'
'-77466A10CD92C4^-4'
'729BE0561FF018^-4'
'852DBC7D4835D^-4'
'-AE5F21EF3629C^0'
'-27B5689034CBEA^0'
'-5241209D00FB88^0'
'A3AB9B2E308EB^0'
'-DD8CB12AAAD4E8^-4'
'32784A5A271946^-4'
'2C18BDA3D0E914^-4'
'-AE5DFBC9574A28^0'
'-27B6197574E682^0'
'-523E99DC7E2668^0'
'A3ADEEA2716ED8^0'
'-68AE04E24F37E^-4'
'619C6EE38DEC8^-4'
'5D8A3272D1B3BC^-4'
'-AE9761F0A14278^0'
'-27EEF83CFC3552^0'
'-52BC78850FD5A^0'
'A3233EAEAE0EC^0'
'14CFA41A2EA3F4^-2'
'-6C617F92E31E24^-3'
'-150E00E7BEC43D^-2'
'-AEAE9CCAFB8368^0'
'-27EA94596AACF8^0'
'-52DFBEECF4AABC^0'
'A2F986BC609F1^0'
'2CC1B43F5BCB34^-3'
'-18EE0A6039A8ED^-3'
'-B4F43505C1D528^-4'
'-AEAFFA418C9A2^0'
'-27E74370BB47C4^0'
'-52EBFD0365EA98^0'
'A2F2A5BB716C08^0'
'1FFEBD81AF3A46^-3'
'-1CD44FD7AED6E9^-3'
'DDA303B62E4AB^-5'
'-AEAD4985890BF8^0'
'-27E862564DEE02^0'
'-52F19A70F5DCA^0'
'A2F266386C6728^0'
'E1C4482E572258^-4'
'-2654E04C0601B^-3'
'F7BBA83A7AB9C^-4'
'-AEACBACF58609^0'
'-27E8A296750AF8^0'
'-52F2D63C0C278C^0'
'A2F24EB7B84018^0'
'129BE9AA82C976^-3'
'-2064968DE9261A^-3'
'127A29C4A79348^-3'
'-AEAC1BBBB71498^0'
'-27E8F07F4F73FE^0'
'-52F3F7B76041C8^0'
'A2F252CB93C16^0'
'D5944E57098E^-4'
'-23FF6CDF6BF74C^-3'
'11B485A6054A53^-3'
'-AEAB8CF3049D8^0'
'-27E92E136BBF5^0'
'-52F51EF769BEEC^0'
'A2F24675D81D7^0'
'9D821333AD9EC^-4'
'-237C6079AB3BA6^-3'
'FF9397A2B16328^-4'
'-AEAAFD6C5540D^0'
'-27E92F7D88AC12^0'
'-52F5DD1FB81AC8^0'
'A2F27F271B0A7^0'
'9DE9C840F8EAA8^-4'
'-10CBDBF319F64C^-3'
'14502160E2D701^-3'
'-AEAA9354D51B3^0'
'-27E8A22F15FF3A^0'
'-52F63EE5DE9368^0'
'A2F2E1B45B929^0'
'AA8EA6F3261CB^-4'
'-CA605E706DCB^-5'
'179DAC50E8D805^-3'
'-AEAA29C6B18A4^0'
'-27E818BC7C188^0'
'-52F69CC73E637^0'
'A2F344B6BBC948^0'
'974B67499B5A28^-4'
'-1F35D58B8311AF^-4'
'1771D66014329C^-3'
'-AEA9BE7DABA228^0'
'-27E78EBDD89E28^0'
'-52F6F7F227F788^0'
'A2F3AB1686734^0'
'B2A6167A80DB7^-4'
'-D3079C1A4422E^-5'
'194B55C2F84C04^-3'
'-AEA94F576C0278^0'
'-27E6F6F27F898C^0'
'-52F74FE19CEF0C^0'
'A2F41A9FC6EAA^0'
'10ECA9830D4C4A^-3'
'-16F2FDE390BFA8^-4'
'1A456E6BDDC6E2^-3'
'-AEA8CBAF9B4DC^0'
'-27E675259A6DDA^0'
'-52F79B5A13A46^0'
'A2F4A11857F798^0'
'751999B7CB9198^-4'
'CB137DC9B5F418^-5'
'1D6EFF043EEAD3^-3'
'-AEA86603A87D8^0'
'-27E5E790EA573E^0'
'-52F7DCB9012588^0'
'A2F50F7351E798^0'
'789F634EB49C6C^-4'
'2C635CAEF06C6A^-4'
'191458BDCE61EF^-3'
'-AEA7F447BF9A48^0'
'-27E55057F61D36^0'
'-52F81248FF2EE^0'
'A2F5931A2A1EF8^0'
'98391ADF6553B^-4'
'37FCA382E5E7F8^-4'
'19A2729BFDC64E^-3'
'-AEA7AB4D8D1E48^0'
'-27E4F2782106B2^0'
'-52F81498810624^0'
'A2F5F71F5C0148^0'
'-1B4BAEB9969735^-4'
'29F4804D17CB6C^-4'
'DF8B41D202475^-4'
'-AEA7884AAADEC^0'
'-27E503B50824CA^0'
'-52F7A92A57A3EC^0'
'A2F64F1F2BE98^0'
'-166C4986E556CB^-3'
'A6C8C3A45365B8^-4'
'500E89DE57A408^-4'
'-AEA77B0798379^0'
'-27E502E8DA75E^0'
'-52F70502D1A6E8^0'
'A2F6B11A6DD83^0'
'-130A07FD293E18^-3'
'106D897065B06D^-3'
'3453ABC2B339F2^-4'
'-AEA76AE56873D^0'
'-27E4FA5FEC0132^0'
'-52F65F002D7D^0'
'A2F718FF6C0D98^0'
'-E1F29FB7920958^-4'
'10D3E522F3D283^-3'
'43AEF930EE0B2C^-4'
'-AEA765EEBBBD^0'
'-27E51A599C2056^0'
'-52F5AE8173D394^0'
'A2F7705682BED8^0'
'-17EEEE4DFA1621^-3'
'C08A353898F698^-4'
'5DEF7604F75B18^-4'
'-AEA74F3253AA48^0'
'-27E53B1FAA4F4A^0'
'-52F4FCBED5CB34^0'
'A2F7DB2B754038^0'
'-17CD11D82E5855^-3'
'C11A63D14D18C^-4'
'4912A31B3A8D6C^-4'
'-AEA750CD4CA26^0'
'-27E552F2E014A4^0'
'-52F44887BD52F8^0'
'A2F82F59EDCA18^0'
'-10872E3C7ADBA^-3'
'115D283AB288A^-3'
'22A2F4DBA35A98^-4'
'-AEA74CE51BDD3^0'
'-27E57E1F6C846A^0'
'-52F37F75114EA^0'
'A2F88F50F96B6^0'
'-15AD06AC313F2C^-3'
'AAB31FA61AC198^-4'
'-11CD324E180A54^-5'
'-AEA741454C3CD^0'
'-27E5A31B1BAA66^0'
'-52F2C1427E0418^0'
'A2F8F386F7F46^0'
'-19FEF32CC8E30A^-3'
'10CCDC6C2A7671^-3'
'5AD99D7A96ACB4^-4'
'-AEA74AFF2C04D8^0'
'-27E5AB002EA73E^0'
'-52F1F9822B5374^0'
'A2F94CD62EEC78^0'
'-19CBA7B6ED7B27^-3'
'10F1338DDCE7F^-3'
'-387FD5FAE92672^-5'
'-AEA748BF9B90B^0'
'-27E5D04B718D98^0'
'-52F143430E62F^0'
'A2F9A2DE4A4E58^0'
'-1BEAFA4B8E38C^-3'
'E8567F7A83D1F^-4'
'3A0AD799704536^-4'
'-AEA7437D6A236^0'
'-27E5E92B79C1BE^0'
'-52F0875A19817C^0'
'A2FA020B5D66D8^0'
'-1634F019D3FB1F^-3'
'DDFF133457DB28^-4'
'-18A7EC49F24D27^-4'
'-AEA74877A658F^0'
'-27E60EFAFDEB0E^0'
'-52EFCE4C49C9C^0'
'A2FA51A075EAD8^0'
'-12DF6EC97A39F^-3'
'137542CFA33ECD^-3'
'20B23ACB582C08^-4'
'-AEA745D27BD8B8^0'
'-27E621B99CE062^0'
'-52EEFFB2C2739C^0'
'A2FAB9015B8BE^0'
'-135E770A14D586^-3'
'15005D335CA014^-3'
'1BA4781CF89FFC^-4'
'-AEA7519BEE2388^0'
'-27E623C065C958^0'
'-52EE44C973CD34^0'
'A2FB0AFCD70058^0'
'-1073257C83E7D8^-3'
'1223695E1DA24F^-3'
'3B5B59CBBB15E2^-4'
'-AEA76B6C6EE62^0'
'-27E643057C8B3^0'
'-52ED6F656A58F^0'
'A2FB543F818BA^0'
'-17417114D21178^-3'
'C8D1EF3D76115^-4'
'-F581525834D168^-5'
'-AEA7699433987^0'
'-27E660A3C52D6^0'
'-52EC99DB323C24^0'
'A2FBBB9F9F103^0'
'-178AFAB893EF97^-3'
'12130C65A7893^-3'
'-37856E8BAD7D0A^-4'
'-AEA7828164B3E8^0'
'-27E670D161A49^0'
'-52EBD38973F63C^0'
'A2FC01DA2A5BD^0'
'-16C3FC7723B35E^-3'
'1287CF76DDB823^-3'
'23E3EBE040BDD6^-4'
'-AEA7906A16B92^0'
'-27E6BC9141EE56^0'
'-52EAF8AC39D594^0'
'A2FC4FC056AC7^0'
'-1ED6DDD5255242^-3'
'D378FB029A8E9^-4'
'-47A59612089D08^-4'
'-AEA7AD0F4FC6E8^0'
'-27E6C33E9FDCBE^0'
'-52EA3B9953D5^0'
'A2FC8F9BC989A^0'
'-11C7D4F3B5509E^-3'
'157E358FFF3E9E^-3'
'7CBD8B04413568^-5'
'-AEA7CAB59AFFE8^0'
'-27E6D05677EE44^0'
'-52E9800780BE64^0'
'A2FCCC0CCC3B7^0'
'-1168116BF893C8^-3'
'104D67FE48623F^-3'
'-2948AC39F5AFFA^-4'
'-AEA7B563E0FCA8^0'
'-27E6DB1DECC228^0'
'-52E8C2851EB7D8^0'
'A2FD40A873DC1^0'
'-16FE8ED2B77929^-3'
'C2584CD7D6A7E^-4'
'427B1C2E664E7^-4'
'-AEA7C68FB7BEA8^0'
'-27E6DEB90F30CC^0'
'-52E7E8C3EC64DC^0'
'A2FD9C23BB7FF^0'
'-191F78B2ED93B8^-3'
'1202B6A4EF3CC1^-3'
'6F128A5821BA18^-6'
'-AEA7CBFCBFB368^0'
'-27E722EF211CFC^0'
'-52E71170B2BF2C^0'
'A2FDF3265A18D^0'
'-158FF1FEA0400E^-3'
'10E3047B012F39^-3'
'-CE507154A82808^-5'
'-AEA7D72EB51E5^0'
'-27E72D7EB54B6C^0'
'-52E644830D281C^0'
'A2FE4CCC65E48^0'
'-12C6AE246DB7F2^-3'
'162A6E5A061A87^-3'
'2833301DF6AB1A^-4'
'-AEA7E483E7B5E^0'
'-27E759C299F7AE^0'
'-52E5714FC3F0D^0'
'A2FE9F171C09E^0'
'-165943370EDA98^-3'
'150FDCA47E64B6^-3'
'-75596BD697CEC4^-5'
'-AEA7EDCD8E5A38^0'
'-27E7747A2FC078^0'
'-52E49858D19E8^0'
'A2FEFCF06D2AD8^0'
'-16D6DA938CB24D^-3'
'12821FF78F714^-3'
'117E39BE4A6655^-4'
'-AEA7F70ABAE9C8^0'
'-27E7AB98FABDD4^0'
'-52E3EAF6F0598^0'
'A2FF3DB7D9663^0'
'-18FA8D4A3A28E3^-3'
'116FFC2DB6363B^-3'
'20A3854C9EB43E^-4'
'-AEA7FF48F6A9A8^0'
'-27E7D57B24587C^0'
'-52E318C0E5A344^0'
'A2FF95878C93B8^0'
'-1B5C12E6CF7003^-3'
'A548811E4DE33^-4'
'368ACE3209E34A^-4'
'-AEA7E74C3550D8^0'
'-27E80AF35B7C5C^0'
'-52E224AC313FF^0'
'A3001E41BEF25^0'
'-17DA01679408B2^-3'
'E60B36F3C91558^-4'
'-8B5F3428036F2^-6'
'-AEA7F13816B608^0'
'-27E83FAFD2931A^0'
'-52E1725B9BF5B^0'
'A30061622F5688^0'
'-18D5C3945DA08E^-3'
'C897CE5E50F3^-4'
'-1608B5F18EE158^-4'
'-AEA7D1AC84F7D^0'
'-27E8DE2714DA1C^0'
'-52E0F325321F4^0'
'A3009D11890DA8^0'
'-112D9A42C06E25^-3'
'-5E248F48363FB^-4'
'-5609A23B0C3514^-4'
'-AEA7C7318C3E5^0'
'-27E9867A4FEEF8^0'
'-52E09E28673E6C^0'
'A300AA4BA62008^0'
'-1040AE95520DAE^-3'
'-3B23E37BE9C9C4^-4'
'-932C1A2DC04288^-4'
'-AEA7E7AF152C48^0'
'-27E9D74A929CC4^0'
'-52E08A2DF81894^0'
'A3007DDA22709^0'
'3CFAC2BD2841^-4'
'-3625EDBCB53D2A^-4'
'-A60B08AB1FB62^-4'
'-AEA7DE45EB6A08^0'
'-27E9DE597FF344^0'
'-52E0F94B6F37F^0'
'A3004DB607E3A^0'
'C92FE1F1351BE^-4'
'-E168D5A7DC97C8^-4'
'-1D8EAC398E05A^-4'
'-AEA7DD5B995BB8^0'
'-27E9F5BD49174C^0'
'-52E16EA6D5717^0'
'A3000D4AF32848^0'
'AC75F7954114^-4'
'-C025B660C7B9^-4'
'F4FAA0291BC7F^-7'
'-AEA7CA81AF00E8^0'
'-27E9E8ED279176^0'
'-52E21293D57C6C^0'
'A2FFD146DE46D^0'
'E8A2F82D004F8^-4'
'-E837F94824F38^-4'
'-988C4EAB8CE158^-5'
'-AEA7A418BBE388^0'
'-27E9C2AE4DDDCC^0'
'-52E2B623404528^0'
'A2FFB0A1020848^0'
'C3E42791467928^-4'
'-9F5A1E2862242^-4'
'83BCA0A2022BA8^-4'
'-AEA796290E1^0'
'-27E9A566719B18^0'
'-52E36824B0DC^0'
'A2FF6C36997608^0'
'165192B307872A^-3'
'-FE2870A65F301^-4'
'-6B5290C965F354^-4'
'-AEA77B016252C^0'
'-27E99C0B58BF62^0'
'-52E41FA0BF28F4^0'
'A2FF2E4B0369D8^0'
'114A5D87DD6215^-3'
'-109E0D5E300D13^-3'
'-1574F24DFD191D^-4'
'-AEA762C0A7018^0'
'-27E9881E9BF13E^0'
'-52E4E0AB5B915^0'
'A2FEEAFCB8A2C8^0'
'151B4AAEC9519D^-3'
'-17C67078FF5B8A^-3'
'27E5195822D712^-5'
'-AEA749661B3BA8^0'
'-27E9601FF2C29C^0'
'-52E5A10B06501C^0'
'A2FEAE1C6A4BE8^0'
'17FD0C7AC0E1D4^-3'
'-EC0AE18BA68D38^-4'
'-154F0D64F4E717^-4'
'-AEA733B2DF02^0'
'-27E95131366F96^0'
'-52E65CB0FF35D4^0'
'A2FE69951A0308^0'
'1360F6C866E08E^-3'
'-12672947E3AA0E^-3'
'6E66DF3FD0627^-5'
'-AEA706EF68A3F8^0'
'-27E9244A41B45E^0'
'-52E713959DD49^0'
'A2FE478537EEB8^0'
'173B749A6AB924^-3'
'-DACBA8C767797^-4'
'10D02B8FBDD664^-4'
'-AEA6EEA4F2EDE8^0'
'-27E9009E55FA2A^0'
'-52E7DFB2A824^0'
'A2FE0276B305A^0'
'1969D7BC224B12^-3'
'-EA60B86F60069^-4'
'4AC42B93A5F978^-6'
'-AEA6DD395E51C^0'
'-27E8F250F41B1^0'
'-52E8BCBA348994^0'
'A2FDA83400BD18^0'
'135ED96FA08C53^-3'
'-102B1E01030544^-3'
'-5A8FF4019FE87^-5'
'-AEA6BCA6825088^0'
'-27E8DBC9F242BC^0'
'-52E982DBF2AB24^0'
'A2FD6BD6388EB8^0'
'EC162320CB9038^-4'
'-13878C754A7305^-3'
'1169706282805D^-4'
'-AEA6A81F64A9D^0'
'-27E8C168C24094^0'
'-52EA428635575C^0'
'A2FD26CAA1839^0'
'10570CCAE2A01^-3'
'-14C476FCC51ECE^-3'
'320DAA274AB878^-4'
'-AEA693BEF0D0D8^0'
'-27E89FA3BDC296^0'
'-52EB055BF4A434^0'
'A2FCE1C6FDAA9^0'
'FDF6F98025105^-4'
'-12DFE2869C267E^-3'
'2EB84E0A2F1A62^-4'
'-AEA69F3122878^0'
'-27E884DB354D8A^0'
'-52EBE151AFDF94^0'
'A2FC6C2A59DC28^0'
'1988172165B35^-3'
'-1098FAF2BB52FB^-3'
'-129753B55B31DC^-4'
'-AEA6902C2F87E^0'
'-27E86068BC40A2^0'
'-52ECA56CDAF874^0'
'A2FC216901EDF^0'
'15A0612478C1A2^-3'
'-EE82298D67255^-4'
'33E93045E9DA3E^-4'
'-AEA6A5F88CFFA^0'
'-27E8436ECB54F4^0'
'-52ED94857EC1E^0'
'A2FB977E8675A8^0'
'165569FC1C604E^-3'
'-F97BEFEDC39458^-4'
'-130B56F9696009^-4'
'-AEA69866A81BB^0'
'-27E829B913204C^0'
'-52EE580409F6C8^0'
'A2FB48DBBBFDF^0'
'1B9307EFED2248^-3'
'-AE9BA78BC9542^-4'
'-112B732D3C41AE^-5'
'-AEA69598C86FA8^0'
'-27E827237B745C^0'
'-52EF37624E481C^0'
'A2FADAD5D0C868^0'
'1184C62B30541^-3'
'-10299FFE14B85B^-3'
'13E7BECA3962BE^-4'
'-AEA67B6D5B03C8^0'
'-27E80B6D265646^0'
'-52F00AD293769C^0'
'A2FA921197DC7^0'
'121BCF68FD98FB^-3'
'-121FA7918803F7^-3'
'70B687998D277^-5'
'-AEA6652F92BE58^0'
'-27E7FC17C4C8CA^0'
'-52F0DE4BE43764^0'
'A2FA4209ECC5F8^0'
'11C256A8106F4A^-3'
'-132A7365EC2F61^-3'
'63E382886F9EAC^-5'
'-AEA658BB19E5F8^0'
'-27E7E01BF3C488^0'
'-52F1AEB183A2F^0'
'A2F9EC2E184198^0'
'192A2E36A7984B^-3'
'-10C957E4A0A272^-3'
'F9FE32EDC86278^-5'
'-AEA65E35C81A3^0'
'-27E7D93BCF68F4^0'
'-52F288219E14E^0'
'A2F97953E0D2F^0'
'1629D481722393^-3'
'-ED5E9BA182AFE8^-4'
'14F6FE169F6182^-4'
'-AEA6499DE70EA8^0'
'-27E7BAF0091A8E^0'
'-52F35D3A617EB^0'
'A2F92A5AB96068^0'
'178231209147D^-3'
'-1206A66BD41151^-3'
'156867BDCBAF31^-4'
'-AEA6351B8EF6A8^0'
'-27E7A61369468A^0'
'-52F4172668D84^0'
'A2F8E6CEDF4C8^0'
'1626E0201DEC6F^-3'
'-111280C2A2D13^-3'
'-634D25568429BC^-4'
'-AEA62CBC08E638^0'
'-27E78964F9C4F4^0'
'-52F4DC38F25068^0'
'A2F8927DC2197^0'
'195F16D4A8E565^-3'
'-F8C55EEBA9705^-4'
'-5484256B5FE14C^-4'
'-AEA60EE6D93568^0'
'-27E754C9A569A8^0'
'-52F58C1DEEF508^0'
'A2F865CE65725^0'
'10193417CDF00A^-3'
'-153679DA8DBDEE^-3'
'-FE974634148178^-5'
'-AEA60911BA9698^0'
'-27E72CE271C35A^0'
'-52F646CAC015E^0'
'A2F816CC9215C8^0'
'122438426E7E45^-3'
'-117022A2D8422C^-3'
'-DABEDA4F45667^-5'
'-AEA5F89BBE4098^0'
'-27E70CE0AB42D4^0'
'-52F714116E8D34^0'
'A2F7C7C6733648^0'
'156C0BBDEB8E1C^-3'
'-139AA1D7D95DE5^-3'
'-16616C99773BFC^-4'
'-AEA5E2A55E7618^0'
'-27E6E3387ADD68^0'
'-52F7E94FC01834^0'
'A2F77CF2F28BD8^0'
'12CF318BF4B30D^-3'
'-10CF5E7528AFA8^-3'
'17A8B2203C26E9^-4'
'-AEA5E760640EF^0'
'-27E708CC13BD52^0'
'-52F83B7DC8CD28^0'
'A2F744D6EFA648^0'
'40966CD977D3CC^-4'
'-9C20F84D2EB548^-4'
'-68B2A8B2C54CE4^-4'
'-AEA655B0E44978^0'
'-27E72E5DA6BE84^0'
'-52F7D2FA39B914^0'
'A2F6FAA0A581E8^0'
'-536371FDA912C^-4'
'A557EF4EDF0778^-4'
'-146A4FD23CEBC7^-3'
'-AEA6C9DEF6F988^0'
'-27E73E488B656C^0'
'-52F7008E4B705^0'
'A2F6E558944BE^0'
'-BFE56C6CD3AAE^-4'
'15495F4349932F^-3'
'-17592404F85EA4^-3'
'-AEA74468ACFCB^0'
'-27E776ADBBC5A2^0'
'-52F63A12ACED6^0'
'A2F6B9417954B^0'
'-1444A5EF10AD31^-3'
'1165127BE398CD^-3'
'-130793952C3413^-3'
'-AEA7CE81D073A8^0'
'-27E7B6C10562FE^0'
'-52F55BDE39D868^0'
'A2F686ADBA64B^0'
'-16B42E3DE46C14^-3'
'118E22A273F1F5^-3'
'-17E1640E734944^-3'
'-AEA85A4B07E2B8^0'
'-27E7DD40C801F8^0'
'-52F4824C089394^0'
'A2F6563094C488^0'
'-14167194AD0312^-3'
'1476AE8F0EBDC5^-3'
'-13D7F321FEA78^-3'
'-AEA8D93446CC4^0'
'-27E810D8F1A23A^0'
'-52F39A7A05B1A4^0'
'A2F6378A332A08^0'
'-DAEC46DCF92F18^-4'
'17C9CA214EA9C6^-3'
'-17986A24F8666^-3'
'-AEA960F23F3F6^0'
'-27E83451114036^0'
'-52F2BA43E50574^0'
'A2F60F7E7078B8^0'
'-D21FA4686D5D2^-4'
'160B83C42B0681^-3'
'-13661BDFC84A52^-3'
'-AEA9F4F0D2D708^0'
'-27E86D206927F4^0'
'-52F1CBD192B908^0'
'A2F5DC5409F6F8^0'
'-115251FE5672A2^-3'
'17BD720AF0BD58^-3'
'-135064EB9DE16^-3'
'-AEAA8B584FE27^0'
'-27E89BF2111742^0'
'-52F0E7B8BF8E24^0'
'A2F5A3C040FCB8^0'
'-123D11DA1EAC28^-3'
'156DC56B826B34^-3'
'-150D223C63F61A^-3'
'-AEAB0FAE3A64D^0'
'-27E8D6E1B09B6C^0'
'-52EFE31093C88C^0'
'A2F58C230B604^0'
'-1617D1DF5B9613^-3'
'147DF07298B7AF^-3'
'-189A4C52469BF4^-3'
'-AEABA22EAD565^0'
'-27E9023B949686^0'
'-52EEF8B62AEDC8^0'
'A2F55BC2B0E058^0'
'-111E351F1BEE85^-3'
'16D66698C5CCD9^-3'
'-1792F972745506^-3'
'-AEAC3244BA65C^0'
'-27E93B6C731A8E^0'
'-52EE02EAE302B^0'
'A2F5306609E8D8^0'
'-173537DA45662E^-3'
'157DEB363B0AD7^-3'
'-1745FB11A7A206^-3'
'-AEACBB6AE330D8^0'
'-27E973AA5B58A2^0'
'-52ED03F64F1238^0'
'A2F5115BE5F308^0'
'-16ADFD5E36CA23^-3'
'15F0470421BB24^-3'
'-1552F7DCB74BA8^-3'
'-AEAD4B1B6E64A8^0'
'-27E9AB21B75D7E^0'
'-52EC2F379D8428^0'
'A2F4D602C4EE1^0'
'-1276E45B711C16^-3'
'1290BC384B326C^-3'
'-16A575728D7D6B^-3'
'-AEADE1C5BFD6B^0'
'-27E9D657D7B674^0'
'-52EB39798BB214^0'
'A2F4A6F878A2C8^0'
'-BFCE5EDAE38048^-4'
'17BC1FB8A75ABA^-3'
'-1886066DCE3B7A^-3'
'-AEAE5B21256D3^0'
'-27E9F13FEE4828^0'
'-52EA32708F0D1^0'
'A2F4A421CC1088^0'
'-131B2853D4938B^-3'
'137E0D69C4A60E^-3'
'-14587F69D1FAFC^-3'
'-AECBCBA0530908^0'
'-27E9642FD76A7E^0'
'-52C2799673BC3C^0'
'A2E9661C05F37^0'
'-5F5AAFCFB3CF1^-4'
'12EFEDEDAD28EB^-3'
'-F5EC30DC8F0BE^-4'
'-AEE53806F28C5^0'
'-27E29BF7E00AFC^0'
'-52A15194F3D83C^0'
'A2E09A79CDD33^0'
'-8D0E5CAF8D4A18^-4'
'12311F3BC64ABC^-3'
'-10F6D5EED6B694^-3'
'-AEFEC26039804^0'
'-27DBC7F3D7ACF2^0'
'-5280DB9685421C^0'
'A2D74BE1A7775^0'
'-7ECF8A2D937AD8^-4'
'12E629EED5452E^-3'
'-FC32C0D3449A68^-4'
'-AF188DAB1AFD4^0'
'-27D543822B6F5A^0'
'-5260C6F15B6C78^0'
'A2CD676A988848^0'
'-9A910F580D433^-4'
'10E218341009AC^-3'
'-96AF5C927EB6E^-4'
'AF2DE0FA2EC1B^0'
'27CF9E7F3DB9B2^0'
'5246A1A3D9DAFC^0'
'-A2C5106BE958E8^0'
'-4B5915DEAEE698^-4'
'D91FCC6C00D218^-4'
'-C96EF1ABECBFA8^-4'
'D715AADF1C8^B'
'D715AAE6C7^B'
'D715AB60D9^B'
'D715ABDAEB^B'
'D715AC54FD^B'
'D715ACCF0F^B'
'D715AD4921^B'
'D715ADC333^B'
'D715AE3D45^B'
'D715AEB757^B'
'D715AF3169^B'
'D715AFAB7B^B'
'D715B0258D^B'
'D715B09F9F^B'
'D715B119B1^B'
'D715B193C3^B'
'D715B1D0CC^B'
'D715B1DD01^B'
'D715B1E936^B'
'D715B1F56B^B'
'D715B201A^B'
'D715B20DD5^B'
'D715B21A0A^B'
'D715B2263F^B'
'D715B23274^B'
'D715B23EA9^B'
'D715B24ADE^B'
'D715B25713^B'
'D715B26348^B'
'D715B26F7D^B'
'D715B27BB2^B'
'D715B287E7^B'
'D715B2941C^B'
'D715B2A051^B'
'D715B2AC86^B'
'D715B2B8BB^B'
'D715B2C4F^B'
'D715B2D125^B'
'D715B2DD5A^B'
'D715B2E98F^B'
'D715B2F5C4^B'
'D715B301F9^B'
'D715B30E2E^B'
'D715B31A63^B'
'D715B32698^B'
'D715B332CD^B'
'D715B33F02^B'
'D715B34B37^B'
'D715B3576C^B'
'D715B363A1^B'
'D715B36FD6^B'
'D715B37C0B^B'
'D715B3884^B'
'D715B39475^B'
'D715B3A0AA^B'
'D715B3ACDF^B'
'D715B3B914^B'
'D715B3C549^B'
'D715B3D17E^B'
'D715B3DDB3^B'
'D715B3E9E8^B'
'D715B3F61D^B'
'D715B40252^B'
'D715B40E87^B'
'D715B41ABC^B'
'D715B426F1^B'
'D715B43326^B'
'D715B43F5B^B'
'D715B44B9^B'
'D715B457C5^B'
'D715B463FA^B'
'D715B4702F^B'
'D715B47C64^B'
'D715B48899^B'
'D715B494CE^B'
'D715B4A103^B'
'D715B4AD38^B'
'D715B4B96D^B'
'D715B4C5A2^B'
'D715B4D1D7^B'
'D715B4DE0C^B'
'D715B4EA41^B'
'D715B4F676^B'
'D715B502AB^B'
'D715B50EE^B'
'D715B51B15^B'
'D715B5274A^B'
'D715B5337F^B'
'D715B53FB4^B'
'D715B54BE9^B'
'D715B5581E^B'
'D715B56453^B'
'D715B57088^B'
'D715B57CBD^B'
'D715B588F2^B'
'D715B59527^B'
'D715B5A15C^B'
'D715B5AD91^B'
'D715B5B9C6^B'
'D715B5C5FB^B'
'D715B5D23^B'
'D715B5DE65^B'
'D715B5EA9A^B'
'D715B5F6CF^B'
'D715B60304^B'
'D715B60F39^B'
'D715B61B6E^B'
'D715B627A3^B'
'D715B633D8^B'
'D715B6400D^B'
'D715B91C79^B'
'D715BBF8E5^B'
'D715BED551^B'
'D715C1B1BD^B'
'D715C40C6C8^B'
'D715B5C5FB^B'
'D715AADF1C8^B'
'1^1'
'73^2'
END_ARRAY 1 924
TOTAL_ARRAYS 1
~NAIF/SPC BEGIN COMMENTS~
This CK is for testing with the image: /Users/arsanders/pds/nh/mvic/small/mpf/mpf_0295610274_0x539_sci_isis.cub
This CK was generated using the following command: {}
~NAIF/SPC END COMMENTS~
DAFETF NAIF DAF ENCODED TRANSFER FILE
'DAF/SPK '
'2'
'6'
'SPKMERGE '
BEGIN_ARRAY 1 78
'PLUXXX '
'1D00504915B9E4^8'
'1D0052F7BB1A23^8'
'3E7'
'9'
'1'
'3'
78
'1D02FA4^8'
'3F48^5'
'-AA7029478FD3A^2'
'3E9B3F382DD09A^3'
'-2AA162EFCF5A24^3'
'-34A83BCF876CFE^3'
'B0AAF39760AF08^2'
'70952AAE18A448^2'
'-EB2D31BCFC8AB^1'
'-66A85B53DC49AC^1'
'9E4D0C807C4A^0'
'342734EA03B938^0'
'-40892EB61C9FC^-1'
'-10895781FBB76E^-1'
'-E033A330FB4BC8^2'
'32CE6D964842D2^3'
'-3807F530E27C6^3'
'-2ABBABE0C8614E^3'
'E82DE0CB0189^2'
'5B5AD52E27F804^2'
'-134E179ADCD448^2'
'-53411288DC3074^1'
'CF49B5DCF97DE^0'
'2A2EBC3DA1130E^0'
'-537E18C704CBF8^-1'
'-D36DFE4A3E58C^-2'
'-1B37DB63B05F0B^3'
'-32CB13041D66F^3'
'-6C9C7C82EEEBB4^3'
'2AB7689A28FC26^3'
'1C1F2E25A7E904^3'
'-5B65292F9A31E8^2'
'-255AF05AC54FFC^2'
'53A6E081B3AA68^1'
'18E236B7A24165^1'
'-2B40BE1CDBEAE4^0'
'-9B897A65AF6578^-1'
'EC9BAE33594F1^-2'
'-FE5E94CCF83CD^-2'
'-176A8DD4A7099C^-1'
'-3F74770E860808^-1'
'13B2C9761F4ABB^-1'
'106D8C72D90CD2^-1'
'-2A2CB07B692008^-2'
'-15CE847F3D9F0D^-2'
'26BFFD2E7616E4^-3'
'E79B15E75B6128^-4'
'-1465826FEAB4B4^-4'
'-5BFBD5502EF7E8^-5'
'0^0'
'-CE70CC4FDFE93^-2'
'-1EC72923D76303^-1'
'-337F2D6E5091BA^-1'
'19E3B7525EF59C^-1'
'D54B58F7599FA^-2'
'-37667E0B4123A8^-2'
'-11AFCE0C348519^-2'
'32C2E7546E03C8^-3'
'BB622C5E4B983^-4'
'-1A634524FBD3BE^-4'
'-498122AD376DE^-5'
'0^0'
'CE46AC6C3A649^-2'
'-3BAA377CB00626^-1'
'337837488FB84^-1'
'322E12DBFDD972^-1'
'-D553433B301D08^-2'
'-6B3D2E3D983C18^-2'
'11C200DF9E7198^-2'
'6197BFC1D9EB1C^-3'
'-BFB5281705655^-4'
'-31284A14C27EE2^-4'
'524201A66515CC^-5'
'0^0'
'1CFF05C^8'
'7E9^5'
'4A^2'
'1^1'
END_ARRAY 1 78
BEGIN_ARRAY 2 24
'DE-0433LE-0433 '
'1D00504915B9E4^8'
'1D0052F7BB1A23^8'
'9'
'0'
'1'
'2'
24
'1D0AE34^8'
'1518^6'
'467619054ACC64^8'
'71959EE3051BB^6'
'-2762DD2B113FD4^3'
'-9177E2D69AFC6^0'
'B2497F51237998^-3'
'-29AD86E21EAE2A^-6'
'-109044C967CB1A^9'
'1100A0A9164CA3^6'
'94210295FA8E5^3'
'-72FDDAB32180F^0'
'-4BCC77DC75FC5^-3'
'12F0EB92CA7FE^-5'
'-67EEEDB012BCBC^8'
'-1CEAB1C413152D^6'
'3A17A06D6A8238^3'
'7F300DF2565778^-1'
'-4DE156A15BA13C^-3'
'5C6D19D3DFDB38^-6'
'1CF5CB4^8'
'2A3^6'
'14^2'
'1^1'
END_ARRAY 2 24
BEGIN_ARRAY 3 39
'DE-0433LE-0433 '
'1D00504915B9E4^8'
'1D0052F7BB1A23^8'
'A'
'0'
'1'
'2'
39
'1D00574^8'
'A8C^5'
'7AA9EC0B57203C^5'
'C7325B963A709^3'
'-182D04C20C6B7^2'
'1CA2D603DD6C1F^0'
'E92E4FE06194E8^-2'
'126731805F32FC^-3'
'3CBD18A6C36494^-5'
'-C43122BE384438^-6'
'17E84586CCAEB6^-6'
'-7AD6F3B915002^-7'
'9076488035C3E^-A'
'306CA26A43046^4'
'1AA66E05122A6D^4'
'6813AD48D65408^1'
'-2741DBF9D7A2F8^0'
'BF07B1858DAB78^-2'
'3977F2187844C^-3'
'541F76DD59C51C^-4'
'FBCD6F780E8E4^-7'
'6A4B531DB51EDC^-6'
'14C36FFCEF311E^-7'
'17B9AD54A19F33^-8'
'-4ADE51BEEBBF98^4'
'B32CDD486A0BC8^3'
'3727759FD1AAC4^1'
'-132EA60F17BFD2^0'
'4AF33E553BE608^-2'
'14794375452E63^-3'
'2D07D8E2BCBBA2^-4'
'2596616357A73A^-6'
'3639F617E73A36^-6'
'183BB3BB24AFF5^-7'
'CA8BE7D141E8E8^-9'
'1CF5CB4^8'
'1518^6'
'23^2'
'1^1'
END_ARRAY 3 39
BEGIN_ARRAY 4 73
'pvshort.nio '
'1D00504915B9E4^8'
'1D0052F7BB1A23^8'
'-62'
'9'
'1'
'1'
73
'1D006204F38ED2^8'
'262A0C989BDB2^4'
'3509DEE07B8164^4'
'399E797BE5889^4'
'3B34B5F4F48258^4'
'3BC1726F27BE6E^4'
'3BF84C5455F644^4'
'20917D3EB9E418^5'
'2818B53115CCB6^5'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'-8854240629CDD^5'
'28F33C7503CEB4^0'
'2D8F9D8F4D953E^7'
'-D5605A6FF8F8B^1'
'BE52CDF4ED9268^6'
'-37BD538A6D70E6^1'
'-332C3C142CBAEA^-8'
'1DAC0787301A76^-A'
'-2E8B66F990D30A^-E'
'3D8D7981DDA2D^-11'
'1D014^-11'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'78CCC17EB113BC^-8'
'-48EA6F45F278E8^-A'
'8299DE164AAF4^-E'
'-139410CF5BCBCD^-F'
'-8A52^-11'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'2A3F65307C87B6^-8'
'-22079CBDEAD43E^-A'
'553F6B5B19D33^-E'
'-528574F919A5E4^-10'
'-4044E^-11'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'0^0'
'5^1'
'4^1'
'4^1'
'4^1'
'1D00574^8'
'1^1'
END_ARRAY 4 73
TOTAL_ARRAYS 4
~NAIF/SPC BEGIN COMMENTS~
; /Users/arsanders/pds/nh/mvic/small/mpf/sliced/mpf_0295610274_0x539_sci_isis_0.bsp LOG FILE
; Created 2022-08-15/16:05:55.00.
;
; BEGIN SPKMERGE COMMANDS
LEAPSECONDS_KERNEL = /Volumes/pkgs/isis3/data/base/kernels/lsk/naif0012.tls
SPK_KERNEL = /Users/arsanders/pds/nh/mvic/small/mpf/sliced/mpf_0295610274_0x539_sci_isis_0.bsp
SOURCE_SPK_KERNEL = /Volumes/pkgs/isis3/data/newhorizons/kernels/spk/nh_recon_pluto_od122_v01.bsp
INCLUDE_COMMENTS = NO
BODIES = 999, 9, 10, -98
BEGIN_TIME = 2015 JUN 02 23:29:09.900
END_TIME = 2015 JUN 02 23:40:36.546
; END SPKMERGE COMMANDS
~NAIF/SPC END COMMENTS~
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment