KPL/FK JUICE Regions of Interest Frames (FK) SPICE Kernel =============================================================================== This file defines the topocenteric frames for the Regions of Interest under study in the JUpiter ICy moons Explorer (JUICE) mission. Version and Date ----------------------------------------------------------------------------- Version 0.0 -- June 15, 2020 -- Marc Costa Sitja, ESAC/ESA Initial version. References and Sources ----------------------------------------------------------------------------- 1. ``FK required reading'', NAIF 2. ``NAIF Integer ID codes required reading,'' NAIF 3. ``Regions of Interests on Ganymede's and Callisto's surface proposed as potential targets for ESA’s JUICE mission'', K. Stephan et al., Planetary and Space Science, 2020. Contact Information ----------------------------------------------------------------------------- If you have any questions regarding this file contact the ESA SPICE Service at ESAC: Marc Costa Sitja (+34) 91-8131-457 marc.costa@esa.int, esa_spice@sciops.esa.int or NAIF at JPL: Boris Semenov (818) 354-8136 Boris.Semenov@jpl.nasa.gov Usage -------------------------------------------------------- This file is aimed to be part of a suite of kernels required to compute the Regions of Interest (ROI) of the JUICE mission. These ROI are defined as ephemeris opjects in a SPK file. This SPK is described below: juice_roi_vNN.bsp a Spacecraft Kernel file that contains the position of the JUICE ROI. These objects are defined w.r.t. to the appropriate central body (e.g.: Callisto, Ganymede, etc.). NN specifies the version of the kernel. This kernel provides the location of the center of the list of ROI. Due to the fact that ROI are defined as extended bodies (typically rectangles on an equirectangular project of the target surfaces) and due to the limitations of SPICE, we model the regions as ellipsoids degenereated to pseudo-ellipses slightly above the surface of the target. Because of this we need to define a PCK kernel that provides the radii of these ellipsoids. This PCK is defined as follows: juice_roi_vNN.tpc a Planetary Constants Kernel file that contains the definition of the pseudo- ellipses that approximate the JUICE ROI rectangular shape (as projected on a an equirectangular map of the target body). NN specifies the version of the kernel. Finally we also need to define a frame kernel that provides a topographic reference frame required to define the ellipsoids and a body-name mapping for the JUICE ROI. juice_roi_vNN.tf a Frames Kernel file that provides topographic frame definitions and body-name mapping for the JUICE ROI. NN specifies the version of the kernel. Working example -------------------------------------------------------- This section provides a Python example on how to obtain visibility windows for Ganymede ROI with the JANUS camera. The routine provides a list of start and end times of the windows of opportunity import spiceypy from spiceypy import support_types as stypes def gfroi(roi, start, finish): MAXIVL = 10000 MAXWIN = 2 * MAXIVL interval_start = spiceypy.utc2et(start) interval_finish = spiceypy.utc2et(finish) intervals = [] # # Initialize the "confinement" window with the interval # over which we'll conduct the search. # cnfine = stypes.SPICEDOUBLE_CELL(2) spiceypy.wninsd(interval_start, interval_finish, cnfine) # # In the call below, the maximum number of window # intervals gfposc can store internally is set to MAXIVL. # We set the cell size to MAXWIN to achieve this. # riswin = stypes.SPICEDOUBLE_CELL(MAXWIN) # # First we look for the intervals in which the ROI is occulted by # Ganymede. # # VARIABLE I/O DESCRIPTION # --------------- --- ----------------------------------------------- # SPICE_GF_CNVTOL P Convergence tolerance. # occtyp I Type of occultation. # front I Name of body occulting the other. # fshape I Type of shape model used for front body. # fframe I Body-fixed, body-centered frame for front body. # back I Name of body occulted by the other. # bshape I Type of shape model used for back body. # bframe I Body-fixed, body-centered frame for back body. # abcorr I Aberration correction flag. # obsrvr I Name of the observing body. # step I Step size in seconds for finding occultation # events. # cnfine I-O SPICE window to which the search is restricted. # result O SPICE window containing results. # spiceypy.gfoclt('ANY', 'GANYMEDE', 'ELLIPSOID', 'IAU_GANYMEDE', roi, 'ELLIPSOID', roi, 'NONE', 'JUICE', 60, cnfine, riswin) # # We need to obtain the difference in between the original window # and the resulting occutltations # difwin = spiceypy.wndifd(cnfine, riswin) riswin = stypes.SPICEDOUBLE_CELL(MAXWIN) # # Now we compute if the ROI is visible by JANUS. # # VARIABLE I/O DESCRIPTION # -------- --- -------------------------------------------------- # MARGIN P Minimum complement of FOV cone angle. # LBCELL P SPICE Cell lower bound. # CNVTOL P Convergence tolerance. # MAXVRT P Maximum number of FOV boundary vertices. # INST I Name of the instrument. # TARGET I Name of the target body. # TSHAPE I Type of shape model used for target body. # TFRAME I Body-fixed, body-centered frame for target body. # ABCORR I Aberration correction flag. # OBSRVR I Name of the observing body. # STEP I Step size in seconds for finding FOV events. # CNFINE I SPICE window to which the search is restricted. # RESULT O SPICE window containing results. # spiceypy.gftfov('JUICE_JANUS', roi, 'ELLIPSOID', roi, 'NONE', 'JUICE', 60, difwin, riswin) # # The function wncard returns the number of intervals # in a SPICE window. # winsiz = spiceypy.wncard(riswin) if winsiz == 0: print('No events were found.') else: # # Display the visibility time periods. # print(f'{roi} on JANUS FOV times of JUICE') for i in range(winsiz): # # Fetch the start and stop times of # the ith interval from the search result # window riswin. # [intbeg, intend] = spiceypy.wnfetd(riswin, i) # # Convert the rise time to a TDB calendar string. # et_rise = intbeg et_set = intend # # Generate a Time Window with the rise and set times # utc_rise = spiceypy.et2utc(et_rise, 'ISOC', 3) utc_set = spiceypy.et2utc(et_set, 'ISOC', 3) intervals.append([utc_rise, utc_set]) print(utc_rise, utc_set) return intervals start_utc = '2033-02-23T04:30:00' finish_utc = '2033-02-23T04:40:00' spiceypy.furnsh('/JUICE/kernels/mk/juice_crema_4_0_ops.tm') gfroi('JUICE_ROI_GAN_4_5_01', start_utc, finish_utc) Topocentric frame definitions -------------------------------------------------------- FILE: juice_roi_v00.tf This file was created by PINPOINT. PINPOINT Version 3.1.0 --- July 2, 2014 PINPOINT RUN DATE/TIME: 2020-06-15T22:27:12 PINPOINT DEFINITIONS FILE: pinpoint.defs PINPOINT PCK FILE: pck00010.tpc PINPOINT SPK FILE: juice_roi_v00.bsp The input definitions file is appended to this file as a comment block. Body-name mapping follows: \begindata NAIF_BODY_NAME += 'JUICE_ROI_CAL_2_1_00' NAIF_BODY_CODE += -280001 NAIF_BODY_NAME += 'JUICE_ROI_CAL_2_2_00' NAIF_BODY_CODE += -280002 NAIF_BODY_NAME += 'JUICE_ROI_CAL_2_3_00' NAIF_BODY_CODE += -280003 NAIF_BODY_NAME += 'JUICE_ROI_CAL_2_4_00' NAIF_BODY_CODE += -280004 NAIF_BODY_NAME += 'JUICE_ROI_CAL_2_5_00' NAIF_BODY_CODE += -280005 NAIF_BODY_NAME += 'JUICE_ROI_CAL_2_6_00' NAIF_BODY_CODE += -280006 NAIF_BODY_NAME += 'JUICE_ROI_CAL_2_7_00' NAIF_BODY_CODE += -280007 NAIF_BODY_NAME += 'JUICE_ROI_CAL_3_1_00' NAIF_BODY_CODE += -280008 NAIF_BODY_NAME += 'JUICE_ROI_CAL_3_2_00' NAIF_BODY_CODE += -280009 NAIF_BODY_NAME += 'JUICE_ROI_CAL_3_3_00' NAIF_BODY_CODE += -2800010 NAIF_BODY_NAME += 'JUICE_ROI_CAL_3_4_00' NAIF_BODY_CODE += -2800011 NAIF_BODY_NAME += 'JUICE_ROI_CAL_3_5_00' NAIF_BODY_CODE += -2800012 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_1_01' NAIF_BODY_CODE += -2800013 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_1_02' NAIF_BODY_CODE += -2800014 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_1_03' NAIF_BODY_CODE += -2800015 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_1_04' NAIF_BODY_CODE += -2800016 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_2_01' NAIF_BODY_CODE += -2800017 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_2_02' NAIF_BODY_CODE += -2800018 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_2_03' NAIF_BODY_CODE += -2800019 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_2_04' NAIF_BODY_CODE += -2800020 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_2_05' NAIF_BODY_CODE += -2800021 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_01' NAIF_BODY_CODE += -2800022 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_02' NAIF_BODY_CODE += -2800023 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_03' NAIF_BODY_CODE += -2800024 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_04' NAIF_BODY_CODE += -2800025 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_05' NAIF_BODY_CODE += -2800026 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_06' NAIF_BODY_CODE += -2800027 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_07' NAIF_BODY_CODE += -2800028 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_08' NAIF_BODY_CODE += -2800029 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_09' NAIF_BODY_CODE += -2800030 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_10' NAIF_BODY_CODE += -2800031 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_11' NAIF_BODY_CODE += -2800032 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_3_12' NAIF_BODY_CODE += -2800033 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_4_01' NAIF_BODY_CODE += -2800034 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_4_02' NAIF_BODY_CODE += -2800035 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_4_03' NAIF_BODY_CODE += -2800036 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_4_04' NAIF_BODY_CODE += -2800037 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_5_01' NAIF_BODY_CODE += -2800038 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_5_02' NAIF_BODY_CODE += -2800039 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_5_03' NAIF_BODY_CODE += -2800040 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_6_01' NAIF_BODY_CODE += -2800041 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_6_02' NAIF_BODY_CODE += -2800042 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_6_03' NAIF_BODY_CODE += -2800043 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_7_01' NAIF_BODY_CODE += -2800044 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_7_02' NAIF_BODY_CODE += -2800045 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_7_03' NAIF_BODY_CODE += -2800046 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_7_04' NAIF_BODY_CODE += -2800047 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_7_05' NAIF_BODY_CODE += -2800048 NAIF_BODY_NAME += 'JUICE_ROI_CAL_4_7_06' NAIF_BODY_CODE += -2800049 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_1_00' NAIF_BODY_CODE += -2800050 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_2_00' NAIF_BODY_CODE += -2800051 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_3_00' NAIF_BODY_CODE += -2800052 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_4_00' NAIF_BODY_CODE += -2800053 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_5_00' NAIF_BODY_CODE += -2800054 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_6_00' NAIF_BODY_CODE += -2800055 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_7_00' NAIF_BODY_CODE += -2800056 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_8_00' NAIF_BODY_CODE += -2800057 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_9_00' NAIF_BODY_CODE += -2800058 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_10_00' NAIF_BODY_CODE += -2800059 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_11_00' NAIF_BODY_CODE += -2800060 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_12_00' NAIF_BODY_CODE += -2800061 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_13_00' NAIF_BODY_CODE += -2800062 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_14_00' NAIF_BODY_CODE += -2800063 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_15_00' NAIF_BODY_CODE += -2800064 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_16_00' NAIF_BODY_CODE += -2800065 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_17_00' NAIF_BODY_CODE += -2800066 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_18_00' NAIF_BODY_CODE += -2800067 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_19_00' NAIF_BODY_CODE += -2800068 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_20_00' NAIF_BODY_CODE += -2800069 NAIF_BODY_NAME += 'JUICE_ROI_CAL_5_21_00' NAIF_BODY_CODE += -2800070 NAIF_BODY_NAME += 'JUICE_ROI_CAL_6_1_01' NAIF_BODY_CODE += -2800071 NAIF_BODY_NAME += 'JUICE_ROI_CAL_6_1_02' NAIF_BODY_CODE += -2800072 NAIF_BODY_NAME += 'JUICE_ROI_CAL_6_1_03' NAIF_BODY_CODE += -2800073 NAIF_BODY_NAME += 'JUICE_ROI_CAL_6_1_04' NAIF_BODY_CODE += -2800074 NAIF_BODY_NAME += 'JUICE_ROI_CAL_6_1_05' NAIF_BODY_CODE += -2800075 NAIF_BODY_NAME += 'JUICE_ROI_CAL_6_1_06' NAIF_BODY_CODE += -2800076 NAIF_BODY_NAME += 'JUICE_ROI_CAL_6_1_07' NAIF_BODY_CODE += -2800077 NAIF_BODY_NAME += 'JUICE_ROI_CAL_6_1_08' NAIF_BODY_CODE += -2800078 NAIF_BODY_NAME += 'JUICE_ROI_CAL_6_1_09' NAIF_BODY_CODE += -2800079 NAIF_BODY_NAME += 'JUICE_ROI_CAL_7_1_00' NAIF_BODY_CODE += -2800080 NAIF_BODY_NAME += 'JUICE_ROI_CAL_7_2_00' NAIF_BODY_CODE += -2800081 NAIF_BODY_NAME += 'JUICE_ROI_CAL_7_3_00' NAIF_BODY_CODE += -2800082 NAIF_BODY_NAME += 'JUICE_ROI_CAL_7_4_00' NAIF_BODY_CODE += -2800083 NAIF_BODY_NAME += 'JUICE_ROI_CAL_7_5_00' NAIF_BODY_CODE += -2800084 NAIF_BODY_NAME += 'JUICE_ROI_CAL_7_6_00' NAIF_BODY_CODE += -2800085 NAIF_BODY_NAME += 'JUICE_ROI_CAL_7_7_00' NAIF_BODY_CODE += -2800086 NAIF_BODY_NAME += 'JUICE_ROI_CAL_7_8_00' NAIF_BODY_CODE += -2800087 NAIF_BODY_NAME += 'JUICE_ROI_CAL_7_9_00' NAIF_BODY_CODE += -2800088 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_1_00' NAIF_BODY_CODE += -2800089 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_2_00' NAIF_BODY_CODE += -2800090 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_3_00' NAIF_BODY_CODE += -2800091 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_4_00' NAIF_BODY_CODE += -2800092 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_5_00' NAIF_BODY_CODE += -2800093 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_6_00' NAIF_BODY_CODE += -2800094 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_7_00' NAIF_BODY_CODE += -2800095 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_8_00' NAIF_BODY_CODE += -2800096 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_9_00' NAIF_BODY_CODE += -2800097 NAIF_BODY_NAME += 'JUICE_ROI_GAN_1_10_00' NAIF_BODY_CODE += -2800098 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_1_00' NAIF_BODY_CODE += -2800099 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_2_00' NAIF_BODY_CODE += -28000100 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_3_00' NAIF_BODY_CODE += -28000101 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_4_00' NAIF_BODY_CODE += -28000102 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_5_00' NAIF_BODY_CODE += -28000103 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_6_00' NAIF_BODY_CODE += -28000104 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_7_00' NAIF_BODY_CODE += -28000105 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_8_00' NAIF_BODY_CODE += -28000106 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_9_00' NAIF_BODY_CODE += -28000107 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_10_00' NAIF_BODY_CODE += -28000108 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_11_00' NAIF_BODY_CODE += -28000109 NAIF_BODY_NAME += 'JUICE_ROI_GAN_2_12_00' NAIF_BODY_CODE += -28000110 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_1_00' NAIF_BODY_CODE += -28000111 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_2_00' NAIF_BODY_CODE += -28000112 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_3_00' NAIF_BODY_CODE += -28000113 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_4_00' NAIF_BODY_CODE += -28000114 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_5_00' NAIF_BODY_CODE += -28000115 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_6_00' NAIF_BODY_CODE += -28000116 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_7_00' NAIF_BODY_CODE += -28000117 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_8_00' NAIF_BODY_CODE += -28000118 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_9_00' NAIF_BODY_CODE += -28000119 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_10_00' NAIF_BODY_CODE += -28000120 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_11_00' NAIF_BODY_CODE += -28000121 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_12_00' NAIF_BODY_CODE += -28000122 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_13_00' NAIF_BODY_CODE += -28000123 NAIF_BODY_NAME += 'JUICE_ROI_GAN_3_14_00' NAIF_BODY_CODE += -28000124 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_1_01' NAIF_BODY_CODE += -28000125 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_1_02' NAIF_BODY_CODE += -28000126 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_1_03' NAIF_BODY_CODE += -28000127 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_1_04' NAIF_BODY_CODE += -28000128 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_2_01' NAIF_BODY_CODE += -28000129 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_2_02' NAIF_BODY_CODE += -28000130 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_2_03' NAIF_BODY_CODE += -28000131 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_2_04' NAIF_BODY_CODE += -28000132 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_2_05' NAIF_BODY_CODE += -28000133 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_2_06' NAIF_BODY_CODE += -28000134 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_2_07' NAIF_BODY_CODE += -28000135 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_2_08' NAIF_BODY_CODE += -28000136 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_3_01' NAIF_BODY_CODE += -28000137 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_3_02' NAIF_BODY_CODE += -28000138 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_3_03' NAIF_BODY_CODE += -28000139 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_3_04' NAIF_BODY_CODE += -28000140 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_3_05' NAIF_BODY_CODE += -28000141 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_3_06' NAIF_BODY_CODE += -28000142 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_3_07' NAIF_BODY_CODE += -28000143 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_3_08' NAIF_BODY_CODE += -28000144 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_3_09' NAIF_BODY_CODE += -28000145 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_01' NAIF_BODY_CODE += -28000146 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_02' NAIF_BODY_CODE += -28000147 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_03' NAIF_BODY_CODE += -28000148 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_04' NAIF_BODY_CODE += -28000149 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_05' NAIF_BODY_CODE += -28000150 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_06' NAIF_BODY_CODE += -28000151 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_07' NAIF_BODY_CODE += -28000152 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_08' NAIF_BODY_CODE += -28000153 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_09' NAIF_BODY_CODE += -28000154 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_10' NAIF_BODY_CODE += -28000155 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_4_11' NAIF_BODY_CODE += -28000156 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_01' NAIF_BODY_CODE += -28000157 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_02' NAIF_BODY_CODE += -28000158 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_03' NAIF_BODY_CODE += -28000159 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_04' NAIF_BODY_CODE += -28000160 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_05' NAIF_BODY_CODE += -28000161 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_06' NAIF_BODY_CODE += -28000162 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_07' NAIF_BODY_CODE += -28000163 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_08' NAIF_BODY_CODE += -28000164 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_09' NAIF_BODY_CODE += -28000165 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_10' NAIF_BODY_CODE += -28000166 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_11' NAIF_BODY_CODE += -28000167 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_12' NAIF_BODY_CODE += -28000168 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_13' NAIF_BODY_CODE += -28000169 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_5_14' NAIF_BODY_CODE += -28000170 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_6_01' NAIF_BODY_CODE += -28000171 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_6_02' NAIF_BODY_CODE += -28000172 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_6_03' NAIF_BODY_CODE += -28000173 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_7_01' NAIF_BODY_CODE += -28000174 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_7_02' NAIF_BODY_CODE += -28000175 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_7_03' NAIF_BODY_CODE += -28000176 NAIF_BODY_NAME += 'JUICE_ROI_GAN_4_7_04' NAIF_BODY_CODE += -28000177 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_1_00' NAIF_BODY_CODE += -28000178 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_2_00' NAIF_BODY_CODE += -28000179 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_3_00' NAIF_BODY_CODE += -28000180 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_4_00' NAIF_BODY_CODE += -28000181 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_5_00' NAIF_BODY_CODE += -28000182 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_6_00' NAIF_BODY_CODE += -28000183 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_7_00' NAIF_BODY_CODE += -28000184 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_8_00' NAIF_BODY_CODE += -28000185 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_9_00' NAIF_BODY_CODE += -28000186 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_10_00' NAIF_BODY_CODE += -28000187 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_11_00' NAIF_BODY_CODE += -28000188 NAIF_BODY_NAME += 'JUICE_ROI_GAN_5_12_00' NAIF_BODY_CODE += -28000189 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_1_01' NAIF_BODY_CODE += -28000190 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_1_02' NAIF_BODY_CODE += -28000191 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_1_03' NAIF_BODY_CODE += -28000192 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_1_04' NAIF_BODY_CODE += -28000193 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_1_05' NAIF_BODY_CODE += -28000194 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_1_06' NAIF_BODY_CODE += -28000195 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_1_07' NAIF_BODY_CODE += -28000196 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_1_08' NAIF_BODY_CODE += -28000197 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_2_01' NAIF_BODY_CODE += -28000198 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_2_02' NAIF_BODY_CODE += -28000199 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_2_03' NAIF_BODY_CODE += -28000200 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_2_04' NAIF_BODY_CODE += -28000201 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_2_05' NAIF_BODY_CODE += -28000202 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_01' NAIF_BODY_CODE += -28000203 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_02' NAIF_BODY_CODE += -28000204 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_03' NAIF_BODY_CODE += -28000205 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_04' NAIF_BODY_CODE += -28000206 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_05' NAIF_BODY_CODE += -28000207 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_06' NAIF_BODY_CODE += -28000208 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_07' NAIF_BODY_CODE += -28000209 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_08' NAIF_BODY_CODE += -28000210 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_09' NAIF_BODY_CODE += -28000211 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_10' NAIF_BODY_CODE += -28000212 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_11' NAIF_BODY_CODE += -28000213 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_12' NAIF_BODY_CODE += -28000214 NAIF_BODY_NAME += 'JUICE_ROI_GAN_6_3_13' NAIF_BODY_CODE += -28000215 NAIF_BODY_NAME += 'JUICE_ROI_GAN_7_1_00' NAIF_BODY_CODE += -28000216 NAIF_BODY_NAME += 'JUICE_ROI_GAN_7_2_00' NAIF_BODY_CODE += -28000217 NAIF_BODY_NAME += 'JUICE_ROI_GAN_7_3_00' NAIF_BODY_CODE += -28000218 NAIF_BODY_NAME += 'JUICE_ROI_GAN_7_4_00' NAIF_BODY_CODE += -28000219 NAIF_BODY_NAME += 'JUICE_ROI_GAN_7_5_00' NAIF_BODY_CODE += -28000220 NAIF_BODY_NAME += 'JUICE_ROI_GAN_7_6_00' NAIF_BODY_CODE += -28000221 NAIF_BODY_NAME += 'JUICE_ROI_GAN_7_7_00' NAIF_BODY_CODE += -28000222 NAIF_BODY_NAME += 'JUICE_ROI_GAN_7_8_00' NAIF_BODY_CODE += -28000223 NAIF_BODY_NAME += 'JUICE_ROI_GAN_7_9_00' NAIF_BODY_CODE += -28000224 \begintext Reference frame specifications follow: Topocentric frame JUICE_ROI_CAL_2_1_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_2_1_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.9822041270597E+01 Y (km): -0.5627043675282E+03 Z (km): -0.2344189404095E+04 and planetodetic coordinates Longitude (deg): -91.0000000000000 Latitude (deg): -76.5000000000000 Altitude (km): 0.4999999999994E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_2_1_00 = -2800011 FRAME_-2800011_NAME = 'JUICE_ROI_CAL_2_1_00' FRAME_-2800011_CLASS = 4 FRAME_-2800011_CLASS_ID = -2800011 FRAME_-2800011_CENTER = -280001 OBJECT_-280001_FRAME = 'JUICE_ROI_CAL_2_1_00' TKFRAME_-2800011_RELATIVE = 'IAU_CALLISTO' TKFRAME_-2800011_SPEC = 'ANGLES' TKFRAME_-2800011_UNITS = 'DEGREES' TKFRAME_-2800011_AXES = ( 3, 2, 3 ) TKFRAME_-2800011_ANGLES = ( -269.0000000000000, -166.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_2_2_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_2_2_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.3479543932927E+03 Y (km): -0.7907865127396E+03 Z (km): 0.2250675692199E+04 and planetodetic coordinates Longitude (deg): -113.7500000000000 Latitude (deg): 69.0000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_2_2_00 = -2800012 FRAME_-2800012_NAME = 'JUICE_ROI_CAL_2_2_00' FRAME_-2800012_CLASS = 4 FRAME_-2800012_CLASS_ID = -2800012 FRAME_-2800012_CENTER = -280002 OBJECT_-280002_FRAME = 'JUICE_ROI_CAL_2_2_00' TKFRAME_-2800012_RELATIVE = 'IAU_CALLISTO' TKFRAME_-2800012_SPEC = 'ANGLES' TKFRAME_-2800012_UNITS = 'DEGREES' TKFRAME_-2800012_AXES = ( 3, 2, 3 ) TKFRAME_-2800012_ANGLES = ( -246.2500000000000, -21.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_2_3_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_2_3_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.4384895210900E+03 Y (km): 0.7444074881654E+03 Z (km): 0.2250675692199E+04 and planetodetic coordinates Longitude (deg): 59.5000000000000 Latitude (deg): 69.0000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_2_3_00 = -2800013 FRAME_-2800013_NAME = 'JUICE_ROI_CAL_2_3_00' FRAME_-2800013_CLASS = 4 FRAME_-2800013_CLASS_ID = -2800013 FRAME_-2800013_CENTER = -280003 OBJECT_-280003_FRAME = 'JUICE_ROI_CAL_2_3_00' TKFRAME_-2800013_RELATIVE = 'IAU_CALLISTO' TKFRAME_-2800013_SPEC = 'ANGLES' TKFRAME_-2800013_UNITS = 'DEGREES' TKFRAME_-2800013_AXES = ( 3, 2, 3 ) TKFRAME_-2800013_ANGLES = ( -59.5000000000000, -21.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_2_4_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_2_4_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.3479543932927E+03 Y (km): -0.7907865127396E+03 Z (km): -0.2250675692199E+04 and planetodetic coordinates Longitude (deg): -113.7500000000000 Latitude (deg): -69.0000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_2_4_00 = -2800014 FRAME_-2800014_NAME = 'JUICE_ROI_CAL_2_4_00' FRAME_-2800014_CLASS = 4 FRAME_-2800014_CLASS_ID = -2800014 FRAME_-2800014_CENTER = -280004 OBJECT_-280004_FRAME = 'JUICE_ROI_CAL_2_4_00' TKFRAME_-2800014_RELATIVE = 'IAU_CALLISTO' TKFRAME_-2800014_SPEC = 'ANGLES' TKFRAME_-2800014_UNITS = 'DEGREES' TKFRAME_-2800014_AXES = ( 3, 2, 3 ) TKFRAME_-2800014_ANGLES = ( -246.2500000000000, -159.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_2_5_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_2_5_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.7907292403224E+03 Y (km): -0.3942430561748E+03 Z (km): 0.2243050672891E+04 and planetodetic coordinates Longitude (deg): -26.5000000000000 Latitude (deg): 68.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_2_5_00 = -2800015 FRAME_-2800015_NAME = 'JUICE_ROI_CAL_2_5_00' FRAME_-2800015_CLASS = 4 FRAME_-2800015_CLASS_ID = -2800015 FRAME_-2800015_CENTER = -280005 OBJECT_-280005_FRAME = 'JUICE_ROI_CAL_2_5_00' TKFRAME_-2800015_RELATIVE = 'IAU_CALLISTO' TKFRAME_-2800015_SPEC = 'ANGLES' TKFRAME_-2800015_UNITS = 'DEGREES' TKFRAME_-2800015_AXES = ( 3, 2, 3 ) TKFRAME_-2800015_ANGLES = ( -333.5000000000000, -21.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_2_6_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_2_6_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.6687407887464E+03 Y (km): 0.7171366969689E+03 Z (km): -0.2202375389285E+04 and planetodetic coordinates Longitude (deg): 133.0000000000000 Latitude (deg): -66.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_2_6_00 = -2800016 FRAME_-2800016_NAME = 'JUICE_ROI_CAL_2_6_00' FRAME_-2800016_CLASS = 4 FRAME_-2800016_CLASS_ID = -2800016 FRAME_-2800016_CENTER = -280006 OBJECT_-280006_FRAME = 'JUICE_ROI_CAL_2_6_00' TKFRAME_-2800016_RELATIVE = 'IAU_CALLISTO' TKFRAME_-2800016_SPEC = 'ANGLES' TKFRAME_-2800016_UNITS = 'DEGREES' TKFRAME_-2800016_AXES = ( 3, 2, 3 ) TKFRAME_-2800016_ANGLES = ( -133.0000000000000, -156.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_2_7_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_2_7_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.4384895210900E+03 Y (km): 0.7444074881654E+03 Z (km): -0.2250675692199E+04 and planetodetic coordinates Longitude (deg): 59.5000000000000 Latitude (deg): -69.0000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_2_7_00 = -2800017 FRAME_-2800017_NAME = 'JUICE_ROI_CAL_2_7_00' FRAME_-2800017_CLASS = 4 FRAME_-2800017_CLASS_ID = -2800017 FRAME_-2800017_CENTER = -280007 OBJECT_-280007_FRAME = 'JUICE_ROI_CAL_2_7_00' TKFRAME_-2800017_RELATIVE = 'IAU_CALLISTO' TKFRAME_-2800017_SPEC = 'ANGLES' TKFRAME_-2800017_UNITS = 'DEGREES' TKFRAME_-2800017_AXES = ( 3, 2, 3 ) TKFRAME_-2800017_ANGLES = ( -59.5000000000000, -159.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_3_1_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_3_1_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2299323215018E+03 Y (km): -0.1872648481299E+04 Z (km): -0.1500758286006E+04 and planetodetic coordinates Longitude (deg): -83.0000000000000 Latitude (deg): -38.5000000000000 Altitude (km): 0.4999999999994E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_3_1_00 = -2800018 FRAME_-2800018_NAME = 'JUICE_ROI_CAL_3_1_00' FRAME_-2800018_CLASS = 4 FRAME_-2800018_CLASS_ID = -2800018 FRAME_-2800018_CENTER = -280008 OBJECT_-280008_FRAME = 'JUICE_ROI_CAL_3_1_00' TKFRAME_-2800018_RELATIVE = 'IAU_CALLISTO' TKFRAME_-2800018_SPEC = 'ANGLES' TKFRAME_-2800018_UNITS = 'DEGREES' TKFRAME_-2800018_AXES = ( 3, 2, 3 ) TKFRAME_-2800018_ANGLES = ( -277.0000000000000, -128.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_3_2_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_3_2_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1098394925307E+03 Y (km): -0.1395643080213E+04 Z (km): -0.1962669691653E+04 and planetodetic coordinates Longitude (deg): -85.5000000000000 Latitude (deg): -54.5000000000000 Altitude (km): 0.4999999999995E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_3_2_00 = -2800019 FRAME_-2800019_NAME = 'JUICE_ROI_CAL_3_2_00' FRAME_-2800019_CLASS = 4 FRAME_-2800019_CLASS_ID = -2800019 FRAME_-2800019_CENTER = -280009 OBJECT_-280009_FRAME = 'JUICE_ROI_CAL_3_2_00' TKFRAME_-2800019_RELATIVE = 'IAU_CALLISTO' TKFRAME_-2800019_SPEC = 'ANGLES' TKFRAME_-2800019_UNITS = 'DEGREES' TKFRAME_-2800019_AXES = ( 3, 2, 3 ) TKFRAME_-2800019_ANGLES = ( -274.5000000000000, -144.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_3_3_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_3_3_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.3999100171922E+03 Y (km): -0.1394651970193E+04 Z (km): -0.1925350487622E+04 and planetodetic coordinates Longitude (deg): -74.0000000000000 Latitude (deg): -53.0000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_3_3_00 = -28000110 FRAME_-28000110_NAME = 'JUICE_ROI_CAL_3_3_00' FRAME_-28000110_CLASS = 4 FRAME_-28000110_CLASS_ID = -28000110 FRAME_-28000110_CENTER = -2800010 OBJECT_-2800010_FRAME = 'JUICE_ROI_CAL_3_3_00' TKFRAME_-28000110_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000110_SPEC = 'ANGLES' TKFRAME_-28000110_UNITS = 'DEGREES' TKFRAME_-28000110_AXES = ( 3, 2, 3 ) TKFRAME_-28000110_ANGLES = ( -286.0000000000000, -143.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_3_4_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_3_4_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.4721153592334E+03 Y (km): -0.1262729887419E+04 Z (km): -0.1998643779916E+04 and planetodetic coordinates Longitude (deg): -69.5000000000000 Latitude (deg): -56.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_3_4_00 = -28000111 FRAME_-28000111_NAME = 'JUICE_ROI_CAL_3_4_00' FRAME_-28000111_CLASS = 4 FRAME_-28000111_CLASS_ID = -28000111 FRAME_-28000111_CENTER = -2800011 OBJECT_-2800011_FRAME = 'JUICE_ROI_CAL_3_4_00' TKFRAME_-28000111_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000111_SPEC = 'ANGLES' TKFRAME_-28000111_UNITS = 'DEGREES' TKFRAME_-28000111_AXES = ( 3, 2, 3 ) TKFRAME_-28000111_ANGLES = ( -290.5000000000000, -146.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_3_5_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_3_5_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.6127326548838E+03 Y (km): -0.1660884536875E+04 Z (km): -0.1636452837331E+04 and planetodetic coordinates Longitude (deg): -69.7500000000000 Latitude (deg): -42.7500000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_3_5_00 = -28000112 FRAME_-28000112_NAME = 'JUICE_ROI_CAL_3_5_00' FRAME_-28000112_CLASS = 4 FRAME_-28000112_CLASS_ID = -28000112 FRAME_-28000112_CENTER = -2800012 OBJECT_-2800012_FRAME = 'JUICE_ROI_CAL_3_5_00' TKFRAME_-28000112_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000112_SPEC = 'ANGLES' TKFRAME_-28000112_UNITS = 'DEGREES' TKFRAME_-28000112_AXES = ( 3, 2, 3 ) TKFRAME_-28000112_ANGLES = ( -290.2500000000000, -132.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_1_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_1_01 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1933217399717E+04 Y (km): -0.1351837295559E+03 Z (km): 0.1433998774300E+04 and planetodetic coordinates Longitude (deg): -4.0000000000000 Latitude (deg): 36.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_1_01 = -28000113 FRAME_-28000113_NAME = 'JUICE_ROI_CAL_4_1_01' FRAME_-28000113_CLASS = 4 FRAME_-28000113_CLASS_ID = -28000113 FRAME_-28000113_CENTER = -2800013 OBJECT_-2800013_FRAME = 'JUICE_ROI_CAL_4_1_01' TKFRAME_-28000113_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000113_SPEC = 'ANGLES' TKFRAME_-28000113_UNITS = 'DEGREES' TKFRAME_-28000113_AXES = ( 3, 2, 3 ) TKFRAME_-28000113_ANGLES = ( -356.0000000000000, -53.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_1_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_1_02 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1295879056755E+04 Y (km): -0.1921219709458E+04 Z (km): 0.6645065374036E+03 and planetodetic coordinates Longitude (deg): -56.0000000000000 Latitude (deg): 16.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_1_02 = -28000114 FRAME_-28000114_NAME = 'JUICE_ROI_CAL_4_1_02' FRAME_-28000114_CLASS = 4 FRAME_-28000114_CLASS_ID = -28000114 FRAME_-28000114_CENTER = -2800014 OBJECT_-2800014_FRAME = 'JUICE_ROI_CAL_4_1_02' TKFRAME_-28000114_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000114_SPEC = 'ANGLES' TKFRAME_-28000114_UNITS = 'DEGREES' TKFRAME_-28000114_AXES = ( 3, 2, 3 ) TKFRAME_-28000114_ANGLES = ( -304.0000000000000, -74.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_1_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_1_03 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1445305880184E+04 Y (km): 0.2548464220531E+03 Z (km): 0.1912616232774E+04 and planetodetic coordinates Longitude (deg): 10.0000000000000 Latitude (deg): 52.5000000000000 Altitude (km): 0.4999999999995E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_1_03 = -28000115 FRAME_-28000115_NAME = 'JUICE_ROI_CAL_4_1_03' FRAME_-28000115_CLASS = 4 FRAME_-28000115_CLASS_ID = -28000115 FRAME_-28000115_CENTER = -2800015 OBJECT_-2800015_FRAME = 'JUICE_ROI_CAL_4_1_03' TKFRAME_-28000115_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000115_SPEC = 'ANGLES' TKFRAME_-28000115_UNITS = 'DEGREES' TKFRAME_-28000115_AXES = ( 3, 2, 3 ) TKFRAME_-28000115_ANGLES = ( -10.0000000000000, -37.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_1_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_1_04 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2365140080089E+04 Y (km): 0.4170380092746E+03 Z (km): 0.2101150646161E+03 and planetodetic coordinates Longitude (deg): 10.0000000000000 Latitude (deg): 5.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_1_04 = -28000116 FRAME_-28000116_NAME = 'JUICE_ROI_CAL_4_1_04' FRAME_-28000116_CLASS = 4 FRAME_-28000116_CLASS_ID = -28000116 FRAME_-28000116_CENTER = -2800016 OBJECT_-2800016_FRAME = 'JUICE_ROI_CAL_4_1_04' TKFRAME_-28000116_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000116_SPEC = 'ANGLES' TKFRAME_-28000116_UNITS = 'DEGREES' TKFRAME_-28000116_AXES = ( 3, 2, 3 ) TKFRAME_-28000116_ANGLES = ( -10.0000000000000, -85.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_2_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_2_01 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1751679414294E+04 Y (km): -0.9118665862110E+03 Z (km): 0.1382778072755E+04 and planetodetic coordinates Longitude (deg): -27.5000000000000 Latitude (deg): 35.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_2_01 = -28000117 FRAME_-28000117_NAME = 'JUICE_ROI_CAL_4_2_01' FRAME_-28000117_CLASS = 4 FRAME_-28000117_CLASS_ID = -28000117 FRAME_-28000117_CENTER = -2800017 OBJECT_-2800017_FRAME = 'JUICE_ROI_CAL_4_2_01' TKFRAME_-28000117_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000117_SPEC = 'ANGLES' TKFRAME_-28000117_UNITS = 'DEGREES' TKFRAME_-28000117_AXES = ( 3, 2, 3 ) TKFRAME_-28000117_ANGLES = ( -332.5000000000001, -55.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_2_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_2_02 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.3355827306240E+03 Y (km): 0.2005363322982E+04 Z (km): -0.1295321895803E+04 and planetodetic coordinates Longitude (deg): 99.5000000000000 Latitude (deg): -32.5000000000000 Altitude (km): 0.5000000000006E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_2_02 = -28000118 FRAME_-28000118_NAME = 'JUICE_ROI_CAL_4_2_02' FRAME_-28000118_CLASS = 4 FRAME_-28000118_CLASS_ID = -28000118 FRAME_-28000118_CENTER = -2800018 OBJECT_-2800018_FRAME = 'JUICE_ROI_CAL_4_2_02' TKFRAME_-28000118_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000118_SPEC = 'ANGLES' TKFRAME_-28000118_UNITS = 'DEGREES' TKFRAME_-28000118_AXES = ( 3, 2, 3 ) TKFRAME_-28000118_ANGLES = ( -99.5000000000000, -122.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_2_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_2_03 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.2454082344801E+03 Y (km): 0.1864060606349E+04 Z (km): -0.1508976306741E+04 and planetodetic coordinates Longitude (deg): 97.5000000000000 Latitude (deg): -38.7500000000000 Altitude (km): 0.4999999999993E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_2_03 = -28000119 FRAME_-28000119_NAME = 'JUICE_ROI_CAL_4_2_03' FRAME_-28000119_CLASS = 4 FRAME_-28000119_CLASS_ID = -28000119 FRAME_-28000119_CENTER = -2800019 OBJECT_-2800019_FRAME = 'JUICE_ROI_CAL_4_2_03' TKFRAME_-28000119_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000119_SPEC = 'ANGLES' TKFRAME_-28000119_UNITS = 'DEGREES' TKFRAME_-28000119_AXES = ( 3, 2, 3 ) TKFRAME_-28000119_ANGLES = ( -97.5000000000000, -128.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_2_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_2_04 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2081479770737E+04 Y (km): -0.1083549785036E+04 Z (km): 0.5525563024358E+03 and planetodetic coordinates Longitude (deg): -27.5000000000000 Latitude (deg): 13.2500000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_2_04 = -28000120 FRAME_-28000120_NAME = 'JUICE_ROI_CAL_4_2_04' FRAME_-28000120_CLASS = 4 FRAME_-28000120_CLASS_ID = -28000120 FRAME_-28000120_CENTER = -2800020 OBJECT_-2800020_FRAME = 'JUICE_ROI_CAL_4_2_04' TKFRAME_-28000120_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000120_SPEC = 'ANGLES' TKFRAME_-28000120_UNITS = 'DEGREES' TKFRAME_-28000120_AXES = ( 3, 2, 3 ) TKFRAME_-28000120_ANGLES = ( -332.5000000000001, -76.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_2_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_2_05 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.2403005616894E+04 Y (km): -0.1469741197656E+03 Z (km): -0.1261715233105E+03 and planetodetic coordinates Longitude (deg): -176.5000000000000 Latitude (deg): -3.0000000000000 Altitude (km): 0.4999999999996E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_2_05 = -28000121 FRAME_-28000121_NAME = 'JUICE_ROI_CAL_4_2_05' FRAME_-28000121_CLASS = 4 FRAME_-28000121_CLASS_ID = -28000121 FRAME_-28000121_CENTER = -2800021 OBJECT_-2800021_FRAME = 'JUICE_ROI_CAL_4_2_05' TKFRAME_-28000121_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000121_SPEC = 'ANGLES' TKFRAME_-28000121_UNITS = 'DEGREES' TKFRAME_-28000121_AXES = ( 3, 2, 3 ) TKFRAME_-28000121_ANGLES = ( -183.5000000000000, -93.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_01 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.2294856824703E+04 Y (km): -0.6580396054608E+03 Z (km): 0.3355185117945E+03 and planetodetic coordinates Longitude (deg): -164.0000000000000 Latitude (deg): 8.0000000000000 Altitude (km): 0.4999999999996E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_01 = -28000122 FRAME_-28000122_NAME = 'JUICE_ROI_CAL_4_3_01' FRAME_-28000122_CLASS = 4 FRAME_-28000122_CLASS_ID = -28000122 FRAME_-28000122_CENTER = -2800022 OBJECT_-2800022_FRAME = 'JUICE_ROI_CAL_4_3_01' TKFRAME_-28000122_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000122_SPEC = 'ANGLES' TKFRAME_-28000122_UNITS = 'DEGREES' TKFRAME_-28000122_AXES = ( 3, 2, 3 ) TKFRAME_-28000122_ANGLES = ( -196.0000000000000, -82.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_02 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1533626275359E+04 Y (km): -0.1733449169815E+04 Z (km): 0.6746117870259E+03 and planetodetic coordinates Longitude (deg): -131.5000000000000 Latitude (deg): 16.2500000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_02 = -28000123 FRAME_-28000123_NAME = 'JUICE_ROI_CAL_4_3_02' FRAME_-28000123_CLASS = 4 FRAME_-28000123_CLASS_ID = -28000123 FRAME_-28000123_CENTER = -2800023 OBJECT_-2800023_FRAME = 'JUICE_ROI_CAL_4_3_02' TKFRAME_-28000123_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000123_SPEC = 'ANGLES' TKFRAME_-28000123_UNITS = 'DEGREES' TKFRAME_-28000123_AXES = ( 3, 2, 3 ) TKFRAME_-28000123_ANGLES = ( -228.5000000000000, -73.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_03 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1627064362282E+04 Y (km): -0.1282674118202E+04 Z (km): 0.1232625371915E+04 and planetodetic coordinates Longitude (deg): -141.7500000000000 Latitude (deg): 30.7500000000000 Altitude (km): 0.4999999999993E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_03 = -28000124 FRAME_-28000124_NAME = 'JUICE_ROI_CAL_4_3_03' FRAME_-28000124_CLASS = 4 FRAME_-28000124_CLASS_ID = -28000124 FRAME_-28000124_CENTER = -2800024 OBJECT_-2800024_FRAME = 'JUICE_ROI_CAL_4_3_03' TKFRAME_-28000124_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000124_SPEC = 'ANGLES' TKFRAME_-28000124_UNITS = 'DEGREES' TKFRAME_-28000124_AXES = ( 3, 2, 3 ) TKFRAME_-28000124_ANGLES = ( -218.2500000000000, -59.2500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_04 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.7067705789133E+03 Y (km): -0.1941836206299E+04 Z (km): -0.1241653790993E+04 and planetodetic coordinates Longitude (deg): -70.0000000000000 Latitude (deg): -31.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_04 = -28000125 FRAME_-28000125_NAME = 'JUICE_ROI_CAL_4_3_04' FRAME_-28000125_CLASS = 4 FRAME_-28000125_CLASS_ID = -28000125 FRAME_-28000125_CENTER = -2800025 OBJECT_-2800025_FRAME = 'JUICE_ROI_CAL_4_3_04' TKFRAME_-28000125_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000125_SPEC = 'ANGLES' TKFRAME_-28000125_UNITS = 'DEGREES' TKFRAME_-28000125_AXES = ( 3, 2, 3 ) TKFRAME_-28000125_ANGLES = ( -290.0000000000000, -121.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_05 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.7394201709275E+03 Y (km): -0.1451193795445E+04 Z (km): -0.1777428203582E+04 and planetodetic coordinates Longitude (deg): -63.0000000000000 Latitude (deg): -47.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_05 = -28000126 FRAME_-28000126_NAME = 'JUICE_ROI_CAL_4_3_05' FRAME_-28000126_CLASS = 4 FRAME_-28000126_CLASS_ID = -28000126 FRAME_-28000126_CENTER = -2800026 OBJECT_-2800026_FRAME = 'JUICE_ROI_CAL_4_3_05' TKFRAME_-28000126_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000126_SPEC = 'ANGLES' TKFRAME_-28000126_UNITS = 'DEGREES' TKFRAME_-28000126_AXES = ( 3, 2, 3 ) TKFRAME_-28000126_ANGLES = ( -297.0000000000000, -137.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_06 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_06 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1282216013020E+04 Y (km): -0.1937217078287E+04 Z (km): -0.6442582770495E+03 and planetodetic coordinates Longitude (deg): -56.5000000000000 Latitude (deg): -15.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_06 = -28000127 FRAME_-28000127_NAME = 'JUICE_ROI_CAL_4_3_06' FRAME_-28000127_CLASS = 4 FRAME_-28000127_CLASS_ID = -28000127 FRAME_-28000127_CENTER = -2800027 OBJECT_-2800027_FRAME = 'JUICE_ROI_CAL_4_3_06' TKFRAME_-28000127_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000127_SPEC = 'ANGLES' TKFRAME_-28000127_UNITS = 'DEGREES' TKFRAME_-28000127_AXES = ( 3, 2, 3 ) TKFRAME_-28000127_ANGLES = ( -303.4999999999999, -105.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_07 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_07 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1591147170108E+04 Y (km): 0.4713192642567E+03 Z (km): 0.1748732533636E+04 and planetodetic coordinates Longitude (deg): 16.5000000000000 Latitude (deg): 46.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_07 = -28000128 FRAME_-28000128_NAME = 'JUICE_ROI_CAL_4_3_07' FRAME_-28000128_CLASS = 4 FRAME_-28000128_CLASS_ID = -28000128 FRAME_-28000128_CENTER = -2800028 OBJECT_-2800028_FRAME = 'JUICE_ROI_CAL_4_3_07' TKFRAME_-28000128_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000128_SPEC = 'ANGLES' TKFRAME_-28000128_UNITS = 'DEGREES' TKFRAME_-28000128_AXES = ( 3, 2, 3 ) TKFRAME_-28000128_ANGLES = ( -16.5000000000000, -43.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_08 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_08 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1496895692787E+04 Y (km): 0.1009668893610E+04 Z (km): 0.1597444412239E+04 and planetodetic coordinates Longitude (deg): 146.0000000000000 Latitude (deg): 41.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_08 = -28000129 FRAME_-28000129_NAME = 'JUICE_ROI_CAL_4_3_08' FRAME_-28000129_CLASS = 4 FRAME_-28000129_CLASS_ID = -28000129 FRAME_-28000129_CENTER = -2800029 OBJECT_-2800029_FRAME = 'JUICE_ROI_CAL_4_3_08' TKFRAME_-28000129_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000129_SPEC = 'ANGLES' TKFRAME_-28000129_UNITS = 'DEGREES' TKFRAME_-28000129_AXES = ( 3, 2, 3 ) TKFRAME_-28000129_ANGLES = ( -146.0000000000000, -48.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_09 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_09 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1785749687318E+04 Y (km): 0.1579897864543E+04 Z (km): -0.3563389283513E+03 and planetodetic coordinates Longitude (deg): 138.5000000000000 Latitude (deg): -8.5000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_09 = -28000130 FRAME_-28000130_NAME = 'JUICE_ROI_CAL_4_3_09' FRAME_-28000130_CLASS = 4 FRAME_-28000130_CLASS_ID = -28000130 FRAME_-28000130_CENTER = -2800030 OBJECT_-2800030_FRAME = 'JUICE_ROI_CAL_4_3_09' TKFRAME_-28000130_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000130_SPEC = 'ANGLES' TKFRAME_-28000130_UNITS = 'DEGREES' TKFRAME_-28000130_AXES = ( 3, 2, 3 ) TKFRAME_-28000130_ANGLES = ( -138.5000000000000, -98.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_10 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_10 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1995904708077E+04 Y (km): 0.1346254724404E+04 Z (km): -0.1261715233105E+03 and planetodetic coordinates Longitude (deg): 146.0000000000000 Latitude (deg): -3.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_10 = -28000131 FRAME_-28000131_NAME = 'JUICE_ROI_CAL_4_3_10' FRAME_-28000131_CLASS = 4 FRAME_-28000131_CLASS_ID = -28000131 FRAME_-28000131_CENTER = -2800031 OBJECT_-2800031_FRAME = 'JUICE_ROI_CAL_4_3_10' TKFRAME_-28000131_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000131_SPEC = 'ANGLES' TKFRAME_-28000131_UNITS = 'DEGREES' TKFRAME_-28000131_AXES = ( 3, 2, 3 ) TKFRAME_-28000131_ANGLES = ( -146.0000000000000, -93.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_11 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_11 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2049571051036E+03 Y (km): -0.2128560920896E+04 Z (km): 0.1113183556787E+04 and planetodetic coordinates Longitude (deg): -84.5000000000000 Latitude (deg): 27.5000000000000 Altitude (km): 0.5000000000006E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_11 = -28000132 FRAME_-28000132_NAME = 'JUICE_ROI_CAL_4_3_11' FRAME_-28000132_CLASS = 4 FRAME_-28000132_CLASS_ID = -28000132 FRAME_-28000132_CENTER = -2800032 OBJECT_-2800032_FRAME = 'JUICE_ROI_CAL_4_3_11' TKFRAME_-28000132_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000132_SPEC = 'ANGLES' TKFRAME_-28000132_UNITS = 'DEGREES' TKFRAME_-28000132_AXES = ( 3, 2, 3 ) TKFRAME_-28000132_ANGLES = ( -275.5000000000000, -62.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_3_12 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_3_12 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.8963699932115E+03 Y (km): -0.2218593585995E+04 Z (km): -0.2938026130811E+03 and planetodetic coordinates Longitude (deg): -68.0000000000000 Latitude (deg): -7.0000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_3_12 = -28000133 FRAME_-28000133_NAME = 'JUICE_ROI_CAL_4_3_12' FRAME_-28000133_CLASS = 4 FRAME_-28000133_CLASS_ID = -28000133 FRAME_-28000133_CENTER = -2800033 OBJECT_-2800033_FRAME = 'JUICE_ROI_CAL_4_3_12' TKFRAME_-28000133_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000133_SPEC = 'ANGLES' TKFRAME_-28000133_UNITS = 'DEGREES' TKFRAME_-28000133_AXES = ( 3, 2, 3 ) TKFRAME_-28000133_ANGLES = ( -292.0000000000000, -97.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_4_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_4_01 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.9611578440707E+03 Y (km): 0.2210511704404E+04 Z (km): -0.4207426143900E+02 and planetodetic coordinates Longitude (deg): 113.5000000000000 Latitude (deg): -1.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_4_01 = -28000134 FRAME_-28000134_NAME = 'JUICE_ROI_CAL_4_4_01' FRAME_-28000134_CLASS = 4 FRAME_-28000134_CLASS_ID = -28000134 FRAME_-28000134_CENTER = -2800034 OBJECT_-2800034_FRAME = 'JUICE_ROI_CAL_4_4_01' TKFRAME_-28000134_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000134_SPEC = 'ANGLES' TKFRAME_-28000134_UNITS = 'DEGREES' TKFRAME_-28000134_AXES = ( 3, 2, 3 ) TKFRAME_-28000134_ANGLES = ( -113.5000000000000, -91.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_4_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_4_02 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2230019134877E+03 Y (km): -0.1407978669058E+04 Z (km): 0.1944176651968E+04 and planetodetic coordinates Longitude (deg): -81.0000000000000 Latitude (deg): 53.7500000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_4_02 = -28000135 FRAME_-28000135_NAME = 'JUICE_ROI_CAL_4_4_02' FRAME_-28000135_CLASS = 4 FRAME_-28000135_CLASS_ID = -28000135 FRAME_-28000135_CENTER = -2800035 OBJECT_-2800035_FRAME = 'JUICE_ROI_CAL_4_4_02' TKFRAME_-28000135_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000135_SPEC = 'ANGLES' TKFRAME_-28000135_UNITS = 'DEGREES' TKFRAME_-28000135_AXES = ( 3, 2, 3 ) TKFRAME_-28000135_ANGLES = ( -279.0000000000000, -36.2500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_4_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_4_03 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1767493727006E+04 Y (km): -0.1393379702899E+04 Z (km): 0.8639534527638E+03 and planetodetic coordinates Longitude (deg): -38.2500000000000 Latitude (deg): 21.0000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_4_03 = -28000136 FRAME_-28000136_NAME = 'JUICE_ROI_CAL_4_4_03' FRAME_-28000136_CLASS = 4 FRAME_-28000136_CLASS_ID = -28000136 FRAME_-28000136_CENTER = -2800036 OBJECT_-2800036_FRAME = 'JUICE_ROI_CAL_4_4_03' TKFRAME_-28000136_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000136_SPEC = 'ANGLES' TKFRAME_-28000136_UNITS = 'DEGREES' TKFRAME_-28000136_AXES = ( 3, 2, 3 ) TKFRAME_-28000136_ANGLES = ( -321.7500000000000, -69.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_4_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_4_04 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2115404996649E+04 Y (km): -0.1077852681780E+04 Z (km): -0.4186310267194E+03 and planetodetic coordinates Longitude (deg): -27.0000000000000 Latitude (deg): -10.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_4_04 = -28000137 FRAME_-28000137_NAME = 'JUICE_ROI_CAL_4_4_04' FRAME_-28000137_CLASS = 4 FRAME_-28000137_CLASS_ID = -28000137 FRAME_-28000137_CENTER = -2800037 OBJECT_-2800037_FRAME = 'JUICE_ROI_CAL_4_4_04' TKFRAME_-28000137_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000137_SPEC = 'ANGLES' TKFRAME_-28000137_UNITS = 'DEGREES' TKFRAME_-28000137_AXES = ( 3, 2, 3 ) TKFRAME_-28000137_ANGLES = ( -333.0000000000000, -100.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_5_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_5_01 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.5193903915601E+03 Y (km): 0.2342818655931E+04 Z (km): 0.2310649401758E+03 and planetodetic coordinates Longitude (deg): 77.5000000000000 Latitude (deg): 5.5000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_5_01 = -28000138 FRAME_-28000138_NAME = 'JUICE_ROI_CAL_4_5_01' FRAME_-28000138_CLASS = 4 FRAME_-28000138_CLASS_ID = -28000138 FRAME_-28000138_CENTER = -2800038 OBJECT_-2800038_FRAME = 'JUICE_ROI_CAL_4_5_01' TKFRAME_-28000138_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000138_SPEC = 'ANGLES' TKFRAME_-28000138_UNITS = 'DEGREES' TKFRAME_-28000138_AXES = ( 3, 2, 3 ) TKFRAME_-28000138_ANGLES = ( -77.5000000000000, -84.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_5_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_5_02 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.2030390256824E+04 Y (km): -0.8306545851803E+03 Z (km): -0.9997424693957E+03 and planetodetic coordinates Longitude (deg): -157.7500000000000 Latitude (deg): -24.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_5_02 = -28000139 FRAME_-28000139_NAME = 'JUICE_ROI_CAL_4_5_02' FRAME_-28000139_CLASS = 4 FRAME_-28000139_CLASS_ID = -28000139 FRAME_-28000139_CENTER = -2800039 OBJECT_-2800039_FRAME = 'JUICE_ROI_CAL_4_5_02' TKFRAME_-28000139_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000139_SPEC = 'ANGLES' TKFRAME_-28000139_UNITS = 'DEGREES' TKFRAME_-28000139_AXES = ( 3, 2, 3 ) TKFRAME_-28000139_ANGLES = ( -202.2500000000000, -114.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_5_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_5_03 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1303739796844E+04 Y (km): -0.1567576720920E+04 Z (km): -0.1286437874969E+04 and planetodetic coordinates Longitude (deg): -129.7500000000000 Latitude (deg): -32.2500000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_5_03 = -28000140 FRAME_-28000140_NAME = 'JUICE_ROI_CAL_4_5_03' FRAME_-28000140_CLASS = 4 FRAME_-28000140_CLASS_ID = -28000140 FRAME_-28000140_CENTER = -2800040 OBJECT_-2800040_FRAME = 'JUICE_ROI_CAL_4_5_03' TKFRAME_-28000140_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000140_SPEC = 'ANGLES' TKFRAME_-28000140_UNITS = 'DEGREES' TKFRAME_-28000140_AXES = ( 3, 2, 3 ) TKFRAME_-28000140_ANGLES = ( -230.2500000000000, -122.2500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_6_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_6_01 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1605940210826E+04 Y (km): -0.1300464740993E+04 Z (km): 0.1241653790993E+04 and planetodetic coordinates Longitude (deg): -141.0000000000000 Latitude (deg): 31.0000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_6_01 = -28000141 FRAME_-28000141_NAME = 'JUICE_ROI_CAL_4_6_01' FRAME_-28000141_CLASS = 4 FRAME_-28000141_CLASS_ID = -28000141 FRAME_-28000141_CENTER = -2800041 OBJECT_-2800041_FRAME = 'JUICE_ROI_CAL_4_6_01' TKFRAME_-28000141_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000141_SPEC = 'ANGLES' TKFRAME_-28000141_UNITS = 'DEGREES' TKFRAME_-28000141_AXES = ( 3, 2, 3 ) TKFRAME_-28000141_ANGLES = ( -219.0000000000000, -59.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_6_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_6_02 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1344571804533E+04 Y (km): -0.1920247542565E+04 Z (km): 0.5627900831838E+03 and planetodetic coordinates Longitude (deg): -55.0000000000000 Latitude (deg): 13.5000000000000 Altitude (km): 0.4999999999994E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_6_02 = -28000142 FRAME_-28000142_NAME = 'JUICE_ROI_CAL_4_6_02' FRAME_-28000142_CLASS = 4 FRAME_-28000142_CLASS_ID = -28000142 FRAME_-28000142_CENTER = -2800042 OBJECT_-2800042_FRAME = 'JUICE_ROI_CAL_4_6_02' TKFRAME_-28000142_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000142_SPEC = 'ANGLES' TKFRAME_-28000142_UNITS = 'DEGREES' TKFRAME_-28000142_AXES = ( 3, 2, 3 ) TKFRAME_-28000142_ANGLES = ( -305.0000000000000, -76.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_6_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_6_03 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1383821189452E+04 Y (km): -0.9159312645748E+03 Z (km): -0.1748732533636E+04 and planetodetic coordinates Longitude (deg): -33.5000000000000 Latitude (deg): -46.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_6_03 = -28000143 FRAME_-28000143_NAME = 'JUICE_ROI_CAL_4_6_03' FRAME_-28000143_CLASS = 4 FRAME_-28000143_CLASS_ID = -28000143 FRAME_-28000143_CENTER = -2800043 OBJECT_-2800043_FRAME = 'JUICE_ROI_CAL_4_6_03' TKFRAME_-28000143_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000143_SPEC = 'ANGLES' TKFRAME_-28000143_UNITS = 'DEGREES' TKFRAME_-28000143_AXES = ( 3, 2, 3 ) TKFRAME_-28000143_ANGLES = ( -326.5000000000000, -136.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_7_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_7_01 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1905487166628E+04 Y (km): -0.1409986332271E+04 Z (km): 0.4393334048565E+03 and planetodetic coordinates Longitude (deg): -36.5000000000000 Latitude (deg): 10.5000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_7_01 = -28000144 FRAME_-28000144_NAME = 'JUICE_ROI_CAL_4_7_01' FRAME_-28000144_CLASS = 4 FRAME_-28000144_CLASS_ID = -28000144 FRAME_-28000144_CENTER = -2800044 OBJECT_-2800044_FRAME = 'JUICE_ROI_CAL_4_7_01' TKFRAME_-28000144_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000144_SPEC = 'ANGLES' TKFRAME_-28000144_UNITS = 'DEGREES' TKFRAME_-28000144_AXES = ( 3, 2, 3 ) TKFRAME_-28000144_ANGLES = ( -323.5000000000001, -79.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_7_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_7_02 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1380149623054E+04 Y (km): -0.1429186772239E+04 Z (km): 0.1365492155978E+04 and planetodetic coordinates Longitude (deg): -46.0000000000000 Latitude (deg): 34.5000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_7_02 = -28000145 FRAME_-28000145_NAME = 'JUICE_ROI_CAL_4_7_02' FRAME_-28000145_CLASS = 4 FRAME_-28000145_CLASS_ID = -28000145 FRAME_-28000145_CENTER = -2800045 OBJECT_-2800045_FRAME = 'JUICE_ROI_CAL_4_7_02' TKFRAME_-28000145_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000145_SPEC = 'ANGLES' TKFRAME_-28000145_UNITS = 'DEGREES' TKFRAME_-28000145_AXES = ( 3, 2, 3 ) TKFRAME_-28000145_ANGLES = ( -314.0000000000000, -55.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_7_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_7_03 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2289027037611E+04 Y (km): -0.6780406988735E+03 Z (km): -0.3355185117945E+03 and planetodetic coordinates Longitude (deg): -16.5000000000000 Latitude (deg): -8.0000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_7_03 = -28000146 FRAME_-28000146_NAME = 'JUICE_ROI_CAL_4_7_03' FRAME_-28000146_CLASS = 4 FRAME_-28000146_CLASS_ID = -28000146 FRAME_-28000146_CENTER = -2800046 OBJECT_-2800046_FRAME = 'JUICE_ROI_CAL_4_7_03' TKFRAME_-28000146_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000146_SPEC = 'ANGLES' TKFRAME_-28000146_UNITS = 'DEGREES' TKFRAME_-28000146_AXES = ( 3, 2, 3 ) TKFRAME_-28000146_ANGLES = ( -343.5000000000000, -98.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_7_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_7_04 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.5538974873031E+03 Y (km): -0.6371861702326E+03 Z (km): 0.2258129313840E+04 and planetodetic coordinates Longitude (deg): -49.0000000000000 Latitude (deg): 69.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_7_04 = -28000147 FRAME_-28000147_NAME = 'JUICE_ROI_CAL_4_7_04' FRAME_-28000147_CLASS = 4 FRAME_-28000147_CLASS_ID = -28000147 FRAME_-28000147_CENTER = -2800047 OBJECT_-2800047_FRAME = 'JUICE_ROI_CAL_4_7_04' TKFRAME_-28000147_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000147_SPEC = 'ANGLES' TKFRAME_-28000147_UNITS = 'DEGREES' TKFRAME_-28000147_AXES = ( 3, 2, 3 ) TKFRAME_-28000147_ANGLES = ( -311.0000000000000, -20.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_7_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_7_05 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1633381311420E+04 Y (km): 0.8322493468972E+03 Z (km): 0.1565689354914E+04 and planetodetic coordinates Longitude (deg): 27.0000000000000 Latitude (deg): 40.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_7_05 = -28000148 FRAME_-28000148_NAME = 'JUICE_ROI_CAL_4_7_05' FRAME_-28000148_CLASS = 4 FRAME_-28000148_CLASS_ID = -28000148 FRAME_-28000148_CENTER = -2800048 OBJECT_-2800048_FRAME = 'JUICE_ROI_CAL_4_7_05' TKFRAME_-28000148_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000148_SPEC = 'ANGLES' TKFRAME_-28000148_UNITS = 'DEGREES' TKFRAME_-28000148_AXES = ( 3, 2, 3 ) TKFRAME_-28000148_ANGLES = ( -27.0000000000000, -49.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_4_7_06 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_4_7_06 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1080680449376E+04 Y (km): 0.1798554298874E+04 Z (km): -0.1187134718697E+04 and planetodetic coordinates Longitude (deg): 59.0000000000000 Latitude (deg): -29.5000000000000 Altitude (km): 0.4999999999992E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_4_7_06 = -28000149 FRAME_-28000149_NAME = 'JUICE_ROI_CAL_4_7_06' FRAME_-28000149_CLASS = 4 FRAME_-28000149_CLASS_ID = -28000149 FRAME_-28000149_CENTER = -2800049 OBJECT_-2800049_FRAME = 'JUICE_ROI_CAL_4_7_06' TKFRAME_-28000149_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000149_SPEC = 'ANGLES' TKFRAME_-28000149_UNITS = 'DEGREES' TKFRAME_-28000149_AXES = ( 3, 2, 3 ) TKFRAME_-28000149_ANGLES = ( -59.0000000000000, -119.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_1_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_1_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1484780251970E+04 Y (km): -0.4968005227982E+03 Z (km): 0.1833186701869E+04 and planetodetic coordinates Longitude (deg): -161.5000000000000 Latitude (deg): 49.5000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_1_00 = -28000150 FRAME_-28000150_NAME = 'JUICE_ROI_CAL_5_1_00' FRAME_-28000150_CLASS = 4 FRAME_-28000150_CLASS_ID = -28000150 FRAME_-28000150_CENTER = -2800050 OBJECT_-2800050_FRAME = 'JUICE_ROI_CAL_5_1_00' TKFRAME_-28000150_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000150_SPEC = 'ANGLES' TKFRAME_-28000150_UNITS = 'DEGREES' TKFRAME_-28000150_AXES = ( 3, 2, 3 ) TKFRAME_-28000150_ANGLES = ( -198.5000000000000, -40.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_2_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_2_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1965608400341E+04 Y (km): -0.5822397339917E+03 Z (km): 0.1268596527140E+04 and planetodetic coordinates Longitude (deg): -163.5000000000000 Latitude (deg): 31.7500000000000 Altitude (km): 0.4999999999996E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_2_00 = -28000151 FRAME_-28000151_NAME = 'JUICE_ROI_CAL_5_2_00' FRAME_-28000151_CLASS = 4 FRAME_-28000151_CLASS_ID = -28000151 FRAME_-28000151_CENTER = -2800051 OBJECT_-2800051_FRAME = 'JUICE_ROI_CAL_5_2_00' TKFRAME_-28000151_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000151_SPEC = 'ANGLES' TKFRAME_-28000151_UNITS = 'DEGREES' TKFRAME_-28000151_AXES = ( 3, 2, 3 ) TKFRAME_-28000151_ANGLES = ( -196.5000000000000, -58.2500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_3_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_3_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1757712308530E+04 Y (km): -0.1383349587879E+03 Z (km): 0.1644161646439E+04 and planetodetic coordinates Longitude (deg): -175.5000000000000 Latitude (deg): 43.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_3_00 = -28000152 FRAME_-28000152_NAME = 'JUICE_ROI_CAL_5_3_00' FRAME_-28000152_CLASS = 4 FRAME_-28000152_CLASS_ID = -28000152 FRAME_-28000152_CENTER = -2800052 OBJECT_-2800052_FRAME = 'JUICE_ROI_CAL_5_3_00' TKFRAME_-28000152_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000152_SPEC = 'ANGLES' TKFRAME_-28000152_UNITS = 'DEGREES' TKFRAME_-28000152_AXES = ( 3, 2, 3 ) TKFRAME_-28000152_ANGLES = ( -184.5000000000000, -47.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_4_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_4_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1194467973636E+04 Y (km): -0.1236907795552E+04 Z (km): 0.1689752054374E+04 and planetodetic coordinates Longitude (deg): -134.0000000000000 Latitude (deg): 44.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_4_00 = -28000153 FRAME_-28000153_NAME = 'JUICE_ROI_CAL_5_4_00' FRAME_-28000153_CLASS = 4 FRAME_-28000153_CLASS_ID = -28000153 FRAME_-28000153_CENTER = -2800053 OBJECT_-2800053_FRAME = 'JUICE_ROI_CAL_5_4_00' TKFRAME_-28000153_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000153_SPEC = 'ANGLES' TKFRAME_-28000153_UNITS = 'DEGREES' TKFRAME_-28000153_AXES = ( 3, 2, 3 ) TKFRAME_-28000153_ANGLES = ( -226.0000000000000, -45.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_5_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_5_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1233322469790E+04 Y (km): -0.1697522749530E+04 Z (km): 0.1187134718697E+04 and planetodetic coordinates Longitude (deg): -126.0000000000000 Latitude (deg): 29.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_5_00 = -28000154 FRAME_-28000154_NAME = 'JUICE_ROI_CAL_5_5_00' FRAME_-28000154_CLASS = 4 FRAME_-28000154_CLASS_ID = -28000154 FRAME_-28000154_CENTER = -2800054 OBJECT_-2800054_FRAME = 'JUICE_ROI_CAL_5_5_00' TKFRAME_-28000154_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000154_SPEC = 'ANGLES' TKFRAME_-28000154_UNITS = 'DEGREES' TKFRAME_-28000154_AXES = ( 3, 2, 3 ) TKFRAME_-28000154_ANGLES = ( -234.0000000000000, -60.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_6_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_6_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2245057052417E+03 Y (km): -0.1597441097579E+04 Z (km): -0.1791573545261E+04 and planetodetic coordinates Longitude (deg): -82.0000000000000 Latitude (deg): -48.0000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_6_00 = -28000155 FRAME_-28000155_NAME = 'JUICE_ROI_CAL_5_6_00' FRAME_-28000155_CLASS = 4 FRAME_-28000155_CLASS_ID = -28000155 FRAME_-28000155_CENTER = -2800055 OBJECT_-2800055_FRAME = 'JUICE_ROI_CAL_5_6_00' TKFRAME_-28000155_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000155_SPEC = 'ANGLES' TKFRAME_-28000155_UNITS = 'DEGREES' TKFRAME_-28000155_AXES = ( 3, 2, 3 ) TKFRAME_-28000155_ANGLES = ( -278.0000000000000, -138.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_7_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_7_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1238022626298E+04 Y (km): -0.4876700815470E+03 Z (km): -0.2010331939840E+04 and planetodetic coordinates Longitude (deg): -21.5000000000000 Latitude (deg): -56.5000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_7_00 = -28000156 FRAME_-28000156_NAME = 'JUICE_ROI_CAL_5_7_00' FRAME_-28000156_CLASS = 4 FRAME_-28000156_CLASS_ID = -28000156 FRAME_-28000156_CENTER = -2800056 OBJECT_-2800056_FRAME = 'JUICE_ROI_CAL_5_7_00' TKFRAME_-28000156_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000156_SPEC = 'ANGLES' TKFRAME_-28000156_UNITS = 'DEGREES' TKFRAME_-28000156_AXES = ( 3, 2, 3 ) TKFRAME_-28000156_ANGLES = ( -338.5000000000000, -146.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_8_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_8_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1111579358841E+04 Y (km): -0.1562222909294E+03 Z (km): -0.2133528196396E+04 and planetodetic coordinates Longitude (deg): -172.0000000000000 Latitude (deg): -62.2500000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_8_00 = -28000157 FRAME_-28000157_NAME = 'JUICE_ROI_CAL_5_8_00' FRAME_-28000157_CLASS = 4 FRAME_-28000157_CLASS_ID = -28000157 FRAME_-28000157_CENTER = -2800057 OBJECT_-2800057_FRAME = 'JUICE_ROI_CAL_5_8_00' TKFRAME_-28000157_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000157_SPEC = 'ANGLES' TKFRAME_-28000157_UNITS = 'DEGREES' TKFRAME_-28000157_AXES = ( 3, 2, 3 ) TKFRAME_-28000157_ANGLES = ( -188.0000000000000, -152.2500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_9_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_9_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1987097403752E+04 Y (km): 0.9691721604645E+03 Z (km): -0.9613042553650E+03 and planetodetic coordinates Longitude (deg): 154.0000000000000 Latitude (deg): -23.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_9_00 = -28000158 FRAME_-28000158_NAME = 'JUICE_ROI_CAL_5_9_00' FRAME_-28000158_CLASS = 4 FRAME_-28000158_CLASS_ID = -28000158 FRAME_-28000158_CENTER = -2800058 OBJECT_-2800058_FRAME = 'JUICE_ROI_CAL_5_9_00' TKFRAME_-28000158_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000158_SPEC = 'ANGLES' TKFRAME_-28000158_UNITS = 'DEGREES' TKFRAME_-28000158_AXES = ( 3, 2, 3 ) TKFRAME_-28000158_ANGLES = ( -154.0000000000000, -113.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_10_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_10_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.1709284031533E+04 Y (km): 0.1679708739675E+04 Z (km): 0.2624562618931E+03 and planetodetic coordinates Longitude (deg): 44.5000000000000 Latitude (deg): 6.2500000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_10_00 = -28000159 FRAME_-28000159_NAME = 'JUICE_ROI_CAL_5_10_00' FRAME_-28000159_CLASS = 4 FRAME_-28000159_CLASS_ID = -28000159 FRAME_-28000159_CENTER = -2800059 OBJECT_-2800059_FRAME = 'JUICE_ROI_CAL_5_10_00' TKFRAME_-28000159_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000159_SPEC = 'ANGLES' TKFRAME_-28000159_UNITS = 'DEGREES' TKFRAME_-28000159_AXES = ( 3, 2, 3 ) TKFRAME_-28000159_ANGLES = ( -44.5000000000000, -83.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_11_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_11_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.1177524131602E+04 Y (km): 0.9035460451743E+03 Z (km): 0.1899736324795E+04 and planetodetic coordinates Longitude (deg): 37.5000000000000 Latitude (deg): 52.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_11_00 = -28000160 FRAME_-28000160_NAME = 'JUICE_ROI_CAL_5_11_00' FRAME_-28000160_CLASS = 4 FRAME_-28000160_CLASS_ID = -28000160 FRAME_-28000160_CENTER = -2800060 OBJECT_-2800060_FRAME = 'JUICE_ROI_CAL_5_11_00' TKFRAME_-28000160_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000160_SPEC = 'ANGLES' TKFRAME_-28000160_UNITS = 'DEGREES' TKFRAME_-28000160_AXES = ( 3, 2, 3 ) TKFRAME_-28000160_ANGLES = ( -37.5000000000000, -38.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_12_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_12_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.6863530380293E+03 Y (km): 0.1407232270551E+04 Z (km): 0.1833186701869E+04 and planetodetic coordinates Longitude (deg): 116.0000000000000 Latitude (deg): 49.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_12_00 = -28000161 FRAME_-28000161_NAME = 'JUICE_ROI_CAL_5_12_00' FRAME_-28000161_CLASS = 4 FRAME_-28000161_CLASS_ID = -28000161 FRAME_-28000161_CENTER = -2800061 OBJECT_-2800061_FRAME = 'JUICE_ROI_CAL_5_12_00' TKFRAME_-28000161_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000161_SPEC = 'ANGLES' TKFRAME_-28000161_UNITS = 'DEGREES' TKFRAME_-28000161_AXES = ( 3, 2, 3 ) TKFRAME_-28000161_ANGLES = ( -116.0000000000000, -40.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_13_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_13_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.4668643344427E+03 Y (km): -0.6309309370425E+03 Z (km): -0.2279456182055E+04 and planetodetic coordinates Longitude (deg): -53.5000000000000 Latitude (deg): -71.0000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_13_00 = -28000162 FRAME_-28000162_NAME = 'JUICE_ROI_CAL_5_13_00' FRAME_-28000162_CLASS = 4 FRAME_-28000162_CLASS_ID = -28000162 FRAME_-28000162_CENTER = -2800062 OBJECT_-2800062_FRAME = 'JUICE_ROI_CAL_5_13_00' TKFRAME_-28000162_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000162_SPEC = 'ANGLES' TKFRAME_-28000162_UNITS = 'DEGREES' TKFRAME_-28000162_AXES = ( 3, 2, 3 ) TKFRAME_-28000162_ANGLES = ( -306.5000000000000, -161.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_14_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_14_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.1626392703665E+04 Y (km): 0.1181643466450E+04 Z (km): 0.1330609684190E+04 and planetodetic coordinates Longitude (deg): 144.0000000000000 Latitude (deg): 33.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_14_00 = -28000163 FRAME_-28000163_NAME = 'JUICE_ROI_CAL_5_14_00' FRAME_-28000163_CLASS = 4 FRAME_-28000163_CLASS_ID = -28000163 FRAME_-28000163_CENTER = -2800063 OBJECT_-2800063_FRAME = 'JUICE_ROI_CAL_5_14_00' TKFRAME_-28000163_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000163_SPEC = 'ANGLES' TKFRAME_-28000163_UNITS = 'DEGREES' TKFRAME_-28000163_AXES = ( 3, 2, 3 ) TKFRAME_-28000163_ANGLES = ( -144.0000000000000, -56.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_15_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_15_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.2074053919009E+04 Y (km): -0.1102794030512E+04 Z (km): 0.5423120018122E+03 and planetodetic coordinates Longitude (deg): -152.0000000000000 Latitude (deg): 13.0000000000000 Altitude (km): 0.4999999999994E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_15_00 = -28000164 FRAME_-28000164_NAME = 'JUICE_ROI_CAL_5_15_00' FRAME_-28000164_CLASS = 4 FRAME_-28000164_CLASS_ID = -28000164 FRAME_-28000164_CENTER = -2800064 OBJECT_-2800064_FRAME = 'JUICE_ROI_CAL_5_15_00' TKFRAME_-28000164_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000164_SPEC = 'ANGLES' TKFRAME_-28000164_UNITS = 'DEGREES' TKFRAME_-28000164_AXES = ( 3, 2, 3 ) TKFRAME_-28000164_ANGLES = ( -208.0000000000000, -77.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_16_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_16_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.1742428091027E+04 Y (km): -0.1436346875104E+04 Z (km): -0.8442799547403E+03 and planetodetic coordinates Longitude (deg): -140.5000000000000 Latitude (deg): -20.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_16_00 = -28000165 FRAME_-28000165_NAME = 'JUICE_ROI_CAL_5_16_00' FRAME_-28000165_CLASS = 4 FRAME_-28000165_CLASS_ID = -28000165 FRAME_-28000165_CENTER = -2800065 OBJECT_-2800065_FRAME = 'JUICE_ROI_CAL_5_16_00' TKFRAME_-28000165_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000165_SPEC = 'ANGLES' TKFRAME_-28000165_UNITS = 'DEGREES' TKFRAME_-28000165_AXES = ( 3, 2, 3 ) TKFRAME_-28000165_ANGLES = ( -219.5000000000000, -110.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_17_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_17_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.8848852327080E+03 Y (km): 0.2035096707603E+04 Z (km): -0.9419746045619E+03 and planetodetic coordinates Longitude (deg): 113.5000000000000 Latitude (deg): -23.0000000000000 Altitude (km): 0.4999999999995E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_17_00 = -28000166 FRAME_-28000166_NAME = 'JUICE_ROI_CAL_5_17_00' FRAME_-28000166_CLASS = 4 FRAME_-28000166_CLASS_ID = -28000166 FRAME_-28000166_CENTER = -2800066 OBJECT_-2800066_FRAME = 'JUICE_ROI_CAL_5_17_00' TKFRAME_-28000166_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000166_SPEC = 'ANGLES' TKFRAME_-28000166_UNITS = 'DEGREES' TKFRAME_-28000166_AXES = ( 3, 2, 3 ) TKFRAME_-28000166_ANGLES = ( -113.5000000000000, -113.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_18_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_18_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.1215708178471E+04 Y (km): 0.1385124508314E+03 Z (km): 0.2077215579992E+04 and planetodetic coordinates Longitude (deg): 173.5000000000000 Latitude (deg): 59.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_18_00 = -28000167 FRAME_-28000167_NAME = 'JUICE_ROI_CAL_5_18_00' FRAME_-28000167_CLASS = 4 FRAME_-28000167_CLASS_ID = -28000167 FRAME_-28000167_CENTER = -2800067 OBJECT_-2800067_FRAME = 'JUICE_ROI_CAL_5_18_00' TKFRAME_-28000167_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000167_SPEC = 'ANGLES' TKFRAME_-28000167_UNITS = 'DEGREES' TKFRAME_-28000167_AXES = ( 3, 2, 3 ) TKFRAME_-28000167_ANGLES = ( -173.5000000000000, -30.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_19_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_19_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.1524343021467E+04 Y (km): 0.1849175952552E+04 Z (km): -0.2624562618931E+03 and planetodetic coordinates Longitude (deg): 50.5000000000000 Latitude (deg): -6.2500000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_19_00 = -28000168 FRAME_-28000168_NAME = 'JUICE_ROI_CAL_5_19_00' FRAME_-28000168_CLASS = 4 FRAME_-28000168_CLASS_ID = -28000168 FRAME_-28000168_CENTER = -2800068 OBJECT_-2800068_FRAME = 'JUICE_ROI_CAL_5_19_00' TKFRAME_-28000168_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000168_SPEC = 'ANGLES' TKFRAME_-28000168_UNITS = 'DEGREES' TKFRAME_-28000168_AXES = ( 3, 2, 3 ) TKFRAME_-28000168_ANGLES = ( -50.5000000000000, -96.2500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_20_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_20_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.1513458775407E+04 Y (km): 0.6424251355318E+03 Z (km): -0.1763147503863E+04 and planetodetic coordinates Longitude (deg): 157.0000000000000 Latitude (deg): -47.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_20_00 = -28000169 FRAME_-28000169_NAME = 'JUICE_ROI_CAL_5_20_00' FRAME_-28000169_CLASS = 4 FRAME_-28000169_CLASS_ID = -28000169 FRAME_-28000169_CENTER = -2800069 OBJECT_-2800069_FRAME = 'JUICE_ROI_CAL_5_20_00' TKFRAME_-28000169_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000169_SPEC = 'ANGLES' TKFRAME_-28000169_UNITS = 'DEGREES' TKFRAME_-28000169_AXES = ( 3, 2, 3 ) TKFRAME_-28000169_ANGLES = ( -157.0000000000000, -137.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_5_21_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_5_21_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.1505817382689E+04 Y (km): 0.1702016934540E+04 Z (km): 0.8047415762408E+03 and planetodetic coordinates Longitude (deg): 131.5000000000000 Latitude (deg): 19.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_5_21_00 = -28000170 FRAME_-28000170_NAME = 'JUICE_ROI_CAL_5_21_00' FRAME_-28000170_CLASS = 4 FRAME_-28000170_CLASS_ID = -28000170 FRAME_-28000170_CENTER = -2800070 OBJECT_-2800070_FRAME = 'JUICE_ROI_CAL_5_21_00' TKFRAME_-28000170_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000170_SPEC = 'ANGLES' TKFRAME_-28000170_UNITS = 'DEGREES' TKFRAME_-28000170_AXES = ( 3, 2, 3 ) TKFRAME_-28000170_ANGLES = ( -131.5000000000000, -70.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_6_1_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_6_1_01 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.2333921459462E+04 Y (km): 0.6035931299224E+03 Z (km): -0.2103793177948E+02 and planetodetic coordinates Longitude (deg): 165.5000000000000 Latitude (deg): -0.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_6_1_01 = -28000171 FRAME_-28000171_NAME = 'JUICE_ROI_CAL_6_1_01' FRAME_-28000171_CLASS = 4 FRAME_-28000171_CLASS_ID = -28000171 FRAME_-28000171_CENTER = -2800071 OBJECT_-2800071_FRAME = 'JUICE_ROI_CAL_6_1_01' TKFRAME_-28000171_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000171_SPEC = 'ANGLES' TKFRAME_-28000171_UNITS = 'DEGREES' TKFRAME_-28000171_AXES = ( 3, 2, 3 ) TKFRAME_-28000171_ANGLES = ( -165.5000000000000, -90.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_6_1_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_6_1_02 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1026083262119E+04 Y (km): -0.1244738531227E+04 Z (km): -0.1791573545261E+04 and planetodetic coordinates Longitude (deg): -50.5000000000000 Latitude (deg): -48.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_6_1_02 = -28000172 FRAME_-28000172_NAME = 'JUICE_ROI_CAL_6_1_02' FRAME_-28000172_CLASS = 4 FRAME_-28000172_CLASS_ID = -28000172 FRAME_-28000172_CENTER = -2800072 OBJECT_-2800072_FRAME = 'JUICE_ROI_CAL_6_1_02' TKFRAME_-28000172_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000172_SPEC = 'ANGLES' TKFRAME_-28000172_UNITS = 'DEGREES' TKFRAME_-28000172_AXES = ( 3, 2, 3 ) TKFRAME_-28000172_ANGLES = ( -309.5000000000000, -138.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_6_1_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_6_1_03 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2181075004247E+04 Y (km): 0.5236297804803E+03 Z (km): -0.8835611573869E+03 and planetodetic coordinates Longitude (deg): 13.5000000000000 Latitude (deg): -21.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_6_1_03 = -28000173 FRAME_-28000173_NAME = 'JUICE_ROI_CAL_6_1_03' FRAME_-28000173_CLASS = 4 FRAME_-28000173_CLASS_ID = -28000173 FRAME_-28000173_CENTER = -2800073 OBJECT_-2800073_FRAME = 'JUICE_ROI_CAL_6_1_03' TKFRAME_-28000173_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000173_SPEC = 'ANGLES' TKFRAME_-28000173_UNITS = 'DEGREES' TKFRAME_-28000173_AXES = ( 3, 2, 3 ) TKFRAME_-28000173_ANGLES = ( -13.5000000000000, -111.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_6_1_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_6_1_04 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.6722582385720E+03 Y (km): -0.2009168088700E+04 Z (km): 0.1150334339234E+04 and planetodetic coordinates Longitude (deg): -71.5000000000000 Latitude (deg): 28.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_6_1_04 = -28000174 FRAME_-28000174_NAME = 'JUICE_ROI_CAL_6_1_04' FRAME_-28000174_CLASS = 4 FRAME_-28000174_CLASS_ID = -28000174 FRAME_-28000174_CENTER = -2800074 OBJECT_-2800074_FRAME = 'JUICE_ROI_CAL_6_1_04' TKFRAME_-28000174_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000174_SPEC = 'ANGLES' TKFRAME_-28000174_UNITS = 'DEGREES' TKFRAME_-28000174_AXES = ( 3, 2, 3 ) TKFRAME_-28000174_ANGLES = ( -288.5000000000000, -61.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_6_1_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_6_1_05 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.6186228814749E+03 Y (km): 0.2308732024389E+04 Z (km): -0.3146725442041E+03 and planetodetic coordinates Longitude (deg): 75.0000000000000 Latitude (deg): -7.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_6_1_05 = -28000175 FRAME_-28000175_NAME = 'JUICE_ROI_CAL_6_1_05' FRAME_-28000175_CLASS = 4 FRAME_-28000175_CLASS_ID = -28000175 FRAME_-28000175_CENTER = -2800075 OBJECT_-2800075_FRAME = 'JUICE_ROI_CAL_6_1_05' TKFRAME_-28000175_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000175_SPEC = 'ANGLES' TKFRAME_-28000175_UNITS = 'DEGREES' TKFRAME_-28000175_AXES = ( 3, 2, 3 ) TKFRAME_-28000175_ANGLES = ( -75.0000000000000, -97.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_6_1_06 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_6_1_06 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.6403387357983E+03 Y (km): 0.2233126556174E+04 Z (km): 0.6442582770495E+03 and planetodetic coordinates Longitude (deg): 74.0000000000000 Latitude (deg): 15.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_6_1_06 = -28000176 FRAME_-28000176_NAME = 'JUICE_ROI_CAL_6_1_06' FRAME_-28000176_CLASS = 4 FRAME_-28000176_CLASS_ID = -28000176 FRAME_-28000176_CENTER = -2800076 OBJECT_-2800076_FRAME = 'JUICE_ROI_CAL_6_1_06' TKFRAME_-28000176_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000176_SPEC = 'ANGLES' TKFRAME_-28000176_UNITS = 'DEGREES' TKFRAME_-28000176_AXES = ( 3, 2, 3 ) TKFRAME_-28000176_ANGLES = ( -74.0000000000000, -74.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_6_1_07 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_6_1_07 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1471969089986E+04 Y (km): 0.1069448143784E+04 Z (km): -0.1581627107090E+04 and planetodetic coordinates Longitude (deg): 36.0000000000000 Latitude (deg): -41.0000000000000 Altitude (km): 0.4999999999994E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_6_1_07 = -28000177 FRAME_-28000177_NAME = 'JUICE_ROI_CAL_6_1_07' FRAME_-28000177_CLASS = 4 FRAME_-28000177_CLASS_ID = -28000177 FRAME_-28000177_CENTER = -2800077 OBJECT_-2800077_FRAME = 'JUICE_ROI_CAL_6_1_07' TKFRAME_-28000177_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000177_SPEC = 'ANGLES' TKFRAME_-28000177_UNITS = 'DEGREES' TKFRAME_-28000177_AXES = ( 3, 2, 3 ) TKFRAME_-28000177_ANGLES = ( -36.0000000000000, -131.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_6_1_08 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_6_1_08 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1371842862068E+04 Y (km): -0.1837120390164E+04 Z (km): 0.7449781700391E+03 and planetodetic coordinates Longitude (deg): -126.7500000000000 Latitude (deg): 18.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_6_1_08 = -28000178 FRAME_-28000178_NAME = 'JUICE_ROI_CAL_6_1_08' FRAME_-28000178_CLASS = 4 FRAME_-28000178_CLASS_ID = -28000178 FRAME_-28000178_CENTER = -2800078 OBJECT_-2800078_FRAME = 'JUICE_ROI_CAL_6_1_08' TKFRAME_-28000178_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000178_SPEC = 'ANGLES' TKFRAME_-28000178_UNITS = 'DEGREES' TKFRAME_-28000178_AXES = ( 3, 2, 3 ) TKFRAME_-28000178_ANGLES = ( -233.2500000000000, -72.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_6_1_09 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_6_1_09 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2049892540208E+04 Y (km): -0.1256175764241E+04 Z (km): 0.1786607481631E+03 and planetodetic coordinates Longitude (deg): -31.5000000000000 Latitude (deg): 4.2500000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_6_1_09 = -28000179 FRAME_-28000179_NAME = 'JUICE_ROI_CAL_6_1_09' FRAME_-28000179_CLASS = 4 FRAME_-28000179_CLASS_ID = -28000179 FRAME_-28000179_CENTER = -2800079 OBJECT_-2800079_FRAME = 'JUICE_ROI_CAL_6_1_09' TKFRAME_-28000179_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000179_SPEC = 'ANGLES' TKFRAME_-28000179_UNITS = 'DEGREES' TKFRAME_-28000179_AXES = ( 3, 2, 3 ) TKFRAME_-28000179_ANGLES = ( -328.5000000000000, -85.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_7_1_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_7_1_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1698007048793E+04 Y (km): -0.1375018996365E+04 Z (km): 0.1018848105404E+04 and planetodetic coordinates Longitude (deg): -141.0000000000000 Latitude (deg): 25.0000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_7_1_00 = -28000180 FRAME_-28000180_NAME = 'JUICE_ROI_CAL_7_1_00' FRAME_-28000180_CLASS = 4 FRAME_-28000180_CLASS_ID = -28000180 FRAME_-28000180_CENTER = -2800080 OBJECT_-2800080_FRAME = 'JUICE_ROI_CAL_7_1_00' TKFRAME_-28000180_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000180_SPEC = 'ANGLES' TKFRAME_-28000180_UNITS = 'DEGREES' TKFRAME_-28000180_AXES = ( 3, 2, 3 ) TKFRAME_-28000180_ANGLES = ( -219.0000000000000, -65.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_7_2_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_7_2_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2192805874186E+04 Y (km): 0.6913890363776E+03 Z (km): 0.7249415414449E+03 and planetodetic coordinates Longitude (deg): 17.5000000000000 Latitude (deg): 17.5000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_7_2_00 = -28000181 FRAME_-28000181_NAME = 'JUICE_ROI_CAL_7_2_00' FRAME_-28000181_CLASS = 4 FRAME_-28000181_CLASS_ID = -28000181 FRAME_-28000181_CENTER = -2800081 OBJECT_-2800081_FRAME = 'JUICE_ROI_CAL_7_2_00' TKFRAME_-28000181_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000181_SPEC = 'ANGLES' TKFRAME_-28000181_UNITS = 'DEGREES' TKFRAME_-28000181_AXES = ( 3, 2, 3 ) TKFRAME_-28000181_ANGLES = ( -17.5000000000000, -72.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_7_3_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_7_3_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1777443027171E+04 Y (km): -0.1491451788538E+04 Z (km): 0.6543886365347E+03 and planetodetic coordinates Longitude (deg): -140.0000000000000 Latitude (deg): 15.7500000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_7_3_00 = -28000182 FRAME_-28000182_NAME = 'JUICE_ROI_CAL_7_3_00' FRAME_-28000182_CLASS = 4 FRAME_-28000182_CLASS_ID = -28000182 FRAME_-28000182_CENTER = -2800082 OBJECT_-2800082_FRAME = 'JUICE_ROI_CAL_7_3_00' TKFRAME_-28000182_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000182_SPEC = 'ANGLES' TKFRAME_-28000182_UNITS = 'DEGREES' TKFRAME_-28000182_AXES = ( 3, 2, 3 ) TKFRAME_-28000182_ANGLES = ( -220.0000000000000, -74.2500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_7_4_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_7_4_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.1052187199890E+04 Y (km): -0.2110361037982E+04 Z (km): 0.5012335042235E+03 and planetodetic coordinates Longitude (deg): -116.5000000000000 Latitude (deg): 12.0000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_7_4_00 = -28000183 FRAME_-28000183_NAME = 'JUICE_ROI_CAL_7_4_00' FRAME_-28000183_CLASS = 4 FRAME_-28000183_CLASS_ID = -28000183 FRAME_-28000183_CENTER = -2800083 OBJECT_-2800083_FRAME = 'JUICE_ROI_CAL_7_4_00' TKFRAME_-28000183_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000183_SPEC = 'ANGLES' TKFRAME_-28000183_UNITS = 'DEGREES' TKFRAME_-28000183_AXES = ( 3, 2, 3 ) TKFRAME_-28000183_ANGLES = ( -243.5000000000000, -78.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_7_5_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_7_5_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2383724820813E+04 Y (km): -0.2085488987865E+03 Z (km): -0.2938026130811E+03 and planetodetic coordinates Longitude (deg): -5.0000000000000 Latitude (deg): -7.0000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_7_5_00 = -28000184 FRAME_-28000184_NAME = 'JUICE_ROI_CAL_7_5_00' FRAME_-28000184_CLASS = 4 FRAME_-28000184_CLASS_ID = -28000184 FRAME_-28000184_CENTER = -2800084 OBJECT_-2800084_FRAME = 'JUICE_ROI_CAL_7_5_00' TKFRAME_-28000184_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000184_SPEC = 'ANGLES' TKFRAME_-28000184_UNITS = 'DEGREES' TKFRAME_-28000184_AXES = ( 3, 2, 3 ) TKFRAME_-28000184_ANGLES = ( -355.0000000000000, -97.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_7_6_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_7_6_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.2273841515375E+04 Y (km): 0.3805105718205E+03 Z (km): 0.7048497057456E+03 and planetodetic coordinates Longitude (deg): 9.5000000000000 Latitude (deg): 17.0000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_7_6_00 = -28000185 FRAME_-28000185_NAME = 'JUICE_ROI_CAL_7_6_00' FRAME_-28000185_CLASS = 4 FRAME_-28000185_CLASS_ID = -28000185 FRAME_-28000185_CENTER = -2800085 OBJECT_-2800085_FRAME = 'JUICE_ROI_CAL_7_6_00' TKFRAME_-28000185_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000185_SPEC = 'ANGLES' TKFRAME_-28000185_UNITS = 'DEGREES' TKFRAME_-28000185_AXES = ( 3, 2, 3 ) TKFRAME_-28000185_ANGLES = ( -9.5000000000000, -73.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_7_7_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_7_7_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): 0.1029896025942E+04 Y (km): 0.1936952712545E+04 Z (km): 0.9997424693957E+03 and planetodetic coordinates Longitude (deg): 62.0000000000000 Latitude (deg): 24.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_7_7_00 = -28000186 FRAME_-28000186_NAME = 'JUICE_ROI_CAL_7_7_00' FRAME_-28000186_CLASS = 4 FRAME_-28000186_CLASS_ID = -28000186 FRAME_-28000186_CENTER = -2800086 OBJECT_-2800086_FRAME = 'JUICE_ROI_CAL_7_7_00' TKFRAME_-28000186_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000186_SPEC = 'ANGLES' TKFRAME_-28000186_UNITS = 'DEGREES' TKFRAME_-28000186_AXES = ( 3, 2, 3 ) TKFRAME_-28000186_ANGLES = ( -62.0000000000000, -65.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_7_8_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_7_8_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.3654794950431E+03 Y (km): -0.2374558408231E+04 Z (km): -0.1996340266704E+03 and planetodetic coordinates Longitude (deg): -98.7500000000000 Latitude (deg): -4.7500000000000 Altitude (km): 0.4999999999993E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_7_8_00 = -28000187 FRAME_-28000187_NAME = 'JUICE_ROI_CAL_7_8_00' FRAME_-28000187_CLASS = 4 FRAME_-28000187_CLASS_ID = -28000187 FRAME_-28000187_CENTER = -2800087 OBJECT_-2800087_FRAME = 'JUICE_ROI_CAL_7_8_00' TKFRAME_-28000187_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000187_SPEC = 'ANGLES' TKFRAME_-28000187_UNITS = 'DEGREES' TKFRAME_-28000187_AXES = ( 3, 2, 3 ) TKFRAME_-28000187_ANGLES = ( -261.2500000000000, -94.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_CAL_7_9_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_CAL_7_9_00 is centered at the site JUICE_ROI_C which has Cartesian coordinates X (km): -0.3663538974703E+03 Y (km): 0.1976668745680E+04 Z (km): 0.1330609684190E+04 and planetodetic coordinates Longitude (deg): 100.5000000000000 Latitude (deg): 33.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.4103000000000E+03 Polar radius (km): 2.4103000000000E+03 All of the above coordinates are relative to the frame IAU_CALLISTO. \begindata FRAME_JUICE_ROI_CAL_7_9_00 = -28000188 FRAME_-28000188_NAME = 'JUICE_ROI_CAL_7_9_00' FRAME_-28000188_CLASS = 4 FRAME_-28000188_CLASS_ID = -28000188 FRAME_-28000188_CENTER = -2800088 OBJECT_-2800088_FRAME = 'JUICE_ROI_CAL_7_9_00' TKFRAME_-28000188_RELATIVE = 'IAU_CALLISTO' TKFRAME_-28000188_SPEC = 'ANGLES' TKFRAME_-28000188_UNITS = 'DEGREES' TKFRAME_-28000188_AXES = ( 3, 2, 3 ) TKFRAME_-28000188_ANGLES = ( -100.5000000000000, -56.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_1_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_1_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1800622552991E+04 Y (km): 0.1593056264561E+04 Z (km): -0.1070408823583E+04 and planetodetic coordinates Longitude (deg): 41.5000000000000 Latitude (deg): -24.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_1_00 = -28000189 FRAME_-28000189_NAME = 'JUICE_ROI_GAN_1_1_00' FRAME_-28000189_CLASS = 4 FRAME_-28000189_CLASS_ID = -28000189 FRAME_-28000189_CENTER = -2800089 OBJECT_-2800089_FRAME = 'JUICE_ROI_GAN_1_1_00' TKFRAME_-28000189_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000189_SPEC = 'ANGLES' TKFRAME_-28000189_UNITS = 'DEGREES' TKFRAME_-28000189_AXES = ( 3, 2, 3 ) TKFRAME_-28000189_ANGLES = ( -41.5000000000000, -114.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_2_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_2_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2294641197250E+04 Y (km): 0.1805921787737E+03 Z (km): -0.1275873477602E+04 and planetodetic coordinates Longitude (deg): 175.5000000000000 Latitude (deg): -29.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_2_00 = -28000190 FRAME_-28000190_NAME = 'JUICE_ROI_GAN_1_2_00' FRAME_-28000190_CLASS = 4 FRAME_-28000190_CLASS_ID = -28000190 FRAME_-28000190_CENTER = -2800090 OBJECT_-2800090_FRAME = 'JUICE_ROI_GAN_1_2_00' TKFRAME_-28000190_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000190_SPEC = 'ANGLES' TKFRAME_-28000190_UNITS = 'DEGREES' TKFRAME_-28000190_AXES = ( 3, 2, 3 ) TKFRAME_-28000190_ANGLES = ( -175.5000000000000, -119.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_3_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_3_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2311990462423E+04 Y (km): 0.6054160091772E+02 Z (km): -0.1255738709375E+04 and planetodetic coordinates Longitude (deg): 178.5000000000000 Latitude (deg): -28.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_3_00 = -28000191 FRAME_-28000191_NAME = 'JUICE_ROI_GAN_1_3_00' FRAME_-28000191_CLASS = 4 FRAME_-28000191_CLASS_ID = -28000191 FRAME_-28000191_CENTER = -2800091 OBJECT_-2800091_FRAME = 'JUICE_ROI_GAN_1_3_00' TKFRAME_-28000191_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000191_SPEC = 'ANGLES' TKFRAME_-28000191_UNITS = 'DEGREES' TKFRAME_-28000191_AXES = ( 3, 2, 3 ) TKFRAME_-28000191_ANGLES = ( -178.5000000000000, -118.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_4_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_4_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2221536405342E+04 Y (km): 0.3917168068880E+03 Z (km): -0.1355425701741E+04 and planetodetic coordinates Longitude (deg): 170.0000000000000 Latitude (deg): -31.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_4_00 = -28000192 FRAME_-28000192_NAME = 'JUICE_ROI_GAN_1_4_00' FRAME_-28000192_CLASS = 4 FRAME_-28000192_CLASS_ID = -28000192 FRAME_-28000192_CENTER = -2800092 OBJECT_-2800092_FRAME = 'JUICE_ROI_GAN_1_4_00' TKFRAME_-28000192_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000192_SPEC = 'ANGLES' TKFRAME_-28000192_UNITS = 'DEGREES' TKFRAME_-28000192_AXES = ( 3, 2, 3 ) TKFRAME_-28000192_ANGLES = ( -170.0000000000000, -121.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_5_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_5_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1427515157259E+04 Y (km): -0.1115297073987E+04 Z (km): -0.1908967732193E+04 and planetodetic coordinates Longitude (deg): -142.0000000000000 Latitude (deg): -46.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_5_00 = -28000193 FRAME_-28000193_NAME = 'JUICE_ROI_GAN_1_5_00' FRAME_-28000193_CLASS = 4 FRAME_-28000193_CLASS_ID = -28000193 FRAME_-28000193_CENTER = -2800093 OBJECT_-2800093_FRAME = 'JUICE_ROI_GAN_1_5_00' TKFRAME_-28000193_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000193_SPEC = 'ANGLES' TKFRAME_-28000193_UNITS = 'DEGREES' TKFRAME_-28000193_AXES = ( 3, 2, 3 ) TKFRAME_-28000193_ANGLES = ( -218.0000000000000, -136.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_6_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_6_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.5847151419225E+03 Y (km): -0.9260978050268E+02 Z (km): -0.2564249699495E+04 and planetodetic coordinates Longitude (deg): -171.0000000000000 Latitude (deg): -77.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_6_00 = -28000194 FRAME_-28000194_NAME = 'JUICE_ROI_GAN_1_6_00' FRAME_-28000194_CLASS = 4 FRAME_-28000194_CLASS_ID = -28000194 FRAME_-28000194_CENTER = -2800094 OBJECT_-2800094_FRAME = 'JUICE_ROI_GAN_1_6_00' TKFRAME_-28000194_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000194_SPEC = 'ANGLES' TKFRAME_-28000194_UNITS = 'DEGREES' TKFRAME_-28000194_AXES = ( 3, 2, 3 ) TKFRAME_-28000194_ANGLES = ( -189.0000000000000, -167.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_7_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_7_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2317992877766E+04 Y (km): -0.1620898520500E+03 Z (km): -0.1235508311784E+04 and planetodetic coordinates Longitude (deg): -176.0000000000000 Latitude (deg): -28.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_7_00 = -28000195 FRAME_-28000195_NAME = 'JUICE_ROI_GAN_1_7_00' FRAME_-28000195_CLASS = 4 FRAME_-28000195_CLASS_ID = -28000195 FRAME_-28000195_CENTER = -2800095 OBJECT_-2800095_FRAME = 'JUICE_ROI_GAN_1_7_00' TKFRAME_-28000195_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000195_SPEC = 'ANGLES' TKFRAME_-28000195_UNITS = 'DEGREES' TKFRAME_-28000195_AXES = ( 3, 2, 3 ) TKFRAME_-28000195_ANGLES = ( -184.0000000000000, -118.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_8_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_8_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2287379070957E+04 Y (km): -0.3418510926195E+03 Z (km): -0.1255738709375E+04 and planetodetic coordinates Longitude (deg): -171.5000000000000 Latitude (deg): -28.5000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_8_00 = -28000196 FRAME_-28000196_NAME = 'JUICE_ROI_GAN_1_8_00' FRAME_-28000196_CLASS = 4 FRAME_-28000196_CLASS_ID = -28000196 FRAME_-28000196_CENTER = -2800096 OBJECT_-2800096_FRAME = 'JUICE_ROI_GAN_1_8_00' TKFRAME_-28000196_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000196_SPEC = 'ANGLES' TKFRAME_-28000196_UNITS = 'DEGREES' TKFRAME_-28000196_AXES = ( 3, 2, 3 ) TKFRAME_-28000196_ANGLES = ( -188.5000000000000, -118.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_9_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_9_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.5563014987049E+03 Y (km): -0.2024771868062E+03 Z (km): 0.2564249699495E+04 and planetodetic coordinates Longitude (deg): -20.0000000000000 Latitude (deg): 77.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_9_00 = -28000197 FRAME_-28000197_NAME = 'JUICE_ROI_GAN_1_9_00' FRAME_-28000197_CLASS = 4 FRAME_-28000197_CLASS_ID = -28000197 FRAME_-28000197_CENTER = -2800097 OBJECT_-2800097_FRAME = 'JUICE_ROI_GAN_1_9_00' TKFRAME_-28000197_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000197_SPEC = 'ANGLES' TKFRAME_-28000197_UNITS = 'DEGREES' TKFRAME_-28000197_AXES = ( 3, 2, 3 ) TKFRAME_-28000197_ANGLES = ( -340.0000000000000, -13.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_1_10_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_1_10_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.4525425147843E+03 Y (km): -0.2566496136700E+04 Z (km): -0.3662618497966E+03 and planetodetic coordinates Longitude (deg): -80.0000000000000 Latitude (deg): -8.0000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_1_10_00 = -28000198 FRAME_-28000198_NAME = 'JUICE_ROI_GAN_1_10_00' FRAME_-28000198_CLASS = 4 FRAME_-28000198_CLASS_ID = -28000198 FRAME_-28000198_CENTER = -2800098 OBJECT_-2800098_FRAME = 'JUICE_ROI_GAN_1_10_00' TKFRAME_-28000198_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000198_SPEC = 'ANGLES' TKFRAME_-28000198_UNITS = 'DEGREES' TKFRAME_-28000198_AXES = ( 3, 2, 3 ) TKFRAME_-28000198_ANGLES = ( -280.0000000000000, -98.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_1_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_1_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.3500745804781E+03 Y (km): -0.1985371603776E+04 Z (km): 0.1691624152412E+04 and planetodetic coordinates Longitude (deg): -100.0000000000000 Latitude (deg): 40.0000000000000 Altitude (km): 0.4999999999993E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_1_00 = -28000199 FRAME_-28000199_NAME = 'JUICE_ROI_GAN_2_1_00' FRAME_-28000199_CLASS = 4 FRAME_-28000199_CLASS_ID = -28000199 FRAME_-28000199_CENTER = -2800099 OBJECT_-2800099_FRAME = 'JUICE_ROI_GAN_2_1_00' TKFRAME_-28000199_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-28000199_SPEC = 'ANGLES' TKFRAME_-28000199_UNITS = 'DEGREES' TKFRAME_-28000199_AXES = ( 3, 2, 3 ) TKFRAME_-28000199_ANGLES = ( -260.0000000000000, -50.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_2_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_2_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.4088097627473E+03 Y (km): -0.2103143906710E+04 Z (km): 0.1528235968544E+04 and planetodetic coordinates Longitude (deg): -79.0000000000000 Latitude (deg): 35.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_2_00 = -280001100 FRAME_-280001100_NAME = 'JUICE_ROI_GAN_2_2_00' FRAME_-280001100_CLASS = 4 FRAME_-280001100_CLASS_ID = -280001100 FRAME_-280001100_CENTER = -28000100 OBJECT_-28000100_FRAME = 'JUICE_ROI_GAN_2_2_00' TKFRAME_-280001100_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001100_SPEC = 'ANGLES' TKFRAME_-280001100_UNITS = 'DEGREES' TKFRAME_-280001100_AXES = ( 3, 2, 3 ) TKFRAME_-280001100_ANGLES = ( -281.0000000000000, -54.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_3_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_3_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1898307385328E+04 Y (km): -0.3176677106993E+03 Z (km): -0.1794815084176E+04 and planetodetic coordinates Longitude (deg): -170.5000000000000 Latitude (deg): -43.0000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_3_00 = -280001101 FRAME_-280001101_NAME = 'JUICE_ROI_GAN_2_3_00' FRAME_-280001101_CLASS = 4 FRAME_-280001101_CLASS_ID = -280001101 FRAME_-280001101_CENTER = -28000101 OBJECT_-28000101_FRAME = 'JUICE_ROI_GAN_2_3_00' TKFRAME_-280001101_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001101_SPEC = 'ANGLES' TKFRAME_-280001101_UNITS = 'DEGREES' TKFRAME_-280001101_AXES = ( 3, 2, 3 ) TKFRAME_-280001101_ANGLES = ( -189.5000000000000, -133.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_4_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_4_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.8259537625515E+03 Y (km): 0.6808637394740E+03 Z (km): -0.2404177580878E+04 and planetodetic coordinates Longitude (deg): 140.5000000000000 Latitude (deg): -66.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_4_00 = -280001102 FRAME_-280001102_NAME = 'JUICE_ROI_GAN_2_4_00' FRAME_-280001102_CLASS = 4 FRAME_-280001102_CLASS_ID = -280001102 FRAME_-280001102_CENTER = -28000102 OBJECT_-28000102_FRAME = 'JUICE_ROI_GAN_2_4_00' TKFRAME_-280001102_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001102_SPEC = 'ANGLES' TKFRAME_-280001102_UNITS = 'DEGREES' TKFRAME_-280001102_AXES = ( 3, 2, 3 ) TKFRAME_-280001102_ANGLES = ( -140.5000000000000, -156.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_5_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_5_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.8793664832994E+02 Y (km): 0.2014080376464E+04 Z (km): -0.1691624152412E+04 and planetodetic coordinates Longitude (deg): 92.5000000000000 Latitude (deg): -40.0000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_5_00 = -280001103 FRAME_-280001103_NAME = 'JUICE_ROI_GAN_2_5_00' FRAME_-280001103_CLASS = 4 FRAME_-280001103_CLASS_ID = -280001103 FRAME_-280001103_CENTER = -28000103 OBJECT_-28000103_FRAME = 'JUICE_ROI_GAN_2_5_00' TKFRAME_-280001103_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001103_SPEC = 'ANGLES' TKFRAME_-280001103_UNITS = 'DEGREES' TKFRAME_-280001103_AXES = ( 3, 2, 3 ) TKFRAME_-280001103_ANGLES = ( -92.5000000000000, -130.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_6_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_6_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1580849199997E+02 Y (km): 0.1811473758857E+04 Z (km): 0.1908967732193E+04 and planetodetic coordinates Longitude (deg): 89.5000000000000 Latitude (deg): 46.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_6_00 = -280001104 FRAME_-280001104_NAME = 'JUICE_ROI_GAN_2_6_00' FRAME_-280001104_CLASS = 4 FRAME_-280001104_CLASS_ID = -280001104 FRAME_-280001104_CENTER = -28000104 OBJECT_-28000104_FRAME = 'JUICE_ROI_GAN_2_6_00' TKFRAME_-280001104_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001104_SPEC = 'ANGLES' TKFRAME_-280001104_UNITS = 'DEGREES' TKFRAME_-280001104_AXES = ( 3, 2, 3 ) TKFRAME_-280001104_ANGLES = ( -89.5000000000000, -43.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_7_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_7_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1404636924918E+04 Y (km): -0.1117298659958E+04 Z (km): 0.1924703536551E+04 and planetodetic coordinates Longitude (deg): -141.5000000000000 Latitude (deg): 47.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_7_00 = -280001105 FRAME_-280001105_NAME = 'JUICE_ROI_GAN_2_7_00' FRAME_-280001105_CLASS = 4 FRAME_-280001105_CLASS_ID = -280001105 FRAME_-280001105_CENTER = -28000105 OBJECT_-28000105_FRAME = 'JUICE_ROI_GAN_2_7_00' TKFRAME_-280001105_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001105_SPEC = 'ANGLES' TKFRAME_-280001105_UNITS = 'DEGREES' TKFRAME_-280001105_AXES = ( 3, 2, 3 ) TKFRAME_-280001105_ANGLES = ( -218.5000000000000, -43.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_8_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_8_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.5019615370220E+03 Y (km): 0.7729529840427E+03 Z (km): 0.2465040200445E+04 and planetodetic coordinates Longitude (deg): 57.0000000000000 Latitude (deg): 69.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_8_00 = -280001106 FRAME_-280001106_NAME = 'JUICE_ROI_GAN_2_8_00' FRAME_-280001106_CLASS = 4 FRAME_-280001106_CLASS_ID = -280001106 FRAME_-280001106_CENTER = -28000106 OBJECT_-28000106_FRAME = 'JUICE_ROI_GAN_2_8_00' TKFRAME_-280001106_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001106_SPEC = 'ANGLES' TKFRAME_-280001106_UNITS = 'DEGREES' TKFRAME_-280001106_AXES = ( 3, 2, 3 ) TKFRAME_-280001106_ANGLES = ( -57.0000000000000, -20.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_9_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_9_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.7816244060154E+03 Y (km): 0.1237971440908E+03 Z (km): 0.2509896899284E+04 and planetodetic coordinates Longitude (deg): 171.0000000000000 Latitude (deg): 72.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_9_00 = -280001107 FRAME_-280001107_NAME = 'JUICE_ROI_GAN_2_9_00' FRAME_-280001107_CLASS = 4 FRAME_-280001107_CLASS_ID = -280001107 FRAME_-280001107_CENTER = -28000107 OBJECT_-28000107_FRAME = 'JUICE_ROI_GAN_2_9_00' TKFRAME_-280001107_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001107_SPEC = 'ANGLES' TKFRAME_-280001107_UNITS = 'DEGREES' TKFRAME_-280001107_AXES = ( 3, 2, 3 ) TKFRAME_-280001107_ANGLES = ( -171.0000000000000, -17.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_10_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_10_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.5086811932118E+03 Y (km): -0.6062226394953E+03 Z (km): 0.2509896899284E+04 and planetodetic coordinates Longitude (deg): -50.0000000000000 Latitude (deg): 72.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_10_00 = -280001108 FRAME_-280001108_NAME = 'JUICE_ROI_GAN_2_10_00' FRAME_-280001108_CLASS = 4 FRAME_-280001108_CLASS_ID = -280001108 FRAME_-280001108_CENTER = -28000108 OBJECT_-28000108_FRAME = 'JUICE_ROI_GAN_2_10_00' TKFRAME_-280001108_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001108_SPEC = 'ANGLES' TKFRAME_-280001108_UNITS = 'DEGREES' TKFRAME_-280001108_AXES = ( 3, 2, 3 ) TKFRAME_-280001108_ANGLES = ( -310.0000000000000, -17.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_11_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_11_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.9000944111902E+03 Y (km): 0.1102297739594E-12 Z (km): -0.2472989070122E+04 and planetodetic coordinates Longitude (deg): 180.0000000000000 Latitude (deg): -70.0000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_11_00 = -280001109 FRAME_-280001109_NAME = 'JUICE_ROI_GAN_2_11_00' FRAME_-280001109_CLASS = 4 FRAME_-280001109_CLASS_ID = -280001109 FRAME_-280001109_CENTER = -28000109 OBJECT_-28000109_FRAME = 'JUICE_ROI_GAN_2_11_00' TKFRAME_-280001109_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001109_SPEC = 'ANGLES' TKFRAME_-280001109_UNITS = 'DEGREES' TKFRAME_-280001109_AXES = ( 3, 2, 3 ) TKFRAME_-280001109_ANGLES = ( -180.0000000000000, -160.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_2_12_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_2_12_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.1577732943810E+03 Y (km): -0.7754805171919E+03 Z (km): 0.2509896899284E+04 and planetodetic coordinates Longitude (deg): -101.5000000000000 Latitude (deg): 72.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_2_12_00 = -280001110 FRAME_-280001110_NAME = 'JUICE_ROI_GAN_2_12_00' FRAME_-280001110_CLASS = 4 FRAME_-280001110_CLASS_ID = -280001110 FRAME_-280001110_CENTER = -28000110 OBJECT_-28000110_FRAME = 'JUICE_ROI_GAN_2_12_00' TKFRAME_-280001110_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001110_SPEC = 'ANGLES' TKFRAME_-280001110_UNITS = 'DEGREES' TKFRAME_-280001110_AXES = ( 3, 2, 3 ) TKFRAME_-280001110_ANGLES = ( -258.5000000000000, -17.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_1_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_1_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2389391644702E+04 Y (km): 0.1101524635848E+04 Z (km): 0.5741023294545E+02 and planetodetic coordinates Longitude (deg): 24.7500000000000 Latitude (deg): 1.2500000000000 Altitude (km): 0.4999999999996E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_1_00 = -280001111 FRAME_-280001111_NAME = 'JUICE_ROI_GAN_3_1_00' FRAME_-280001111_CLASS = 4 FRAME_-280001111_CLASS_ID = -280001111 FRAME_-280001111_CENTER = -28000111 OBJECT_-28000111_FRAME = 'JUICE_ROI_GAN_3_1_00' TKFRAME_-280001111_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001111_SPEC = 'ANGLES' TKFRAME_-280001111_UNITS = 'DEGREES' TKFRAME_-280001111_AXES = ( 3, 2, 3 ) TKFRAME_-280001111_ANGLES = ( -24.7500000000000, -88.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_2_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_2_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1627715209398E+04 Y (km): 0.1974576444037E+04 Z (km): 0.6143581640596E+03 and planetodetic coordinates Longitude (deg): 129.5000000000000 Latitude (deg): 13.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_2_00 = -280001112 FRAME_-280001112_NAME = 'JUICE_ROI_GAN_3_2_00' FRAME_-280001112_CLASS = 4 FRAME_-280001112_CLASS_ID = -280001112 FRAME_-280001112_CENTER = -28000112 OBJECT_-28000112_FRAME = 'JUICE_ROI_GAN_3_2_00' TKFRAME_-280001112_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001112_SPEC = 'ANGLES' TKFRAME_-280001112_UNITS = 'DEGREES' TKFRAME_-280001112_AXES = ( 3, 2, 3 ) TKFRAME_-280001112_ANGLES = ( -129.5000000000000, -76.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_3_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_3_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2021838166916E+04 Y (km): 0.1666674767223E+04 Z (km): 0.2453783550049E+03 and planetodetic coordinates Longitude (deg): 140.5000000000000 Latitude (deg): 5.3500000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_3_00 = -280001113 FRAME_-280001113_NAME = 'JUICE_ROI_GAN_3_3_00' FRAME_-280001113_CLASS = 4 FRAME_-280001113_CLASS_ID = -280001113 FRAME_-280001113_CENTER = -28000113 OBJECT_-28000113_FRAME = 'JUICE_ROI_GAN_3_3_00' TKFRAME_-280001113_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001113_SPEC = 'ANGLES' TKFRAME_-280001113_UNITS = 'DEGREES' TKFRAME_-280001113_AXES = ( 3, 2, 3 ) TKFRAME_-280001113_ANGLES = ( -140.5000000000000, -84.6500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_4_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_4_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1616289490409E+04 Y (km): 0.2068756208451E+04 Z (km): -0.1835781119524E+03 and planetodetic coordinates Longitude (deg): 128.0000000000000 Latitude (deg): -4.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_4_00 = -280001114 FRAME_-280001114_NAME = 'JUICE_ROI_GAN_3_4_00' FRAME_-280001114_CLASS = 4 FRAME_-280001114_CLASS_ID = -280001114 FRAME_-280001114_CENTER = -28000114 OBJECT_-28000114_FRAME = 'JUICE_ROI_GAN_3_4_00' TKFRAME_-280001114_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001114_SPEC = 'ANGLES' TKFRAME_-280001114_UNITS = 'DEGREES' TKFRAME_-280001114_AXES = ( 3, 2, 3 ) TKFRAME_-280001114_ANGLES = ( -128.0000000000000, -94.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_5_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_5_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1556090948705E+04 Y (km): 0.2102936223564E+04 Z (km): 0.2865049545479E+03 and planetodetic coordinates Longitude (deg): 126.5000000000000 Latitude (deg): 6.2500000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_5_00 = -280001115 FRAME_-280001115_NAME = 'JUICE_ROI_GAN_3_5_00' FRAME_-280001115_CLASS = 4 FRAME_-280001115_CLASS_ID = -280001115 FRAME_-280001115_CENTER = -28000115 OBJECT_-28000115_FRAME = 'JUICE_ROI_GAN_3_5_00' TKFRAME_-280001115_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001115_SPEC = 'ANGLES' TKFRAME_-280001115_UNITS = 'DEGREES' TKFRAME_-280001115_AXES = ( 3, 2, 3 ) TKFRAME_-280001115_ANGLES = ( -126.5000000000000, -83.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_6_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_6_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.8576560393609E+03 Y (km): 0.2421945940965E+04 Z (km): -0.5696041320009E+03 and planetodetic coordinates Longitude (deg): 70.5000000000000 Latitude (deg): -12.5000000000000 Altitude (km): 0.5000000000011E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_6_00 = -280001116 FRAME_-280001116_NAME = 'JUICE_ROI_GAN_3_6_00' FRAME_-280001116_CLASS = 4 FRAME_-280001116_CLASS_ID = -280001116 FRAME_-280001116_CENTER = -28000116 OBJECT_-28000116_FRAME = 'JUICE_ROI_GAN_3_6_00' TKFRAME_-280001116_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001116_SPEC = 'ANGLES' TKFRAME_-280001116_UNITS = 'DEGREES' TKFRAME_-280001116_AXES = ( 3, 2, 3 ) TKFRAME_-280001116_ANGLES = ( -70.5000000000000, -102.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_7_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_7_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2344504735886E+04 Y (km): -0.1194584829394E+04 Z (km): 0.4592949802100E+02 and planetodetic coordinates Longitude (deg): -153.0000000000000 Latitude (deg): 1.0000000000000 Altitude (km): 0.4999999999995E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_7_00 = -280001117 FRAME_-280001117_NAME = 'JUICE_ROI_GAN_3_7_00' FRAME_-280001117_CLASS = 4 FRAME_-280001117_CLASS_ID = -280001117 FRAME_-280001117_CENTER = -28000117 OBJECT_-28000117_FRAME = 'JUICE_ROI_GAN_3_7_00' TKFRAME_-280001117_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001117_SPEC = 'ANGLES' TKFRAME_-280001117_UNITS = 'DEGREES' TKFRAME_-280001117_AXES = ( 3, 2, 3 ) TKFRAME_-280001117_ANGLES = ( -207.0000000000000, -89.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_8_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_8_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2432840088586E+04 Y (km): 0.2771871153937E+03 Z (km): 0.9645212783703E+03 and planetodetic coordinates Longitude (deg): 173.5000000000000 Latitude (deg): 21.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_8_00 = -280001118 FRAME_-280001118_NAME = 'JUICE_ROI_GAN_3_8_00' FRAME_-280001118_CLASS = 4 FRAME_-280001118_CLASS_ID = -280001118 FRAME_-280001118_CENTER = -28000118 OBJECT_-28000118_FRAME = 'JUICE_ROI_GAN_3_8_00' TKFRAME_-280001118_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001118_SPEC = 'ANGLES' TKFRAME_-280001118_UNITS = 'DEGREES' TKFRAME_-280001118_AXES = ( 3, 2, 3 ) TKFRAME_-280001118_ANGLES = ( -173.5000000000000, -68.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_9_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_9_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.5543502242979E+03 Y (km): -0.1444131707329E+04 Z (km): -0.2129090024097E+04 and planetodetic coordinates Longitude (deg): -69.0000000000000 Latitude (deg): -54.0000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_9_00 = -280001119 FRAME_-280001119_NAME = 'JUICE_ROI_GAN_3_9_00' FRAME_-280001119_CLASS = 4 FRAME_-280001119_CLASS_ID = -280001119 FRAME_-280001119_CENTER = -28000119 OBJECT_-28000119_FRAME = 'JUICE_ROI_GAN_3_9_00' TKFRAME_-280001119_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001119_SPEC = 'ANGLES' TKFRAME_-280001119_UNITS = 'DEGREES' TKFRAME_-280001119_AXES = ( 3, 2, 3 ) TKFRAME_-280001119_ANGLES = ( -291.0000000000000, -144.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_10_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_10_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.2226371602112E+04 Y (km): 0.1556830683372E+03 Z (km): 0.1394588527683E+04 and planetodetic coordinates Longitude (deg): 4.0000000000000 Latitude (deg): 32.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_10_00 = -280001120 FRAME_-280001120_NAME = 'JUICE_ROI_GAN_3_10_00' FRAME_-280001120_CLASS = 4 FRAME_-280001120_CLASS_ID = -280001120 FRAME_-280001120_CENTER = -28000120 OBJECT_-28000120_FRAME = 'JUICE_ROI_GAN_3_10_00' TKFRAME_-280001120_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001120_SPEC = 'ANGLES' TKFRAME_-280001120_UNITS = 'DEGREES' TKFRAME_-280001120_AXES = ( 3, 2, 3 ) TKFRAME_-280001120_ANGLES = ( -4.0000000000000, -58.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_11_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_11_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.2581328598884E+04 Y (km): 0.4784209771715E+03 Z (km): 0.1835781119524E+03 and planetodetic coordinates Longitude (deg): 10.5000000000000 Latitude (deg): 4.0000000000000 Altitude (km): 0.5000000000010E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_11_00 = -280001121 FRAME_-280001121_NAME = 'JUICE_ROI_GAN_3_11_00' FRAME_-280001121_CLASS = 4 FRAME_-280001121_CLASS_ID = -280001121 FRAME_-280001121_CENTER = -28000121 OBJECT_-28000121_FRAME = 'JUICE_ROI_GAN_3_11_00' TKFRAME_-280001121_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001121_SPEC = 'ANGLES' TKFRAME_-280001121_UNITS = 'DEGREES' TKFRAME_-280001121_AXES = ( 3, 2, 3 ) TKFRAME_-280001121_ANGLES = ( -10.5000000000000, -86.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_12_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_12_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.2068787227079E+04 Y (km): 0.1009014949455E+04 Z (km): -0.1275873477602E+04 and planetodetic coordinates Longitude (deg): 26.0000000000000 Latitude (deg): -29.0000000000000 Altitude (km): 0.5000000000006E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_12_00 = -280001122 FRAME_-280001122_NAME = 'JUICE_ROI_GAN_3_12_00' FRAME_-280001122_CLASS = 4 FRAME_-280001122_CLASS_ID = -280001122 FRAME_-280001122_CENTER = -28000122 OBJECT_-28000122_FRAME = 'JUICE_ROI_GAN_3_12_00' TKFRAME_-280001122_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001122_SPEC = 'ANGLES' TKFRAME_-280001122_UNITS = 'DEGREES' TKFRAME_-280001122_AXES = ( 3, 2, 3 ) TKFRAME_-280001122_ANGLES = ( -26.0000000000000, -119.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_13_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_13_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.6468187474821E+03 Y (km): -0.2501062520915E+04 Z (km): -0.5021520331325E+03 and planetodetic coordinates Longitude (deg): -75.5000000000000 Latitude (deg): -11.0000000000000 Altitude (km): 0.4999999999994E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_13_00 = -280001123 FRAME_-280001123_NAME = 'JUICE_ROI_GAN_3_13_00' FRAME_-280001123_CLASS = 4 FRAME_-280001123_CLASS_ID = -280001123 FRAME_-280001123_CENTER = -28000123 OBJECT_-28000123_FRAME = 'JUICE_ROI_GAN_3_13_00' TKFRAME_-280001123_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001123_SPEC = 'ANGLES' TKFRAME_-280001123_UNITS = 'DEGREES' TKFRAME_-280001123_AXES = ( 3, 2, 3 ) TKFRAME_-280001123_ANGLES = ( -284.5000000000000, -101.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_3_14_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_3_14_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): -0.3888567301027E+03 Y (km): -0.2601901135438E+04 Z (km): 0.6888987486183E+02 and planetodetic coordinates Longitude (deg): -98.5000000000000 Latitude (deg): 1.5000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_3_14_00 = -280001124 FRAME_-280001124_NAME = 'JUICE_ROI_GAN_3_14_00' FRAME_-280001124_CLASS = 4 FRAME_-280001124_CLASS_ID = -280001124 FRAME_-280001124_CENTER = -28000124 OBJECT_-28000124_FRAME = 'JUICE_ROI_GAN_3_14_00' TKFRAME_-280001124_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001124_SPEC = 'ANGLES' TKFRAME_-280001124_UNITS = 'DEGREES' TKFRAME_-280001124_AXES = ( 3, 2, 3 ) TKFRAME_-280001124_ANGLES = ( -261.5000000000000, -88.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_1_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_1_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1175294349680E+04 Y (km): 0.8856478172644E+03 Z (km): 0.2181778179693E+04 and planetodetic coordinates Longitude (deg): 37.0000000000000 Latitude (deg): 56.0000000000000 Altitude (km): 0.4999999999995E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_1_01 = -280001125 FRAME_-280001125_NAME = 'JUICE_ROI_GAN_4_1_01' FRAME_-280001125_CLASS = 4 FRAME_-280001125_CLASS_ID = -280001125 FRAME_-280001125_CENTER = -28000125 OBJECT_-28000125_FRAME = 'JUICE_ROI_GAN_4_1_01' TKFRAME_-280001125_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001125_SPEC = 'ANGLES' TKFRAME_-280001125_UNITS = 'DEGREES' TKFRAME_-280001125_AXES = ( 3, 2, 3 ) TKFRAME_-280001125_ANGLES = ( -37.0000000000000, -34.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_1_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_1_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2403353729267E+04 Y (km): 0.1070042021213E+04 Z (km): 0.6888987486183E+02 and planetodetic coordinates Longitude (deg): 156.0000000000000 Latitude (deg): 1.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_1_02 = -280001126 FRAME_-280001126_NAME = 'JUICE_ROI_GAN_4_1_02' FRAME_-280001126_CLASS = 4 FRAME_-280001126_CLASS_ID = -280001126 FRAME_-280001126_CENTER = -28000126 OBJECT_-28000126_FRAME = 'JUICE_ROI_GAN_4_1_02' TKFRAME_-280001126_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001126_SPEC = 'ANGLES' TKFRAME_-280001126_UNITS = 'DEGREES' TKFRAME_-280001126_AXES = ( 3, 2, 3 ) TKFRAME_-280001126_ANGLES = ( -156.0000000000000, -88.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_1_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_1_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.6338677680376E+03 Y (km): -0.3960845414099E+03 Z (km): 0.2523325896253E+04 and planetodetic coordinates Longitude (deg): -32.0000000000000 Latitude (deg): 73.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_1_03 = -280001127 FRAME_-280001127_NAME = 'JUICE_ROI_GAN_4_1_03' FRAME_-280001127_CLASS = 4 FRAME_-280001127_CLASS_ID = -280001127 FRAME_-280001127_CENTER = -28000127 OBJECT_-28000127_FRAME = 'JUICE_ROI_GAN_4_1_03' TKFRAME_-280001127_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001127_SPEC = 'ANGLES' TKFRAME_-280001127_UNITS = 'DEGREES' TKFRAME_-280001127_AXES = ( 3, 2, 3 ) TKFRAME_-280001127_ANGLES = ( -328.0000000000000, -16.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_1_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_1_04 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.8984155536739E+03 Y (km): 0.5494944924665E+02 Z (km): 0.2472989070122E+04 and planetodetic coordinates Longitude (deg): 176.5000000000000 Latitude (deg): 70.0000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_1_04 = -280001128 FRAME_-280001128_NAME = 'JUICE_ROI_GAN_4_1_04' FRAME_-280001128_CLASS = 4 FRAME_-280001128_CLASS_ID = -280001128 FRAME_-280001128_CENTER = -28000128 OBJECT_-28000128_FRAME = 'JUICE_ROI_GAN_4_1_04' TKFRAME_-280001128_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001128_SPEC = 'ANGLES' TKFRAME_-280001128_UNITS = 'DEGREES' TKFRAME_-280001128_AXES = ( 3, 2, 3 ) TKFRAME_-280001128_ANGLES = ( -176.5000000000000, -20.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_2_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_2_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1185861187627E+04 Y (km): -0.2327383624908E+04 Z (km): 0.3207235510393E+03 and planetodetic coordinates Longitude (deg): -117.0000000000000 Latitude (deg): 7.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_2_01 = -280001129 FRAME_-280001129_NAME = 'JUICE_ROI_GAN_4_2_01' FRAME_-280001129_CLASS = 4 FRAME_-280001129_CLASS_ID = -280001129 FRAME_-280001129_CENTER = -28000129 OBJECT_-28000129_FRAME = 'JUICE_ROI_GAN_4_2_01' TKFRAME_-280001129_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001129_SPEC = 'ANGLES' TKFRAME_-280001129_UNITS = 'DEGREES' TKFRAME_-280001129_AXES = ( 3, 2, 3 ) TKFRAME_-280001129_ANGLES = ( -243.0000000000000, -83.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_2_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_2_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.3359993546093E+03 Y (km): -0.2552168479646E+04 Z (km): -0.5471611967251E+03 and planetodetic coordinates Longitude (deg): -97.5000000000000 Latitude (deg): -12.0000000000000 Altitude (km): 0.4999999999995E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_2_02 = -280001130 FRAME_-280001130_NAME = 'JUICE_ROI_GAN_4_2_02' FRAME_-280001130_CLASS = 4 FRAME_-280001130_CLASS_ID = -280001130 FRAME_-280001130_CENTER = -28000130 OBJECT_-28000130_FRAME = 'JUICE_ROI_GAN_4_2_02' TKFRAME_-280001130_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001130_SPEC = 'ANGLES' TKFRAME_-280001130_UNITS = 'DEGREES' TKFRAME_-280001130_AXES = ( 3, 2, 3 ) TKFRAME_-280001130_ANGLES = ( -262.5000000000000, -102.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_2_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_2_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2325651751637E+04 Y (km): 0.6449603116646E+03 Z (km): 0.1049387924691E+04 and planetodetic coordinates Longitude (deg): 164.5000000000000 Latitude (deg): 23.5000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_2_03 = -280001131 FRAME_-280001131_NAME = 'JUICE_ROI_GAN_4_2_03' FRAME_-280001131_CLASS = 4 FRAME_-280001131_CLASS_ID = -280001131 FRAME_-280001131_CENTER = -28000131 OBJECT_-28000131_FRAME = 'JUICE_ROI_GAN_4_2_03' TKFRAME_-280001131_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001131_SPEC = 'ANGLES' TKFRAME_-280001131_UNITS = 'DEGREES' TKFRAME_-280001131_AXES = ( 3, 2, 3 ) TKFRAME_-280001131_ANGLES = ( -164.5000000000000, -66.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_2_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_2_04 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1128829816188E+04 Y (km): -0.1705475813899E+04 Z (km): -0.1656182473126E+04 and planetodetic coordinates Longitude (deg): -123.5000000000000 Latitude (deg): -39.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_2_04 = -280001132 FRAME_-280001132_NAME = 'JUICE_ROI_GAN_4_2_04' FRAME_-280001132_CLASS = 4 FRAME_-280001132_CLASS_ID = -280001132 FRAME_-280001132_CENTER = -28000132 OBJECT_-28000132_FRAME = 'JUICE_ROI_GAN_4_2_04' TKFRAME_-280001132_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001132_SPEC = 'ANGLES' TKFRAME_-280001132_UNITS = 'DEGREES' TKFRAME_-280001132_AXES = ( 3, 2, 3 ) TKFRAME_-280001132_ANGLES = ( -236.5000000000000, -129.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_2_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_2_05 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.7781159314115E+03 Y (km): 0.1442152635738E+03 Z (km): 0.2509896899284E+04 and planetodetic coordinates Longitude (deg): 10.5000000000000 Latitude (deg): 72.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_2_05 = -280001133 FRAME_-280001133_NAME = 'JUICE_ROI_GAN_4_2_05' FRAME_-280001133_CLASS = 4 FRAME_-280001133_CLASS_ID = -280001133 FRAME_-280001133_CENTER = -28000133 OBJECT_-28000133_FRAME = 'JUICE_ROI_GAN_4_2_05' TKFRAME_-280001133_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001133_SPEC = 'ANGLES' TKFRAME_-280001133_UNITS = 'DEGREES' TKFRAME_-280001133_AXES = ( 3, 2, 3 ) TKFRAME_-280001133_ANGLES = ( -10.5000000000000, -17.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_2_06 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_2_06 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1332792710373E+04 Y (km): -0.1903425252720E+04 Z (km): 0.1235508311784E+04 and planetodetic coordinates Longitude (deg): -55.0000000000000 Latitude (deg): 28.0000000000000 Altitude (km): 0.4999999999993E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_2_06 = -280001134 FRAME_-280001134_NAME = 'JUICE_ROI_GAN_4_2_06' FRAME_-280001134_CLASS = 4 FRAME_-280001134_CLASS_ID = -280001134 FRAME_-280001134_CENTER = -28000134 OBJECT_-28000134_FRAME = 'JUICE_ROI_GAN_4_2_06' TKFRAME_-280001134_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001134_SPEC = 'ANGLES' TKFRAME_-280001134_UNITS = 'DEGREES' TKFRAME_-280001134_AXES = ( 3, 2, 3 ) TKFRAME_-280001134_ANGLES = ( -305.0000000000000, -62.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_2_07 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_2_07 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2618693827925E+04 Y (km): 0.2060956739088E+03 Z (km): 0.1606614414939E+03 and planetodetic coordinates Longitude (deg): 175.5000000000000 Latitude (deg): 3.5000000000000 Altitude (km): 0.4999999999996E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_2_07 = -280001135 FRAME_-280001135_NAME = 'JUICE_ROI_GAN_4_2_07' FRAME_-280001135_CLASS = 4 FRAME_-280001135_CLASS_ID = -280001135 FRAME_-280001135_CENTER = -28000135 OBJECT_-28000135_FRAME = 'JUICE_ROI_GAN_4_2_07' TKFRAME_-280001135_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001135_SPEC = 'ANGLES' TKFRAME_-280001135_UNITS = 'DEGREES' TKFRAME_-280001135_AXES = ( 3, 2, 3 ) TKFRAME_-280001135_ANGLES = ( -175.5000000000000, -86.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_2_08 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_2_08 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.3106076644147E+03 Y (km): -0.2210088370917E+04 Z (km): -0.1394588527683E+04 and planetodetic coordinates Longitude (deg): -98.0000000000000 Latitude (deg): -32.0000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_2_08 = -280001136 FRAME_-280001136_NAME = 'JUICE_ROI_GAN_4_2_08' FRAME_-280001136_CLASS = 4 FRAME_-280001136_CLASS_ID = -280001136 FRAME_-280001136_CENTER = -28000136 OBJECT_-28000136_FRAME = 'JUICE_ROI_GAN_4_2_08' TKFRAME_-280001136_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001136_SPEC = 'ANGLES' TKFRAME_-280001136_UNITS = 'DEGREES' TKFRAME_-280001136_AXES = ( 3, 2, 3 ) TKFRAME_-280001136_ANGLES = ( -262.0000000000000, -122.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_3_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_3_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2578922875907E+04 Y (km): 0.2938311466295E+03 Z (km): -0.4343557843435E+03 and planetodetic coordinates Longitude (deg): 173.5000000000000 Latitude (deg): -9.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_3_01 = -280001137 FRAME_-280001137_NAME = 'JUICE_ROI_GAN_4_3_01' FRAME_-280001137_CLASS = 4 FRAME_-280001137_CLASS_ID = -280001137 FRAME_-280001137_CENTER = -28000137 OBJECT_-28000137_FRAME = 'JUICE_ROI_GAN_4_3_01' TKFRAME_-280001137_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001137_SPEC = 'ANGLES' TKFRAME_-280001137_UNITS = 'DEGREES' TKFRAME_-280001137_AXES = ( 3, 2, 3 ) TKFRAME_-280001137_ANGLES = ( -173.5000000000000, -99.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_3_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_3_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1992122457220E+04 Y (km): 0.1293699450298E+04 Z (km): -0.1132976053470E+04 and planetodetic coordinates Longitude (deg): 33.0000000000000 Latitude (deg): -25.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_3_02 = -280001138 FRAME_-280001138_NAME = 'JUICE_ROI_GAN_4_3_02' FRAME_-280001138_CLASS = 4 FRAME_-280001138_CLASS_ID = -280001138 FRAME_-280001138_CENTER = -28000138 OBJECT_-28000138_FRAME = 'JUICE_ROI_GAN_4_3_02' TKFRAME_-280001138_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001138_SPEC = 'ANGLES' TKFRAME_-280001138_UNITS = 'DEGREES' TKFRAME_-280001138_AXES = ( 3, 2, 3 ) TKFRAME_-280001138_ANGLES = ( -33.0000000000000, -115.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_3_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_3_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1901726994749E+04 Y (km): 0.1234995950579E+04 Z (km): -0.1335688709804E+04 and planetodetic coordinates Longitude (deg): 147.0000000000000 Latitude (deg): -30.5000000000000 Altitude (km): 0.5000000000006E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_3_03 = -280001139 FRAME_-280001139_NAME = 'JUICE_ROI_GAN_4_3_03' FRAME_-280001139_CLASS = 4 FRAME_-280001139_CLASS_ID = -280001139 FRAME_-280001139_CENTER = -28000139 OBJECT_-28000139_FRAME = 'JUICE_ROI_GAN_4_3_03' TKFRAME_-280001139_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001139_SPEC = 'ANGLES' TKFRAME_-280001139_UNITS = 'DEGREES' TKFRAME_-280001139_AXES = ( 3, 2, 3 ) TKFRAME_-280001139_ANGLES = ( -147.0000000000000, -120.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_3_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_3_04 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.9783603089367E+03 Y (km): -0.2005935899862E+04 Z (km): -0.1394588527683E+04 and planetodetic coordinates Longitude (deg): -116.0000000000000 Latitude (deg): -32.0000000000000 Altitude (km): 0.5000000000006E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_3_04 = -280001140 FRAME_-280001140_NAME = 'JUICE_ROI_GAN_4_3_04' FRAME_-280001140_CLASS = 4 FRAME_-280001140_CLASS_ID = -280001140 FRAME_-280001140_CENTER = -28000140 OBJECT_-28000140_FRAME = 'JUICE_ROI_GAN_4_3_04' TKFRAME_-280001140_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001140_SPEC = 'ANGLES' TKFRAME_-280001140_UNITS = 'DEGREES' TKFRAME_-280001140_AXES = ( 3, 2, 3 ) TKFRAME_-280001140_ANGLES = ( -244.0000000000000, -122.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_3_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_3_05 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1960296943661E+04 Y (km): 0.4706256576626E+03 Z (km): -0.1691624152412E+04 and planetodetic coordinates Longitude (deg): 13.5000000000000 Latitude (deg): -40.0000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_3_05 = -280001141 FRAME_-280001141_NAME = 'JUICE_ROI_GAN_4_3_05' FRAME_-280001141_CLASS = 4 FRAME_-280001141_CLASS_ID = -280001141 FRAME_-280001141_CENTER = -28000141 OBJECT_-28000141_FRAME = 'JUICE_ROI_GAN_4_3_05' TKFRAME_-280001141_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001141_SPEC = 'ANGLES' TKFRAME_-280001141_UNITS = 'DEGREES' TKFRAME_-280001141_AXES = ( 3, 2, 3 ) TKFRAME_-280001141_ANGLES = ( -13.5000000000000, -130.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_3_06 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_3_06 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.6749200929074E+03 Y (km): 0.2353726080444E+04 Z (km): 0.9645212783703E+03 and planetodetic coordinates Longitude (deg): 106.0000000000000 Latitude (deg): 21.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_3_06 = -280001142 FRAME_-280001142_NAME = 'JUICE_ROI_GAN_4_3_06' FRAME_-280001142_CLASS = 4 FRAME_-280001142_CLASS_ID = -280001142 FRAME_-280001142_CENTER = -28000142 OBJECT_-28000142_FRAME = 'JUICE_ROI_GAN_4_3_06' TKFRAME_-280001142_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001142_SPEC = 'ANGLES' TKFRAME_-280001142_UNITS = 'DEGREES' TKFRAME_-280001142_AXES = ( 3, 2, 3 ) TKFRAME_-280001142_ANGLES = ( -106.0000000000000, -68.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_3_07 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_3_07 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.4875583531086E+03 Y (km): 0.9996427643727E+03 Z (km): 0.2385130203144E+04 and planetodetic coordinates Longitude (deg): 116.0000000000000 Latitude (deg): 65.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_3_07 = -280001143 FRAME_-280001143_NAME = 'JUICE_ROI_GAN_4_3_07' FRAME_-280001143_CLASS = 4 FRAME_-280001143_CLASS_ID = -280001143 FRAME_-280001143_CENTER = -28000143 OBJECT_-28000143_FRAME = 'JUICE_ROI_GAN_4_3_07' TKFRAME_-280001143_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001143_SPEC = 'ANGLES' TKFRAME_-280001143_UNITS = 'DEGREES' TKFRAME_-280001143_AXES = ( 3, 2, 3 ) TKFRAME_-280001143_ANGLES = ( -116.0000000000000, -25.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_3_08 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_3_08 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1870644641100E+04 Y (km): -0.1775175481319E+04 Z (km): -0.5246765930057E+03 and planetodetic coordinates Longitude (deg): -43.5000000000000 Latitude (deg): -11.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_3_08 = -280001144 FRAME_-280001144_NAME = 'JUICE_ROI_GAN_4_3_08' FRAME_-280001144_CLASS = 4 FRAME_-280001144_CLASS_ID = -280001144 FRAME_-280001144_CENTER = -28000144 OBJECT_-28000144_FRAME = 'JUICE_ROI_GAN_4_3_08' TKFRAME_-280001144_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001144_SPEC = 'ANGLES' TKFRAME_-280001144_UNITS = 'DEGREES' TKFRAME_-280001144_AXES = ( 3, 2, 3 ) TKFRAME_-280001144_ANGLES = ( -316.5000000000000, -101.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_3_09 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_3_09 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2292977880286E+04 Y (km): 0.2006095702407E+03 Z (km): -0.1275873477602E+04 and planetodetic coordinates Longitude (deg): 175.0000000000000 Latitude (deg): -29.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_3_09 = -280001145 FRAME_-280001145_NAME = 'JUICE_ROI_GAN_4_3_09' FRAME_-280001145_CLASS = 4 FRAME_-280001145_CLASS_ID = -280001145 FRAME_-280001145_CENTER = -28000145 OBJECT_-28000145_FRAME = 'JUICE_ROI_GAN_4_3_09' TKFRAME_-280001145_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001145_SPEC = 'ANGLES' TKFRAME_-280001145_UNITS = 'DEGREES' TKFRAME_-280001145_AXES = ( 3, 2, 3 ) TKFRAME_-280001145_ANGLES = ( -175.0000000000000, -119.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.6588246991924E+03 Y (km): 0.2547486091610E+04 Z (km): -0.4592949802100E+02 and planetodetic coordinates Longitude (deg): 104.5000000000000 Latitude (deg): -1.0000000000000 Altitude (km): 0.4999999999992E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_01 = -280001146 FRAME_-280001146_NAME = 'JUICE_ROI_GAN_4_4_01' FRAME_-280001146_CLASS = 4 FRAME_-280001146_CLASS_ID = -280001146 FRAME_-280001146_CENTER = -28000146 OBJECT_-28000146_FRAME = 'JUICE_ROI_GAN_4_4_01' TKFRAME_-280001146_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001146_SPEC = 'ANGLES' TKFRAME_-280001146_UNITS = 'DEGREES' TKFRAME_-280001146_AXES = ( 3, 2, 3 ) TKFRAME_-280001146_ANGLES = ( -104.5000000000000, -91.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.7998085193295E+03 Y (km): -0.4997758311250E+03 Z (km): 0.2456903608413E+04 and planetodetic coordinates Longitude (deg): -32.0000000000000 Latitude (deg): 69.0000000000000 Altitude (km): 0.5000000000006E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_02 = -280001147 FRAME_-280001147_NAME = 'JUICE_ROI_GAN_4_4_02' FRAME_-280001147_CLASS = 4 FRAME_-280001147_CLASS_ID = -280001147 FRAME_-280001147_CENTER = -28000147 OBJECT_-28000147_FRAME = 'JUICE_ROI_GAN_4_4_02' TKFRAME_-280001147_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001147_SPEC = 'ANGLES' TKFRAME_-280001147_UNITS = 'DEGREES' TKFRAME_-280001147_AXES = ( 3, 2, 3 ) TKFRAME_-280001147_ANGLES = ( -328.0000000000000, -21.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.6629514977963E+03 Y (km): 0.2347634380567E+03 Z (km): 0.2535986263709E+04 and planetodetic coordinates Longitude (deg): 19.5000000000000 Latitude (deg): 74.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_03 = -280001148 FRAME_-280001148_NAME = 'JUICE_ROI_GAN_4_4_03' FRAME_-280001148_CLASS = 4 FRAME_-280001148_CLASS_ID = -280001148 FRAME_-280001148_CENTER = -28000148 OBJECT_-28000148_FRAME = 'JUICE_ROI_GAN_4_4_03' TKFRAME_-280001148_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001148_SPEC = 'ANGLES' TKFRAME_-280001148_UNITS = 'DEGREES' TKFRAME_-280001148_AXES = ( 3, 2, 3 ) TKFRAME_-280001148_ANGLES = ( -19.5000000000000, -15.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_04 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1721668431781E+04 Y (km): -0.1297370219703E+04 Z (km): -0.1509481107545E+04 and planetodetic coordinates Longitude (deg): -143.0000000000000 Latitude (deg): -35.0000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_04 = -280001149 FRAME_-280001149_NAME = 'JUICE_ROI_GAN_4_4_04' FRAME_-280001149_CLASS = 4 FRAME_-280001149_CLASS_ID = -280001149 FRAME_-280001149_CENTER = -28000149 OBJECT_-28000149_FRAME = 'JUICE_ROI_GAN_4_4_04' TKFRAME_-280001149_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001149_SPEC = 'ANGLES' TKFRAME_-280001149_UNITS = 'DEGREES' TKFRAME_-280001149_AXES = ( 3, 2, 3 ) TKFRAME_-280001149_ANGLES = ( -217.0000000000000, -125.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_05 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1912431818815E+04 Y (km): 0.1218353437589E+04 Z (km): 0.1335688709804E+04 and planetodetic coordinates Longitude (deg): 32.5000000000000 Latitude (deg): 30.5000000000000 Altitude (km): 0.5000000000006E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_05 = -280001150 FRAME_-280001150_NAME = 'JUICE_ROI_GAN_4_4_05' FRAME_-280001150_CLASS = 4 FRAME_-280001150_CLASS_ID = -280001150 FRAME_-280001150_CENTER = -28000150 OBJECT_-28000150_FRAME = 'JUICE_ROI_GAN_4_4_05' TKFRAME_-280001150_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001150_SPEC = 'ANGLES' TKFRAME_-280001150_UNITS = 'DEGREES' TKFRAME_-280001150_AXES = ( 3, 2, 3 ) TKFRAME_-280001150_ANGLES = ( -32.5000000000000, -59.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_06 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_06 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2461426918165E+04 Y (km): -0.9080683315936E+03 Z (km): 0.2064808022270E+03 and planetodetic coordinates Longitude (deg): -159.7500000000000 Latitude (deg): 4.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_06 = -280001151 FRAME_-280001151_NAME = 'JUICE_ROI_GAN_4_4_06' FRAME_-280001151_CLASS = 4 FRAME_-280001151_CLASS_ID = -280001151 FRAME_-280001151_CENTER = -28000151 OBJECT_-28000151_FRAME = 'JUICE_ROI_GAN_4_4_06' TKFRAME_-280001151_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001151_SPEC = 'ANGLES' TKFRAME_-280001151_UNITS = 'DEGREES' TKFRAME_-280001151_AXES = ( 3, 2, 3 ) TKFRAME_-280001151_ANGLES = ( -200.2500000000000, -85.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_07 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_07 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1759532386012E+04 Y (km): -0.1954158688153E+04 Z (km): -0.1056148384079E+03 and planetodetic coordinates Longitude (deg): -132.0000000000000 Latitude (deg): -2.3000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_07 = -280001152 FRAME_-280001152_NAME = 'JUICE_ROI_GAN_4_4_07' FRAME_-280001152_CLASS = 4 FRAME_-280001152_CLASS_ID = -280001152 FRAME_-280001152_CENTER = -28000152 OBJECT_-28000152_FRAME = 'JUICE_ROI_GAN_4_4_07' TKFRAME_-280001152_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001152_SPEC = 'ANGLES' TKFRAME_-280001152_UNITS = 'DEGREES' TKFRAME_-280001152_AXES = ( 3, 2, 3 ) TKFRAME_-280001152_ANGLES = ( -228.0000000000000, -92.3000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_08 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_08 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.8762906379874E+03 Y (km): -0.1487646297922E+04 Z (km): 0.1986169202272E+04 and planetodetic coordinates Longitude (deg): -59.5000000000000 Latitude (deg): 49.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_08 = -280001153 FRAME_-280001153_NAME = 'JUICE_ROI_GAN_4_4_08' FRAME_-280001153_CLASS = 4 FRAME_-280001153_CLASS_ID = -280001153 FRAME_-280001153_CENTER = -28000153 OBJECT_-28000153_FRAME = 'JUICE_ROI_GAN_4_4_08' TKFRAME_-280001153_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001153_SPEC = 'ANGLES' TKFRAME_-280001153_UNITS = 'DEGREES' TKFRAME_-280001153_AXES = ( 3, 2, 3 ) TKFRAME_-280001153_ANGLES = ( -300.5000000000000, -41.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_09 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_09 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.9680745955222E+03 Y (km): -0.1408557276913E+04 Z (km): 0.2001160379670E+04 and planetodetic coordinates Longitude (deg): -55.5000000000000 Latitude (deg): 49.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_09 = -280001154 FRAME_-280001154_NAME = 'JUICE_ROI_GAN_4_4_09' FRAME_-280001154_CLASS = 4 FRAME_-280001154_CLASS_ID = -280001154 FRAME_-280001154_CENTER = -28000154 OBJECT_-28000154_FRAME = 'JUICE_ROI_GAN_4_4_09' TKFRAME_-280001154_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001154_SPEC = 'ANGLES' TKFRAME_-280001154_UNITS = 'DEGREES' TKFRAME_-280001154_AXES = ( 3, 2, 3 ) TKFRAME_-280001154_ANGLES = ( -304.5000000000000, -40.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_10 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_10 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1508414421977E+04 Y (km): -0.1983665663735E+04 Z (km): -0.8459322408383E+03 and planetodetic coordinates Longitude (deg): -52.7500000000000 Latitude (deg): -18.7500000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_10 = -280001155 FRAME_-280001155_NAME = 'JUICE_ROI_GAN_4_4_10' FRAME_-280001155_CLASS = 4 FRAME_-280001155_CLASS_ID = -280001155 FRAME_-280001155_CENTER = -28000155 OBJECT_-28000155_FRAME = 'JUICE_ROI_GAN_4_4_10' TKFRAME_-280001155_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001155_SPEC = 'ANGLES' TKFRAME_-280001155_UNITS = 'DEGREES' TKFRAME_-280001155_AXES = ( 3, 2, 3 ) TKFRAME_-280001155_ANGLES = ( -307.2500000000000, -108.7500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_4_11 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_4_11 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1617882209031E+04 Y (km): -0.1690061804169E+04 Z (km): -0.1204986782413E+04 and planetodetic coordinates Longitude (deg): -46.2500000000000 Latitude (deg): -27.2500000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_4_11 = -280001156 FRAME_-280001156_NAME = 'JUICE_ROI_GAN_4_4_11' FRAME_-280001156_CLASS = 4 FRAME_-280001156_CLASS_ID = -280001156 FRAME_-280001156_CENTER = -28000156 OBJECT_-28000156_FRAME = 'JUICE_ROI_GAN_4_4_11' TKFRAME_-280001156_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001156_SPEC = 'ANGLES' TKFRAME_-280001156_UNITS = 'DEGREES' TKFRAME_-280001156_AXES = ( 3, 2, 3 ) TKFRAME_-280001156_ANGLES = ( -313.7500000000000, -117.2500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1952548262401E+04 Y (km): -0.9735046524698E+03 Z (km): 0.1471627964064E+04 and planetodetic coordinates Longitude (deg): -153.5000000000000 Latitude (deg): 34.0000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_01 = -280001157 FRAME_-280001157_NAME = 'JUICE_ROI_GAN_4_5_01' FRAME_-280001157_CLASS = 4 FRAME_-280001157_CLASS_ID = -280001157 FRAME_-280001157_CENTER = -28000157 OBJECT_-28000157_FRAME = 'JUICE_ROI_GAN_4_5_01' TKFRAME_-280001157_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001157_SPEC = 'ANGLES' TKFRAME_-280001157_UNITS = 'DEGREES' TKFRAME_-280001157_AXES = ( 3, 2, 3 ) TKFRAME_-280001157_ANGLES = ( -206.5000000000000, -56.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1692018358024E+04 Y (km): -0.1912478851695E+04 Z (km): 0.6366658526496E+03 and planetodetic coordinates Longitude (deg): -131.5000000000000 Latitude (deg): 14.0000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_02 = -280001158 FRAME_-280001158_NAME = 'JUICE_ROI_GAN_4_5_02' FRAME_-280001158_CLASS = 4 FRAME_-280001158_CLASS_ID = -280001158 FRAME_-280001158_CENTER = -28000158 OBJECT_-28000158_FRAME = 'JUICE_ROI_GAN_4_5_02' TKFRAME_-280001158_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001158_SPEC = 'ANGLES' TKFRAME_-280001158_UNITS = 'DEGREES' TKFRAME_-280001158_AXES = ( 3, 2, 3 ) TKFRAME_-280001158_ANGLES = ( -228.5000000000000, -76.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2431003455709E+04 Y (km): 0.4243332316012E+02 Z (km): 0.1007107988955E+04 and planetodetic coordinates Longitude (deg): 179.0000000000000 Latitude (deg): 22.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_03 = -280001159 FRAME_-280001159_NAME = 'JUICE_ROI_GAN_4_5_03' FRAME_-280001159_CLASS = 4 FRAME_-280001159_CLASS_ID = -280001159 FRAME_-280001159_CENTER = -28000159 OBJECT_-28000159_FRAME = 'JUICE_ROI_GAN_4_5_03' TKFRAME_-280001159_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001159_SPEC = 'ANGLES' TKFRAME_-280001159_UNITS = 'DEGREES' TKFRAME_-280001159_AXES = ( 3, 2, 3 ) TKFRAME_-280001159_ANGLES = ( -179.0000000000000, -67.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_04 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1805921787737E+03 Y (km): -0.2294641197250E+04 Z (km): 0.1275873477602E+04 and planetodetic coordinates Longitude (deg): -94.5000000000000 Latitude (deg): 29.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_04 = -280001160 FRAME_-280001160_NAME = 'JUICE_ROI_GAN_4_5_04' FRAME_-280001160_CLASS = 4 FRAME_-280001160_CLASS_ID = -280001160 FRAME_-280001160_CENTER = -28000160 OBJECT_-28000160_FRAME = 'JUICE_ROI_GAN_4_5_04' TKFRAME_-280001160_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001160_SPEC = 'ANGLES' TKFRAME_-280001160_UNITS = 'DEGREES' TKFRAME_-280001160_AXES = ( 3, 2, 3 ) TKFRAME_-280001160_ANGLES = ( -265.5000000000000, -61.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_05 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2619190323207E+04 Y (km): 0.2291494608974E+03 Z (km): 0.1147931417294E+03 and planetodetic coordinates Longitude (deg): 5.0000000000000 Latitude (deg): 2.5000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_05 = -280001161 FRAME_-280001161_NAME = 'JUICE_ROI_GAN_4_5_05' FRAME_-280001161_CLASS = 4 FRAME_-280001161_CLASS_ID = -280001161 FRAME_-280001161_CENTER = -28000161 OBJECT_-28000161_FRAME = 'JUICE_ROI_GAN_4_5_05' TKFRAME_-280001161_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001161_SPEC = 'ANGLES' TKFRAME_-280001161_UNITS = 'DEGREES' TKFRAME_-280001161_AXES = ( 3, 2, 3 ) TKFRAME_-280001161_ANGLES = ( -5.0000000000000, -87.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_06 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_06 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1931457825784E+04 Y (km): -0.1708809535896E+04 Z (km): -0.5246765930057E+03 and planetodetic coordinates Longitude (deg): -138.5000000000000 Latitude (deg): -11.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_06 = -280001162 FRAME_-280001162_NAME = 'JUICE_ROI_GAN_4_5_06' FRAME_-280001162_CLASS = 4 FRAME_-280001162_CLASS_ID = -280001162 FRAME_-280001162_CENTER = -28000162 OBJECT_-28000162_FRAME = 'JUICE_ROI_GAN_4_5_06' TKFRAME_-280001162_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001162_SPEC = 'ANGLES' TKFRAME_-280001162_UNITS = 'DEGREES' TKFRAME_-280001162_AXES = ( 3, 2, 3 ) TKFRAME_-280001162_ANGLES = ( -221.5000000000000, -101.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_07 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_07 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1991235088834E+04 Y (km): 0.1527928423073E+04 Z (km): 0.7913674525554E+03 and planetodetic coordinates Longitude (deg): 142.5000000000000 Latitude (deg): 17.5000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_07 = -280001163 FRAME_-280001163_NAME = 'JUICE_ROI_GAN_4_5_07' FRAME_-280001163_CLASS = 4 FRAME_-280001163_CLASS_ID = -280001163 FRAME_-280001163_CENTER = -28000163 OBJECT_-28000163_FRAME = 'JUICE_ROI_GAN_4_5_07' TKFRAME_-280001163_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001163_SPEC = 'ANGLES' TKFRAME_-280001163_UNITS = 'DEGREES' TKFRAME_-280001163_AXES = ( 3, 2, 3 ) TKFRAME_-280001163_ANGLES = ( -142.5000000000000, -72.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_08 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_08 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2341737901605E+04 Y (km): 0.1018216618533E+04 Z (km): 0.6366658526496E+03 and planetodetic coordinates Longitude (deg): 156.5000000000000 Latitude (deg): 14.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_08 = -280001164 FRAME_-280001164_NAME = 'JUICE_ROI_GAN_4_5_08' FRAME_-280001164_CLASS = 4 FRAME_-280001164_CLASS_ID = -280001164 FRAME_-280001164_CENTER = -28000164 OBJECT_-28000164_FRAME = 'JUICE_ROI_GAN_4_5_08' TKFRAME_-280001164_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001164_SPEC = 'ANGLES' TKFRAME_-280001164_UNITS = 'DEGREES' TKFRAME_-280001164_AXES = ( 3, 2, 3 ) TKFRAME_-280001164_ANGLES = ( -156.5000000000000, -76.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_09 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_09 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2248431871538E+04 Y (km): 0.1272101546526E+04 Z (km): 0.5021520331325E+03 and planetodetic coordinates Longitude (deg): 150.5000000000000 Latitude (deg): 11.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_09 = -280001165 FRAME_-280001165_NAME = 'JUICE_ROI_GAN_4_5_09' FRAME_-280001165_CLASS = 4 FRAME_-280001165_CLASS_ID = -280001165 FRAME_-280001165_CENTER = -28000165 OBJECT_-28000165_FRAME = 'JUICE_ROI_GAN_4_5_09' TKFRAME_-280001165_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001165_SPEC = 'ANGLES' TKFRAME_-280001165_UNITS = 'DEGREES' TKFRAME_-280001165_AXES = ( 3, 2, 3 ) TKFRAME_-280001165_ANGLES = ( -150.5000000000000, -79.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_10 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_10 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.3588670263417E+02 Y (km): 0.1027660706121E+04 Z (km): -0.2422492622831E+04 and planetodetic coordinates Longitude (deg): 92.0000000000000 Latitude (deg): -67.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_10 = -280001166 FRAME_-280001166_NAME = 'JUICE_ROI_GAN_4_5_10' FRAME_-280001166_CLASS = 4 FRAME_-280001166_CLASS_ID = -280001166 FRAME_-280001166_CENTER = -28000166 OBJECT_-28000166_FRAME = 'JUICE_ROI_GAN_4_5_10' TKFRAME_-280001166_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001166_SPEC = 'ANGLES' TKFRAME_-280001166_UNITS = 'DEGREES' TKFRAME_-280001166_AXES = ( 3, 2, 3 ) TKFRAME_-280001166_ANGLES = ( -92.0000000000000, -157.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_11 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_11 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2487651670764E+03 Y (km): 0.9977425890378E+03 Z (km): -0.2422492622831E+04 and planetodetic coordinates Longitude (deg): 76.0000000000000 Latitude (deg): -67.0000000000000 Altitude (km): 0.4999999999995E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_11 = -280001167 FRAME_-280001167_NAME = 'JUICE_ROI_GAN_4_5_11' FRAME_-280001167_CLASS = 4 FRAME_-280001167_CLASS_ID = -280001167 FRAME_-280001167_CENTER = -28000167 OBJECT_-28000167_FRAME = 'JUICE_ROI_GAN_4_5_11' TKFRAME_-280001167_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001167_SPEC = 'ANGLES' TKFRAME_-280001167_UNITS = 'DEGREES' TKFRAME_-280001167_AXES = ( 3, 2, 3 ) TKFRAME_-280001167_ANGLES = ( -76.0000000000000, -157.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_12 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_12 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1374301781163E+04 Y (km): -0.2116239162522E+04 Z (km): 0.7474431826573E+03 and planetodetic coordinates Longitude (deg): -123.0000000000000 Latitude (deg): 16.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_12 = -280001168 FRAME_-280001168_NAME = 'JUICE_ROI_GAN_4_5_12' FRAME_-280001168_CLASS = 4 FRAME_-280001168_CLASS_ID = -280001168 FRAME_-280001168_CENTER = -28000168 OBJECT_-28000168_FRAME = 'JUICE_ROI_GAN_4_5_12' TKFRAME_-280001168_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001168_SPEC = 'ANGLES' TKFRAME_-280001168_UNITS = 'DEGREES' TKFRAME_-280001168_AXES = ( 3, 2, 3 ) TKFRAME_-280001168_ANGLES = ( -237.0000000000000, -73.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_13 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_13 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2030709947531E+04 Y (km): 0.1034698398809E+04 Z (km): 0.1315850000000E+04 and planetodetic coordinates Longitude (deg): 27.0000000000000 Latitude (deg): 30.0000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_13 = -280001169 FRAME_-280001169_NAME = 'JUICE_ROI_GAN_4_5_13' FRAME_-280001169_CLASS = 4 FRAME_-280001169_CLASS_ID = -280001169 FRAME_-280001169_CENTER = -28000169 OBJECT_-28000169_FRAME = 'JUICE_ROI_GAN_4_5_13' TKFRAME_-280001169_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001169_SPEC = 'ANGLES' TKFRAME_-280001169_UNITS = 'DEGREES' TKFRAME_-280001169_AXES = ( 3, 2, 3 ) TKFRAME_-280001169_ANGLES = ( -27.0000000000000, -60.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_5_14 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_5_14 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2151856404379E+04 Y (km): 0.1451445471776E+04 Z (km): -0.4343557843435E+03 and planetodetic coordinates Longitude (deg): 34.0000000000000 Latitude (deg): -9.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_5_14 = -280001170 FRAME_-280001170_NAME = 'JUICE_ROI_GAN_4_5_14' FRAME_-280001170_CLASS = 4 FRAME_-280001170_CLASS_ID = -280001170 FRAME_-280001170_CENTER = -28000170 OBJECT_-28000170_FRAME = 'JUICE_ROI_GAN_4_5_14' TKFRAME_-280001170_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001170_SPEC = 'ANGLES' TKFRAME_-280001170_UNITS = 'DEGREES' TKFRAME_-280001170_AXES = ( 3, 2, 3 ) TKFRAME_-280001170_ANGLES = ( -34.0000000000000, -99.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_6_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_6_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.6491587816244E+03 Y (km): -0.8772877432768E+03 Z (km): -0.2394745076566E+04 and planetodetic coordinates Longitude (deg): -126.5000000000000 Latitude (deg): -65.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_6_01 = -280001171 FRAME_-280001171_NAME = 'JUICE_ROI_GAN_4_6_01' FRAME_-280001171_CLASS = 4 FRAME_-280001171_CLASS_ID = -280001171 FRAME_-280001171_CENTER = -28000171 OBJECT_-28000171_FRAME = 'JUICE_ROI_GAN_4_6_01' TKFRAME_-280001171_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001171_SPEC = 'ANGLES' TKFRAME_-280001171_UNITS = 'DEGREES' TKFRAME_-280001171_AXES = ( 3, 2, 3 ) TKFRAME_-280001171_ANGLES = ( -233.4999999999999, -155.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_6_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_6_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1345322564099E+04 Y (km): -0.2238992740572E+04 Z (km): -0.3207235510393E+03 and planetodetic coordinates Longitude (deg): -121.0000000000000 Latitude (deg): -7.0000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_6_02 = -280001172 FRAME_-280001172_NAME = 'JUICE_ROI_GAN_4_6_02' FRAME_-280001172_CLASS = 4 FRAME_-280001172_CLASS_ID = -280001172 FRAME_-280001172_CENTER = -28000172 OBJECT_-28000172_FRAME = 'JUICE_ROI_GAN_4_6_02' TKFRAME_-280001172_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001172_SPEC = 'ANGLES' TKFRAME_-280001172_UNITS = 'DEGREES' TKFRAME_-280001172_AXES = ( 3, 2, 3 ) TKFRAME_-280001172_ANGLES = ( -239.0000000000000, -97.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_6_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_6_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.5848305859064E+03 Y (km): -0.1411905932186E+04 Z (km): 0.2142507809658E+04 and planetodetic coordinates Longitude (deg): -67.5000000000000 Latitude (deg): 54.5000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_6_03 = -280001173 FRAME_-280001173_NAME = 'JUICE_ROI_GAN_4_6_03' FRAME_-280001173_CLASS = 4 FRAME_-280001173_CLASS_ID = -280001173 FRAME_-280001173_CENTER = -28000173 OBJECT_-28000173_FRAME = 'JUICE_ROI_GAN_4_6_03' TKFRAME_-280001173_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001173_SPEC = 'ANGLES' TKFRAME_-280001173_UNITS = 'DEGREES' TKFRAME_-280001173_AXES = ( 3, 2, 3 ) TKFRAME_-280001173_ANGLES = ( -292.5000000000000, -35.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_7_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_7_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.3409453400706E+03 Y (km): 0.2589736969056E+04 Z (km): 0.3207235510393E+03 and planetodetic coordinates Longitude (deg): 82.5000000000000 Latitude (deg): 7.0000000000000 Altitude (km): 0.4999999999995E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_7_01 = -280001174 FRAME_-280001174_NAME = 'JUICE_ROI_GAN_4_7_01' FRAME_-280001174_CLASS = 4 FRAME_-280001174_CLASS_ID = -280001174 FRAME_-280001174_CENTER = -28000174 OBJECT_-28000174_FRAME = 'JUICE_ROI_GAN_4_7_01' TKFRAME_-280001174_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001174_SPEC = 'ANGLES' TKFRAME_-280001174_UNITS = 'DEGREES' TKFRAME_-280001174_AXES = ( 3, 2, 3 ) TKFRAME_-280001174_ANGLES = ( -82.5000000000000, -83.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_7_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_7_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2704811902152E+03 Y (km): -0.2573456621719E+04 Z (km): 0.4795892324377E+03 and planetodetic coordinates Longitude (deg): -84.0000000000000 Latitude (deg): 10.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_7_02 = -280001175 FRAME_-280001175_NAME = 'JUICE_ROI_GAN_4_7_02' FRAME_-280001175_CLASS = 4 FRAME_-280001175_CLASS_ID = -280001175 FRAME_-280001175_CENTER = -28000175 OBJECT_-28000175_FRAME = 'JUICE_ROI_GAN_4_7_02' TKFRAME_-280001175_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001175_SPEC = 'ANGLES' TKFRAME_-280001175_UNITS = 'DEGREES' TKFRAME_-280001175_AXES = ( 3, 2, 3 ) TKFRAME_-280001175_ANGLES = ( -276.0000000000000, -79.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_7_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_7_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2016508422903E+04 Y (km): -0.4841208398450E+03 Z (km): 0.1620236304615E+04 and planetodetic coordinates Longitude (deg): -13.5000000000000 Latitude (deg): 38.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_7_03 = -280001176 FRAME_-280001176_NAME = 'JUICE_ROI_GAN_4_7_03' FRAME_-280001176_CLASS = 4 FRAME_-280001176_CLASS_ID = -280001176 FRAME_-280001176_CENTER = -28000176 OBJECT_-28000176_FRAME = 'JUICE_ROI_GAN_4_7_03' TKFRAME_-280001176_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001176_SPEC = 'ANGLES' TKFRAME_-280001176_UNITS = 'DEGREES' TKFRAME_-280001176_AXES = ( 3, 2, 3 ) TKFRAME_-280001176_ANGLES = ( -346.5000000000000, -52.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_4_7_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_4_7_04 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2515894156833E+04 Y (km): 0.2644311313633E+03 Z (km): 0.7253948293036E+03 and planetodetic coordinates Longitude (deg): 6.0000000000000 Latitude (deg): 16.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_4_7_04 = -280001177 FRAME_-280001177_NAME = 'JUICE_ROI_GAN_4_7_04' FRAME_-280001177_CLASS = 4 FRAME_-280001177_CLASS_ID = -280001177 FRAME_-280001177_CENTER = -28000177 OBJECT_-28000177_FRAME = 'JUICE_ROI_GAN_4_7_04' TKFRAME_-280001177_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001177_SPEC = 'ANGLES' TKFRAME_-280001177_UNITS = 'DEGREES' TKFRAME_-280001177_AXES = ( 3, 2, 3 ) TKFRAME_-280001177_ANGLES = ( -6.0000000000000, -74.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_1_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_1_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1665741652905E+04 Y (km): 0.1448007127499E+04 Z (km): 0.1433326548449E+04 and planetodetic coordinates Longitude (deg): 139.0000000000000 Latitude (deg): 33.0000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_1_00 = -280001178 FRAME_-280001178_NAME = 'JUICE_ROI_GAN_5_1_00' FRAME_-280001178_CLASS = 4 FRAME_-280001178_CLASS_ID = -280001178 FRAME_-280001178_CENTER = -28000178 OBJECT_-28000178_FRAME = 'JUICE_ROI_GAN_5_1_00' TKFRAME_-280001178_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001178_SPEC = 'ANGLES' TKFRAME_-280001178_UNITS = 'DEGREES' TKFRAME_-280001178_AXES = ( 3, 2, 3 ) TKFRAME_-280001178_ANGLES = ( -139.0000000000000, -57.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_2_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_2_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2264098099659E+04 Y (km): -0.1203842313795E+04 Z (km): 0.5920036897167E+03 and planetodetic coordinates Longitude (deg): -28.0000000000000 Latitude (deg): 13.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_2_00 = -280001179 FRAME_-280001179_NAME = 'JUICE_ROI_GAN_5_2_00' FRAME_-280001179_CLASS = 4 FRAME_-280001179_CLASS_ID = -280001179 FRAME_-280001179_CENTER = -28000179 OBJECT_-28000179_FRAME = 'JUICE_ROI_GAN_5_2_00' TKFRAME_-280001179_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001179_SPEC = 'ANGLES' TKFRAME_-280001179_UNITS = 'DEGREES' TKFRAME_-280001179_AXES = ( 3, 2, 3 ) TKFRAME_-280001179_ANGLES = ( -332.0000000000000, -77.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_3_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_3_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1174494305943E+04 Y (km): 0.2075911657865E+04 Z (km): -0.1112204479423E+04 and planetodetic coordinates Longitude (deg): 119.5000000000000 Latitude (deg): -25.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_3_00 = -280001180 FRAME_-280001180_NAME = 'JUICE_ROI_GAN_5_3_00' FRAME_-280001180_CLASS = 4 FRAME_-280001180_CLASS_ID = -280001180 FRAME_-280001180_CENTER = -28000180 OBJECT_-28000180_FRAME = 'JUICE_ROI_GAN_5_3_00' TKFRAME_-280001180_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001180_SPEC = 'ANGLES' TKFRAME_-280001180_UNITS = 'DEGREES' TKFRAME_-280001180_AXES = ( 3, 2, 3 ) TKFRAME_-280001180_ANGLES = ( -119.5000000000000, -115.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_4_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_4_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1849183050217E+04 Y (km): 0.6367247862168E+03 Z (km): 0.1760951016755E+04 and planetodetic coordinates Longitude (deg): 19.0000000000000 Latitude (deg): 42.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_4_00 = -280001181 FRAME_-280001181_NAME = 'JUICE_ROI_GAN_5_4_00' FRAME_-280001181_CLASS = 4 FRAME_-280001181_CLASS_ID = -280001181 FRAME_-280001181_CENTER = -28000181 OBJECT_-28000181_FRAME = 'JUICE_ROI_GAN_5_4_00' TKFRAME_-280001181_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001181_SPEC = 'ANGLES' TKFRAME_-280001181_UNITS = 'DEGREES' TKFRAME_-280001181_AXES = ( 3, 2, 3 ) TKFRAME_-280001181_ANGLES = ( -19.0000000000000, -48.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_5_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_5_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2724104235888E+03 Y (km): 0.2591812051153E+04 Z (km): -0.3662618497966E+03 and planetodetic coordinates Longitude (deg): 84.0000000000000 Latitude (deg): -8.0000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_5_00 = -280001182 FRAME_-280001182_NAME = 'JUICE_ROI_GAN_5_5_00' FRAME_-280001182_CLASS = 4 FRAME_-280001182_CLASS_ID = -280001182 FRAME_-280001182_CENTER = -28000182 OBJECT_-28000182_FRAME = 'JUICE_ROI_GAN_5_5_00' TKFRAME_-280001182_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001182_SPEC = 'ANGLES' TKFRAME_-280001182_UNITS = 'DEGREES' TKFRAME_-280001182_AXES = ( 3, 2, 3 ) TKFRAME_-280001182_ANGLES = ( -84.0000000000000, -98.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_6_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_6_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1202277281012E+04 Y (km): 0.2000925410885E+04 Z (km): 0.1215183825451E+04 and planetodetic coordinates Longitude (deg): 59.0000000000000 Latitude (deg): 27.5000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_6_00 = -280001183 FRAME_-280001183_NAME = 'JUICE_ROI_GAN_5_6_00' FRAME_-280001183_CLASS = 4 FRAME_-280001183_CLASS_ID = -280001183 FRAME_-280001183_CENTER = -28000183 OBJECT_-28000183_FRAME = 'JUICE_ROI_GAN_5_6_00' TKFRAME_-280001183_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001183_SPEC = 'ANGLES' TKFRAME_-280001183_UNITS = 'DEGREES' TKFRAME_-280001183_AXES = ( 3, 2, 3 ) TKFRAME_-280001183_ANGLES = ( -59.0000000000000, -62.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_7_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_7_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2602693941226E+04 Y (km): -0.3889752157215E+03 Z (km): 0.2296562347107E+02 and planetodetic coordinates Longitude (deg): -8.5000000000000 Latitude (deg): 0.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_7_00 = -280001184 FRAME_-280001184_NAME = 'JUICE_ROI_GAN_5_7_00' FRAME_-280001184_CLASS = 4 FRAME_-280001184_CLASS_ID = -280001184 FRAME_-280001184_CENTER = -28000184 OBJECT_-28000184_FRAME = 'JUICE_ROI_GAN_5_7_00' TKFRAME_-280001184_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001184_SPEC = 'ANGLES' TKFRAME_-280001184_UNITS = 'DEGREES' TKFRAME_-280001184_AXES = ( 3, 2, 3 ) TKFRAME_-280001184_ANGLES = ( -351.5000000000000, -89.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_8_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_8_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1906351558261E+04 Y (km): -0.9990765170125E+02 Z (km): 0.1811542736853E+04 and planetodetic coordinates Longitude (deg): -177.0000000000000 Latitude (deg): 43.5000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_8_00 = -280001185 FRAME_-280001185_NAME = 'JUICE_ROI_GAN_5_8_00' FRAME_-280001185_CLASS = 4 FRAME_-280001185_CLASS_ID = -280001185 FRAME_-280001185_CENTER = -28000185 OBJECT_-28000185_FRAME = 'JUICE_ROI_GAN_5_8_00' TKFRAME_-280001185_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001185_SPEC = 'ANGLES' TKFRAME_-280001185_UNITS = 'DEGREES' TKFRAME_-280001185_AXES = ( 3, 2, 3 ) TKFRAME_-280001185_ANGLES = ( -183.0000000000000, -46.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_9_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_9_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.6990125481170E+03 Y (km): -0.2437746456729E+04 Z (km): 0.7032912343251E+03 and planetodetic coordinates Longitude (deg): -106.0000000000000 Latitude (deg): 15.5000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_9_00 = -280001186 FRAME_-280001186_NAME = 'JUICE_ROI_GAN_5_9_00' FRAME_-280001186_CLASS = 4 FRAME_-280001186_CLASS_ID = -280001186 FRAME_-280001186_CENTER = -28000186 OBJECT_-28000186_FRAME = 'JUICE_ROI_GAN_5_9_00' TKFRAME_-280001186_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001186_SPEC = 'ANGLES' TKFRAME_-280001186_UNITS = 'DEGREES' TKFRAME_-280001186_AXES = ( 3, 2, 3 ) TKFRAME_-280001186_ANGLES = ( -254.0000000000000, -74.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_10_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_10_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.1230529383865E+04 Y (km): -0.2503540326559E+03 Z (km): 0.2312782995392E+04 and planetodetic coordinates Longitude (deg): -11.5000000000000 Latitude (deg): 61.5000000000000 Altitude (km): 0.4999999999996E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_10_00 = -280001187 FRAME_-280001187_NAME = 'JUICE_ROI_GAN_5_10_00' FRAME_-280001187_CLASS = 4 FRAME_-280001187_CLASS_ID = -280001187 FRAME_-280001187_CENTER = -28000187 OBJECT_-28000187_FRAME = 'JUICE_ROI_GAN_5_10_00' TKFRAME_-280001187_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001187_SPEC = 'ANGLES' TKFRAME_-280001187_UNITS = 'DEGREES' TKFRAME_-280001187_AXES = ( 3, 2, 3 ) TKFRAME_-280001187_ANGLES = ( -348.5000000000000, -28.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_11_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_11_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.5073190274490E+03 Y (km): -0.2386748371648E+04 Z (km): 0.9858521718927E+03 and planetodetic coordinates Longitude (deg): -78.0000000000000 Latitude (deg): 22.0000000000000 Altitude (km): 0.4999999999993E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_11_00 = -280001188 FRAME_-280001188_NAME = 'JUICE_ROI_GAN_5_11_00' FRAME_-280001188_CLASS = 4 FRAME_-280001188_CLASS_ID = -280001188 FRAME_-280001188_CENTER = -28000188 OBJECT_-28000188_FRAME = 'JUICE_ROI_GAN_5_11_00' TKFRAME_-280001188_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001188_SPEC = 'ANGLES' TKFRAME_-280001188_UNITS = 'DEGREES' TKFRAME_-280001188_AXES = ( 3, 2, 3 ) TKFRAME_-280001188_ANGLES = ( -282.0000000000000, -68.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_5_12_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_5_12_00 is centered at the site JUICE_ROI_ which has Cartesian coordinates X (km): 0.9483102101306E+03 Y (km): -0.2033657808415E+04 Z (km): -0.1375059472763E+04 and planetodetic coordinates Longitude (deg): -65.0000000000000 Latitude (deg): -31.5000000000000 Altitude (km): 0.4999999999996E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_5_12_00 = -280001189 FRAME_-280001189_NAME = 'JUICE_ROI_GAN_5_12_00' FRAME_-280001189_CLASS = 4 FRAME_-280001189_CLASS_ID = -280001189 FRAME_-280001189_CENTER = -28000189 OBJECT_-28000189_FRAME = 'JUICE_ROI_GAN_5_12_00' TKFRAME_-280001189_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001189_SPEC = 'ANGLES' TKFRAME_-280001189_UNITS = 'DEGREES' TKFRAME_-280001189_AXES = ( 3, 2, 3 ) TKFRAME_-280001189_ANGLES = ( -295.0000000000000, -121.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_1_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_1_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2573517838621E+04 Y (km): -0.2251536362611E+03 Z (km): -0.5021520331325E+03 and planetodetic coordinates Longitude (deg): -175.0000000000000 Latitude (deg): -11.0000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_1_01 = -280001190 FRAME_-280001190_NAME = 'JUICE_ROI_GAN_6_1_01' FRAME_-280001190_CLASS = 4 FRAME_-280001190_CLASS_ID = -280001190 FRAME_-280001190_CENTER = -28000190 OBJECT_-28000190_FRAME = 'JUICE_ROI_GAN_6_1_01' TKFRAME_-280001190_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001190_SPEC = 'ANGLES' TKFRAME_-280001190_UNITS = 'DEGREES' TKFRAME_-280001190_AXES = ( 3, 2, 3 ) TKFRAME_-280001190_ANGLES = ( -185.0000000000000, -101.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_1_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_1_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2226884176268E+04 Y (km): -0.1110283493552E+04 Z (km): 0.8567977120849E+03 and planetodetic coordinates Longitude (deg): -153.5000000000000 Latitude (deg): 19.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_1_02 = -280001191 FRAME_-280001191_NAME = 'JUICE_ROI_GAN_6_1_02' FRAME_-280001191_CLASS = 4 FRAME_-280001191_CLASS_ID = -280001191 FRAME_-280001191_CENTER = -28000191 OBJECT_-28000191_FRAME = 'JUICE_ROI_GAN_6_1_02' TKFRAME_-280001191_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001191_SPEC = 'ANGLES' TKFRAME_-280001191_UNITS = 'DEGREES' TKFRAME_-280001191_AXES = ( 3, 2, 3 ) TKFRAME_-280001191_ANGLES = ( -206.5000000000000, -71.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_1_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_1_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1469051795383E+04 Y (km): -0.1814127884921E+04 Z (km): 0.1215183825451E+04 and planetodetic coordinates Longitude (deg): -129.0000000000000 Latitude (deg): 27.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_1_03 = -280001192 FRAME_-280001192_NAME = 'JUICE_ROI_GAN_6_1_03' FRAME_-280001192_CLASS = 4 FRAME_-280001192_CLASS_ID = -280001192 FRAME_-280001192_CENTER = -28000192 OBJECT_-28000192_FRAME = 'JUICE_ROI_GAN_6_1_03' TKFRAME_-280001192_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001192_SPEC = 'ANGLES' TKFRAME_-280001192_UNITS = 'DEGREES' TKFRAME_-280001192_AXES = ( 3, 2, 3 ) TKFRAME_-280001192_ANGLES = ( -231.0000000000000, -62.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_1_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_1_04 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1421621257793E+04 Y (km): -0.2068471765441E+04 Z (km): 0.7913674525554E+03 and planetodetic coordinates Longitude (deg): -55.5000000000000 Latitude (deg): 17.5000000000000 Altitude (km): 0.5000000000002E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_1_04 = -280001193 FRAME_-280001193_NAME = 'JUICE_ROI_GAN_6_1_04' FRAME_-280001193_CLASS = 4 FRAME_-280001193_CLASS_ID = -280001193 FRAME_-280001193_CENTER = -28000193 OBJECT_-28000193_FRAME = 'JUICE_ROI_GAN_6_1_04' TKFRAME_-280001193_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001193_SPEC = 'ANGLES' TKFRAME_-280001193_UNITS = 'DEGREES' TKFRAME_-280001193_AXES = ( 3, 2, 3 ) TKFRAME_-280001193_ANGLES = ( -304.5000000000000, -72.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_1_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_1_05 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2134101091800E+04 Y (km): 0.4536171903293E+03 Z (km): 0.1471627964064E+04 and planetodetic coordinates Longitude (deg): 168.0000000000000 Latitude (deg): 34.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_1_05 = -280001194 FRAME_-280001194_NAME = 'JUICE_ROI_GAN_6_1_05' FRAME_-280001194_CLASS = 4 FRAME_-280001194_CLASS_ID = -280001194 FRAME_-280001194_CENTER = -28000194 OBJECT_-28000194_FRAME = 'JUICE_ROI_GAN_6_1_05' TKFRAME_-280001194_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001194_SPEC = 'ANGLES' TKFRAME_-280001194_UNITS = 'DEGREES' TKFRAME_-280001194_AXES = ( 3, 2, 3 ) TKFRAME_-280001194_ANGLES = ( -168.0000000000000, -56.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_1_06 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_1_06 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1869254860852E+04 Y (km): 0.7934516135089E+03 Z (km): 0.1673967052305E+04 and planetodetic coordinates Longitude (deg): 157.0000000000000 Latitude (deg): 39.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_1_06 = -280001195 FRAME_-280001195_NAME = 'JUICE_ROI_GAN_6_1_06' FRAME_-280001195_CLASS = 4 FRAME_-280001195_CLASS_ID = -280001195 FRAME_-280001195_CENTER = -28000195 OBJECT_-28000195_FRAME = 'JUICE_ROI_GAN_6_1_06' TKFRAME_-280001195_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001195_SPEC = 'ANGLES' TKFRAME_-280001195_UNITS = 'DEGREES' TKFRAME_-280001195_AXES = ( 3, 2, 3 ) TKFRAME_-280001195_ANGLES = ( -157.0000000000000, -50.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_1_07 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_1_07 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2355913005798E+04 Y (km): 0.4793159182718E+03 Z (km): -0.1070408823583E+04 and planetodetic coordinates Longitude (deg): 11.5000000000000 Latitude (deg): -24.0000000000000 Altitude (km): 0.5000000000006E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_1_07 = -280001196 FRAME_-280001196_NAME = 'JUICE_ROI_GAN_6_1_07' FRAME_-280001196_CLASS = 4 FRAME_-280001196_CLASS_ID = -280001196 FRAME_-280001196_CENTER = -28000196 OBJECT_-28000196_FRAME = 'JUICE_ROI_GAN_6_1_07' TKFRAME_-280001196_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001196_SPEC = 'ANGLES' TKFRAME_-280001196_UNITS = 'DEGREES' TKFRAME_-280001196_AXES = ( 3, 2, 3 ) TKFRAME_-280001196_ANGLES = ( -11.5000000000000, -114.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_1_08 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_1_08 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2535083294765E+04 Y (km): 0.4470035832103E+03 Z (km): 0.5471611967251E+03 and planetodetic coordinates Longitude (deg): 170.0000000000000 Latitude (deg): 12.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_1_08 = -280001197 FRAME_-280001197_NAME = 'JUICE_ROI_GAN_6_1_08' FRAME_-280001197_CLASS = 4 FRAME_-280001197_CLASS_ID = -280001197 FRAME_-280001197_CENTER = -28000197 OBJECT_-28000197_FRAME = 'JUICE_ROI_GAN_6_1_08' TKFRAME_-280001197_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001197_SPEC = 'ANGLES' TKFRAME_-280001197_UNITS = 'DEGREES' TKFRAME_-280001197_AXES = ( 3, 2, 3 ) TKFRAME_-280001197_ANGLES = ( -170.0000000000000, -78.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_2_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_2_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.3371946113837E+03 Y (km): 0.2561247356206E+04 Z (km): -0.5021520331325E+03 and planetodetic coordinates Longitude (deg): 97.5000000000000 Latitude (deg): -11.0000000000000 Altitude (km): 0.4999999999994E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_2_01 = -280001198 FRAME_-280001198_NAME = 'JUICE_ROI_GAN_6_2_01' FRAME_-280001198_CLASS = 4 FRAME_-280001198_CLASS_ID = -280001198 FRAME_-280001198_CENTER = -28000198 OBJECT_-28000198_FRAME = 'JUICE_ROI_GAN_6_2_01' TKFRAME_-280001198_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001198_SPEC = 'ANGLES' TKFRAME_-280001198_UNITS = 'DEGREES' TKFRAME_-280001198_AXES = ( 3, 2, 3 ) TKFRAME_-280001198_ANGLES = ( -97.5000000000000, -101.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_2_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_2_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2187307681514E+04 Y (km): 0.1019958322631E+04 Z (km): 0.1049387924691E+04 and planetodetic coordinates Longitude (deg): 155.0000000000000 Latitude (deg): 23.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_2_02 = -280001199 FRAME_-280001199_NAME = 'JUICE_ROI_GAN_6_2_02' FRAME_-280001199_CLASS = 4 FRAME_-280001199_CLASS_ID = -280001199 FRAME_-280001199_CENTER = -28000199 OBJECT_-28000199_FRAME = 'JUICE_ROI_GAN_6_2_02' TKFRAME_-280001199_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001199_SPEC = 'ANGLES' TKFRAME_-280001199_UNITS = 'DEGREES' TKFRAME_-280001199_AXES = ( 3, 2, 3 ) TKFRAME_-280001199_ANGLES = ( -155.0000000000000, -66.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_2_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_2_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2145400123045E+04 Y (km): 0.1289086445995E+04 Z (km): -0.8132400240965E+03 and planetodetic coordinates Longitude (deg): 149.0000000000000 Latitude (deg): -18.0000000000000 Altitude (km): 0.4999999999991E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_2_03 = -280001200 FRAME_-280001200_NAME = 'JUICE_ROI_GAN_6_2_03' FRAME_-280001200_CLASS = 4 FRAME_-280001200_CLASS_ID = -280001200 FRAME_-280001200_CENTER = -28000200 OBJECT_-28000200_FRAME = 'JUICE_ROI_GAN_6_2_03' TKFRAME_-280001200_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001200_SPEC = 'ANGLES' TKFRAME_-280001200_UNITS = 'DEGREES' TKFRAME_-280001200_AXES = ( 3, 2, 3 ) TKFRAME_-280001200_ANGLES = ( -149.0000000000000, -108.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_2_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_2_04 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2414407460315E+04 Y (km): -0.6019793901300E+03 Z (km): -0.8567977120849E+03 and planetodetic coordinates Longitude (deg): -14.0000000000000 Latitude (deg): -19.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_2_04 = -280001201 FRAME_-280001201_NAME = 'JUICE_ROI_GAN_6_2_04' FRAME_-280001201_CLASS = 4 FRAME_-280001201_CLASS_ID = -280001201 FRAME_-280001201_CENTER = -28000201 OBJECT_-28000201_FRAME = 'JUICE_ROI_GAN_6_2_04' TKFRAME_-280001201_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001201_SPEC = 'ANGLES' TKFRAME_-280001201_UNITS = 'DEGREES' TKFRAME_-280001201_AXES = ( 3, 2, 3 ) TKFRAME_-280001201_ANGLES = ( -346.0000000000000, -109.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_2_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_2_05 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2463512997174E+04 Y (km): 0.5461476828249E+03 Z (km): -0.7474431826573E+03 and planetodetic coordinates Longitude (deg): 12.5000000000000 Latitude (deg): -16.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_2_05 = -280001202 FRAME_-280001202_NAME = 'JUICE_ROI_GAN_6_2_05' FRAME_-280001202_CLASS = 4 FRAME_-280001202_CLASS_ID = -280001202 FRAME_-280001202_CENTER = -28000202 OBJECT_-28000202_FRAME = 'JUICE_ROI_GAN_6_2_05' TKFRAME_-280001202_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001202_SPEC = 'ANGLES' TKFRAME_-280001202_UNITS = 'DEGREES' TKFRAME_-280001202_AXES = ( 3, 2, 3 ) TKFRAME_-280001202_ANGLES = ( -12.5000000000000, -106.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_01 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_01 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1410543165896E+04 Y (km): -0.1539337748067E+04 Z (km): -0.1602077452722E+04 and planetodetic coordinates Longitude (deg): -132.5000000000000 Latitude (deg): -37.5000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_01 = -280001203 FRAME_-280001203_NAME = 'JUICE_ROI_GAN_6_3_01' FRAME_-280001203_CLASS = 4 FRAME_-280001203_CLASS_ID = -280001203 FRAME_-280001203_CENTER = -28000203 OBJECT_-28000203_FRAME = 'JUICE_ROI_GAN_6_3_01' TKFRAME_-280001203_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001203_SPEC = 'ANGLES' TKFRAME_-280001203_UNITS = 'DEGREES' TKFRAME_-280001203_AXES = ( 3, 2, 3 ) TKFRAME_-280001203_ANGLES = ( -227.5000000000000, -127.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_02 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_02 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2255127588326E+04 Y (km): -0.1328371667296E+04 Z (km): -0.2750875567815E+03 and planetodetic coordinates Longitude (deg): -149.5000000000000 Latitude (deg): -6.0000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_02 = -280001204 FRAME_-280001204_NAME = 'JUICE_ROI_GAN_6_3_02' FRAME_-280001204_CLASS = 4 FRAME_-280001204_CLASS_ID = -280001204 FRAME_-280001204_CENTER = -28000204 OBJECT_-28000204_FRAME = 'JUICE_ROI_GAN_6_3_02' TKFRAME_-280001204_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001204_SPEC = 'ANGLES' TKFRAME_-280001204_UNITS = 'DEGREES' TKFRAME_-280001204_AXES = ( 3, 2, 3 ) TKFRAME_-280001204_ANGLES = ( -210.5000000000000, -96.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_03 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_03 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2572400286441E+04 Y (km): -0.3158510396371E+03 Z (km): 0.4569899091661E+03 and planetodetic coordinates Longitude (deg): -173.0000000000000 Latitude (deg): 10.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_03 = -280001205 FRAME_-280001205_NAME = 'JUICE_ROI_GAN_6_3_03' FRAME_-280001205_CLASS = 4 FRAME_-280001205_CLASS_ID = -280001205 FRAME_-280001205_CENTER = -28000205 OBJECT_-28000205_FRAME = 'JUICE_ROI_GAN_6_3_03' TKFRAME_-280001205_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001205_SPEC = 'ANGLES' TKFRAME_-280001205_UNITS = 'DEGREES' TKFRAME_-280001205_AXES = ( 3, 2, 3 ) TKFRAME_-280001205_ANGLES = ( -187.0000000000000, -80.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_04 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_04 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1892798226300E+04 Y (km): 0.1827854000113E+04 Z (km): -0.4592949802100E+02 and planetodetic coordinates Longitude (deg): 44.0000000000000 Latitude (deg): -1.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_04 = -280001206 FRAME_-280001206_NAME = 'JUICE_ROI_GAN_6_3_04' FRAME_-280001206_CLASS = 4 FRAME_-280001206_CLASS_ID = -280001206 FRAME_-280001206_CENTER = -28000206 OBJECT_-28000206_FRAME = 'JUICE_ROI_GAN_6_3_04' TKFRAME_-280001206_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001206_SPEC = 'ANGLES' TKFRAME_-280001206_UNITS = 'DEGREES' TKFRAME_-280001206_AXES = ( 3, 2, 3 ) TKFRAME_-280001206_ANGLES = ( -44.0000000000000, -91.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_05 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_05 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2474689951320E+04 Y (km): -0.2601003948531E+03 Z (km): -0.8567977120849E+03 and planetodetic coordinates Longitude (deg): -174.0000000000000 Latitude (deg): -19.0000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_05 = -280001207 FRAME_-280001207_NAME = 'JUICE_ROI_GAN_6_3_05' FRAME_-280001207_CLASS = 4 FRAME_-280001207_CLASS_ID = -280001207 FRAME_-280001207_CENTER = -28000207 OBJECT_-28000207_FRAME = 'JUICE_ROI_GAN_6_3_05' TKFRAME_-280001207_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001207_SPEC = 'ANGLES' TKFRAME_-280001207_UNITS = 'DEGREES' TKFRAME_-280001207_AXES = ( 3, 2, 3 ) TKFRAME_-280001207_ANGLES = ( -186.0000000000000, -109.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_06 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_06 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.7011232221613E+03 Y (km): -0.2528168664401E+04 Z (km): 0.2064808022270E+03 and planetodetic coordinates Longitude (deg): -74.5000000000000 Latitude (deg): 4.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_06 = -280001208 FRAME_-280001208_NAME = 'JUICE_ROI_GAN_6_3_06' FRAME_-280001208_CLASS = 4 FRAME_-280001208_CLASS_ID = -280001208 FRAME_-280001208_CENTER = -28000208 OBJECT_-28000208_FRAME = 'JUICE_ROI_GAN_6_3_06' TKFRAME_-280001208_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001208_SPEC = 'ANGLES' TKFRAME_-280001208_UNITS = 'DEGREES' TKFRAME_-280001208_AXES = ( 3, 2, 3 ) TKFRAME_-280001208_ANGLES = ( -285.5000000000000, -85.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_07 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_07 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1478679990681E+04 Y (km): -0.1858955523250E+04 Z (km): -0.1132976053470E+04 and planetodetic coordinates Longitude (deg): -51.5000000000000 Latitude (deg): -25.5000000000000 Altitude (km): 0.4999999999997E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_07 = -280001209 FRAME_-280001209_NAME = 'JUICE_ROI_GAN_6_3_07' FRAME_-280001209_CLASS = 4 FRAME_-280001209_CLASS_ID = -280001209 FRAME_-280001209_CENTER = -28000209 OBJECT_-28000209_FRAME = 'JUICE_ROI_GAN_6_3_07' TKFRAME_-280001209_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001209_SPEC = 'ANGLES' TKFRAME_-280001209_UNITS = 'DEGREES' TKFRAME_-280001209_AXES = ( 3, 2, 3 ) TKFRAME_-280001209_ANGLES = ( -308.5000000000000, -115.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_08 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_08 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1099987873452E+04 Y (km): -0.2358931607093E+04 Z (km): -0.3889900272698E+03 and planetodetic coordinates Longitude (deg): -65.0000000000000 Latitude (deg): -8.5000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_08 = -280001210 FRAME_-280001210_NAME = 'JUICE_ROI_GAN_6_3_08' FRAME_-280001210_CLASS = 4 FRAME_-280001210_CLASS_ID = -280001210 FRAME_-280001210_CENTER = -28000210 OBJECT_-28000210_FRAME = 'JUICE_ROI_GAN_6_3_08' TKFRAME_-280001210_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001210_SPEC = 'ANGLES' TKFRAME_-280001210_UNITS = 'DEGREES' TKFRAME_-280001210_AXES = ( 3, 2, 3 ) TKFRAME_-280001210_ANGLES = ( -294.9999999999999, -98.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_09 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_09 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1191357969543E+04 Y (km): 0.1471204569004E+04 Z (km): 0.1828132433537E+04 and planetodetic coordinates Longitude (deg): 51.0000000000000 Latitude (deg): 44.0000000000000 Altitude (km): 0.4999999999998E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_09 = -280001211 FRAME_-280001211_NAME = 'JUICE_ROI_GAN_6_3_09' FRAME_-280001211_CLASS = 4 FRAME_-280001211_CLASS_ID = -280001211 FRAME_-280001211_CENTER = -28000211 OBJECT_-28000211_FRAME = 'JUICE_ROI_GAN_6_3_09' TKFRAME_-280001211_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001211_SPEC = 'ANGLES' TKFRAME_-280001211_UNITS = 'DEGREES' TKFRAME_-280001211_AXES = ( 3, 2, 3 ) TKFRAME_-280001211_ANGLES = ( -51.0000000000000, -46.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_10 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_10 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1705293844319E+04 Y (km): 0.2700920111214E+03 Z (km): 0.1986169202272E+04 and planetodetic coordinates Longitude (deg): 171.0000000000000 Latitude (deg): 49.0000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_10 = -280001212 FRAME_-280001212_NAME = 'JUICE_ROI_GAN_6_3_10' FRAME_-280001212_CLASS = 4 FRAME_-280001212_CLASS_ID = -280001212 FRAME_-280001212_CENTER = -28000212 OBJECT_-28000212_FRAME = 'JUICE_ROI_GAN_6_3_10' TKFRAME_-280001212_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001212_SPEC = 'ANGLES' TKFRAME_-280001212_UNITS = 'DEGREES' TKFRAME_-280001212_AXES = ( 3, 2, 3 ) TKFRAME_-280001212_ANGLES = ( -171.0000000000000, -41.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_11 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_11 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1363295648354E+04 Y (km): -0.1794812770559E+03 Z (km): 0.2243893120531E+04 and planetodetic coordinates Longitude (deg): -172.5000000000000 Latitude (deg): 58.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_11 = -280001213 FRAME_-280001213_NAME = 'JUICE_ROI_GAN_6_3_11' FRAME_-280001213_CLASS = 4 FRAME_-280001213_CLASS_ID = -280001213 FRAME_-280001213_CENTER = -28000213 OBJECT_-28000213_FRAME = 'JUICE_ROI_GAN_6_3_11' TKFRAME_-280001213_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001213_SPEC = 'ANGLES' TKFRAME_-280001213_UNITS = 'DEGREES' TKFRAME_-280001213_AXES = ( 3, 2, 3 ) TKFRAME_-280001213_ANGLES = ( -187.5000000000000, -31.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_12 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_12 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2516387217104E+04 Y (km): -0.1869998724422E+03 Z (km): -0.7474431826573E+03 and planetodetic coordinates Longitude (deg): -175.7500000000000 Latitude (deg): -16.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_12 = -280001214 FRAME_-280001214_NAME = 'JUICE_ROI_GAN_6_3_12' FRAME_-280001214_CLASS = 4 FRAME_-280001214_CLASS_ID = -280001214 FRAME_-280001214_CENTER = -28000214 OBJECT_-28000214_FRAME = 'JUICE_ROI_GAN_6_3_12' TKFRAME_-280001214_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001214_SPEC = 'ANGLES' TKFRAME_-280001214_UNITS = 'DEGREES' TKFRAME_-280001214_AXES = ( 3, 2, 3 ) TKFRAME_-280001214_ANGLES = ( -184.2500000000000, -106.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_6_3_13 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_6_3_13 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1458750536458E+04 Y (km): 0.1181272892838E+04 Z (km): 0.1844582910858E+04 and planetodetic coordinates Longitude (deg): 39.0000000000000 Latitude (deg): 44.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_6_3_13 = -280001215 FRAME_-280001215_NAME = 'JUICE_ROI_GAN_6_3_13' FRAME_-280001215_CLASS = 4 FRAME_-280001215_CLASS_ID = -280001215 FRAME_-280001215_CENTER = -28000215 OBJECT_-28000215_FRAME = 'JUICE_ROI_GAN_6_3_13' TKFRAME_-280001215_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001215_SPEC = 'ANGLES' TKFRAME_-280001215_UNITS = 'DEGREES' TKFRAME_-280001215_AXES = ( 3, 2, 3 ) TKFRAME_-280001215_ANGLES = ( -39.0000000000000, -45.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_7_1_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_7_1_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1817329261539E+04 Y (km): -0.1498090635297E+04 Z (km): -0.1174258784761E+04 and planetodetic coordinates Longitude (deg): -140.5000000000000 Latitude (deg): -26.5000000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_7_1_00 = -280001216 FRAME_-280001216_NAME = 'JUICE_ROI_GAN_7_1_00' FRAME_-280001216_CLASS = 4 FRAME_-280001216_CLASS_ID = -280001216 FRAME_-280001216_CENTER = -28000216 OBJECT_-28000216_FRAME = 'JUICE_ROI_GAN_7_1_00' TKFRAME_-280001216_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001216_SPEC = 'ANGLES' TKFRAME_-280001216_UNITS = 'DEGREES' TKFRAME_-280001216_AXES = ( 3, 2, 3 ) TKFRAME_-280001216_ANGLES = ( -219.5000000000000, -116.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_7_2_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_7_2_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2284763211898E+04 Y (km): -0.5274791498812E+03 Z (km): 0.1194766798165E+04 and planetodetic coordinates Longitude (deg): -13.0000000000000 Latitude (deg): 27.0000000000000 Altitude (km): 0.4999999999993E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_7_2_00 = -280001217 FRAME_-280001217_NAME = 'JUICE_ROI_GAN_7_2_00' FRAME_-280001217_CLASS = 4 FRAME_-280001217_CLASS_ID = -280001217 FRAME_-280001217_CENTER = -28000217 OBJECT_-28000217_FRAME = 'JUICE_ROI_GAN_7_2_00' TKFRAME_-280001217_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001217_SPEC = 'ANGLES' TKFRAME_-280001217_UNITS = 'DEGREES' TKFRAME_-280001217_AXES = ( 3, 2, 3 ) TKFRAME_-280001217_ANGLES = ( -347.0000000000000, -63.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_7_3_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_7_3_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.1882644146401E+04 Y (km): -0.4001683666073E+03 Z (km): 0.1794815084176E+04 and planetodetic coordinates Longitude (deg): -12.0000000000000 Latitude (deg): 43.0000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_7_3_00 = -280001218 FRAME_-280001218_NAME = 'JUICE_ROI_GAN_7_3_00' FRAME_-280001218_CLASS = 4 FRAME_-280001218_CLASS_ID = -280001218 FRAME_-280001218_CENTER = -28000218 OBJECT_-28000218_FRAME = 'JUICE_ROI_GAN_7_3_00' TKFRAME_-280001218_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001218_SPEC = 'ANGLES' TKFRAME_-280001218_UNITS = 'DEGREES' TKFRAME_-280001218_AXES = ( 3, 2, 3 ) TKFRAME_-280001218_ANGLES = ( -348.0000000000000, -47.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_7_4_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_7_4_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2593204012095E+04 Y (km): -0.3506149384692E+03 Z (km): -0.2796551565356E+03 and planetodetic coordinates Longitude (deg): -172.3000000000000 Latitude (deg): -6.1000000000000 Altitude (km): 0.5000000000001E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_7_4_00 = -280001219 FRAME_-280001219_NAME = 'JUICE_ROI_GAN_7_4_00' FRAME_-280001219_CLASS = 4 FRAME_-280001219_CLASS_ID = -280001219 FRAME_-280001219_CENTER = -28000219 OBJECT_-28000219_FRAME = 'JUICE_ROI_GAN_7_4_00' TKFRAME_-280001219_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001219_SPEC = 'ANGLES' TKFRAME_-280001219_UNITS = 'DEGREES' TKFRAME_-280001219_AXES = ( 3, 2, 3 ) TKFRAME_-280001219_ANGLES = ( -187.7000000000000, -96.1000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_7_5_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_7_5_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2233638796701E+04 Y (km): 0.1187646815131E+04 Z (km): -0.7253948293036E+03 and planetodetic coordinates Longitude (deg): 28.0000000000000 Latitude (deg): -16.0000000000000 Altitude (km): 0.5000000000005E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_7_5_00 = -280001220 FRAME_-280001220_NAME = 'JUICE_ROI_GAN_7_5_00' FRAME_-280001220_CLASS = 4 FRAME_-280001220_CLASS_ID = -280001220 FRAME_-280001220_CENTER = -28000220 OBJECT_-28000220_FRAME = 'JUICE_ROI_GAN_7_5_00' TKFRAME_-280001220_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001220_SPEC = 'ANGLES' TKFRAME_-280001220_UNITS = 'DEGREES' TKFRAME_-280001220_AXES = ( 3, 2, 3 ) TKFRAME_-280001220_ANGLES = ( -28.0000000000000, -106.0000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_7_6_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_7_6_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.8995731683453E+03 Y (km): 0.2471556967176E+04 Z (km): -0.8954977831655E+02 and planetodetic coordinates Longitude (deg): 110.0000000000000 Latitude (deg): -1.9500000000000 Altitude (km): 0.5000000000003E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_7_6_00 = -280001221 FRAME_-280001221_NAME = 'JUICE_ROI_GAN_7_6_00' FRAME_-280001221_CLASS = 4 FRAME_-280001221_CLASS_ID = -280001221 FRAME_-280001221_CENTER = -28000221 OBJECT_-28000221_FRAME = 'JUICE_ROI_GAN_7_6_00' TKFRAME_-280001221_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001221_SPEC = 'ANGLES' TKFRAME_-280001221_UNITS = 'DEGREES' TKFRAME_-280001221_AXES = ( 3, 2, 3 ) TKFRAME_-280001221_ANGLES = ( -110.0000000000000, -91.9500000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_7_7_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_7_7_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.1879801641309E+04 Y (km): 0.5926991808376E+03 Z (km): 0.1743817180889E+04 and planetodetic coordinates Longitude (deg): 162.5000000000000 Latitude (deg): 41.5000000000000 Altitude (km): 0.5000000000004E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_7_7_00 = -280001222 FRAME_-280001222_NAME = 'JUICE_ROI_GAN_7_7_00' FRAME_-280001222_CLASS = 4 FRAME_-280001222_CLASS_ID = -280001222 FRAME_-280001222_CENTER = -28000222 OBJECT_-28000222_FRAME = 'JUICE_ROI_GAN_7_7_00' TKFRAME_-280001222_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001222_SPEC = 'ANGLES' TKFRAME_-280001222_UNITS = 'DEGREES' TKFRAME_-280001222_AXES = ( 3, 2, 3 ) TKFRAME_-280001222_ANGLES = ( -162.5000000000000, -48.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_7_8_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_7_8_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): -0.2016725609216E+04 Y (km): -0.5403799983446E+03 Z (km): 0.1602077452722E+04 and planetodetic coordinates Longitude (deg): -165.0000000000000 Latitude (deg): 37.5000000000000 Altitude (km): 0.4999999999999E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_7_8_00 = -280001223 FRAME_-280001223_NAME = 'JUICE_ROI_GAN_7_8_00' FRAME_-280001223_CLASS = 4 FRAME_-280001223_CLASS_ID = -280001223 FRAME_-280001223_CENTER = -28000223 OBJECT_-28000223_FRAME = 'JUICE_ROI_GAN_7_8_00' TKFRAME_-280001223_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001223_SPEC = 'ANGLES' TKFRAME_-280001223_UNITS = 'DEGREES' TKFRAME_-280001223_AXES = ( 3, 2, 3 ) TKFRAME_-280001223_ANGLES = ( -195.0000000000000, -52.5000000000000, 270.0000000000000 ) \begintext Topocentric frame JUICE_ROI_GAN_7_9_00 The Z axis of this frame points toward the zenith. The Y axis of this frame points North. Topocentric frame JUICE_ROI_GAN_7_9_00 is centered at the site JUICE_ROI_G which has Cartesian coordinates X (km): 0.2162820560349E+04 Y (km): 0.1404552094614E+04 Z (km): -0.5246765930057E+03 and planetodetic coordinates Longitude (deg): 33.0000000000000 Latitude (deg): -11.5000000000000 Altitude (km): 0.5000000000000E+00 These planetodetic coordinates are expressed relative to a reference spheroid having the dimensions Equatorial radius (km): 2.6312000000000E+03 Polar radius (km): 2.6312000000000E+03 All of the above coordinates are relative to the frame IAU_GANYMEDE. \begindata FRAME_JUICE_ROI_GAN_7_9_00 = -280001224 FRAME_-280001224_NAME = 'JUICE_ROI_GAN_7_9_00' FRAME_-280001224_CLASS = 4 FRAME_-280001224_CLASS_ID = -280001224 FRAME_-280001224_CENTER = -28000224 OBJECT_-28000224_FRAME = 'JUICE_ROI_GAN_7_9_00' TKFRAME_-280001224_RELATIVE = 'IAU_GANYMEDE' TKFRAME_-280001224_SPEC = 'ANGLES' TKFRAME_-280001224_UNITS = 'DEGREES' TKFRAME_-280001224_AXES = ( 3, 2, 3 ) TKFRAME_-280001224_ANGLES = ( -33.0000000000000, -101.5000000000000, 270.0000000000000 ) \begintext Definitions file pinpoint.defs -------------------------------------------------------------------------------- begindata SITES = ('JUICE_ROI_CAL_2_1_00', 'JUICE_ROI_CAL_2_2_00', 'JUICE_ROI_CAL_2_3_00', 'JUICE_ROI_CAL_2_4_00', 'JUICE_ROI_CAL_2_5_00', 'JUICE_ROI_CAL_2_6_00', 'JUICE_ROI_CAL_2_7_00', 'JUICE_ROI_CAL_3_1_00', 'JUICE_ROI_CAL_3_2_00', 'JUICE_ROI_CAL_3_3_00', 'JUICE_ROI_CAL_3_4_00', 'JUICE_ROI_CAL_3_5_00', 'JUICE_ROI_CAL_4_1_01', 'JUICE_ROI_CAL_4_1_02', 'JUICE_ROI_CAL_4_1_03', 'JUICE_ROI_CAL_4_1_04', 'JUICE_ROI_CAL_4_2_01', 'JUICE_ROI_CAL_4_2_02', 'JUICE_ROI_CAL_4_2_03', 'JUICE_ROI_CAL_4_2_04', 'JUICE_ROI_CAL_4_2_05', 'JUICE_ROI_CAL_4_3_01', 'JUICE_ROI_CAL_4_3_02', 'JUICE_ROI_CAL_4_3_03', 'JUICE_ROI_CAL_4_3_04', 'JUICE_ROI_CAL_4_3_05', 'JUICE_ROI_CAL_4_3_06', 'JUICE_ROI_CAL_4_3_07', 'JUICE_ROI_CAL_4_3_08', 'JUICE_ROI_CAL_4_3_09', 'JUICE_ROI_CAL_4_3_10', 'JUICE_ROI_CAL_4_3_11', 'JUICE_ROI_CAL_4_3_12', 'JUICE_ROI_CAL_4_4_01', 'JUICE_ROI_CAL_4_4_02', 'JUICE_ROI_CAL_4_4_03', 'JUICE_ROI_CAL_4_4_04', 'JUICE_ROI_CAL_4_5_01', 'JUICE_ROI_CAL_4_5_02', 'JUICE_ROI_CAL_4_5_03', 'JUICE_ROI_CAL_4_6_01', 'JUICE_ROI_CAL_4_6_02', 'JUICE_ROI_CAL_4_6_03', 'JUICE_ROI_CAL_4_7_01', 'JUICE_ROI_CAL_4_7_02', 'JUICE_ROI_CAL_4_7_03', 'JUICE_ROI_CAL_4_7_04', 'JUICE_ROI_CAL_4_7_05', 'JUICE_ROI_CAL_4_7_06', 'JUICE_ROI_CAL_5_1_00', 'JUICE_ROI_CAL_5_2_00', 'JUICE_ROI_CAL_5_3_00', 'JUICE_ROI_CAL_5_4_00', 'JUICE_ROI_CAL_5_5_00', 'JUICE_ROI_CAL_5_6_00', 'JUICE_ROI_CAL_5_7_00', 'JUICE_ROI_CAL_5_8_00', 'JUICE_ROI_CAL_5_9_00', 'JUICE_ROI_CAL_5_10_00', 'JUICE_ROI_CAL_5_11_00', 'JUICE_ROI_CAL_5_12_00', 'JUICE_ROI_CAL_5_13_00', 'JUICE_ROI_CAL_5_14_00', 'JUICE_ROI_CAL_5_15_00', 'JUICE_ROI_CAL_5_16_00', 'JUICE_ROI_CAL_5_17_00', 'JUICE_ROI_CAL_5_18_00', 'JUICE_ROI_CAL_5_19_00', 'JUICE_ROI_CAL_5_20_00', 'JUICE_ROI_CAL_5_21_00', 'JUICE_ROI_CAL_6_1_01', 'JUICE_ROI_CAL_6_1_02', 'JUICE_ROI_CAL_6_1_03', 'JUICE_ROI_CAL_6_1_04', 'JUICE_ROI_CAL_6_1_05', 'JUICE_ROI_CAL_6_1_06', 'JUICE_ROI_CAL_6_1_07', 'JUICE_ROI_CAL_6_1_08', 'JUICE_ROI_CAL_6_1_09', 'JUICE_ROI_CAL_7_1_00', 'JUICE_ROI_CAL_7_2_00', 'JUICE_ROI_CAL_7_3_00', 'JUICE_ROI_CAL_7_4_00', 'JUICE_ROI_CAL_7_5_00', 'JUICE_ROI_CAL_7_6_00', 'JUICE_ROI_CAL_7_7_00', 'JUICE_ROI_CAL_7_8_00', 'JUICE_ROI_CAL_7_9_00', 'JUICE_ROI_GAN_1_1_00', 'JUICE_ROI_GAN_1_2_00', 'JUICE_ROI_GAN_1_3_00', 'JUICE_ROI_GAN_1_4_00', 'JUICE_ROI_GAN_1_5_00', 'JUICE_ROI_GAN_1_6_00', 'JUICE_ROI_GAN_1_7_00', 'JUICE_ROI_GAN_1_8_00', 'JUICE_ROI_GAN_1_9_00', 'JUICE_ROI_GAN_1_10_00', 'JUICE_ROI_GAN_2_1_00', 'JUICE_ROI_GAN_2_2_00', 'JUICE_ROI_GAN_2_3_00', 'JUICE_ROI_GAN_2_4_00', 'JUICE_ROI_GAN_2_5_00', 'JUICE_ROI_GAN_2_6_00', 'JUICE_ROI_GAN_2_7_00', 'JUICE_ROI_GAN_2_8_00', 'JUICE_ROI_GAN_2_9_00', 'JUICE_ROI_GAN_2_10_00', 'JUICE_ROI_GAN_2_11_00', 'JUICE_ROI_GAN_2_12_00', 'JUICE_ROI_GAN_3_1_00', 'JUICE_ROI_GAN_3_2_00', 'JUICE_ROI_GAN_3_3_00', 'JUICE_ROI_GAN_3_4_00', 'JUICE_ROI_GAN_3_5_00', 'JUICE_ROI_GAN_3_6_00', 'JUICE_ROI_GAN_3_7_00', 'JUICE_ROI_GAN_3_8_00', 'JUICE_ROI_GAN_3_9_00', 'JUICE_ROI_GAN_3_10_00', 'JUICE_ROI_GAN_3_11_00', 'JUICE_ROI_GAN_3_12_00', 'JUICE_ROI_GAN_3_13_00', 'JUICE_ROI_GAN_3_14_00', 'JUICE_ROI_GAN_4_1_01', 'JUICE_ROI_GAN_4_1_02', 'JUICE_ROI_GAN_4_1_03', 'JUICE_ROI_GAN_4_1_04', 'JUICE_ROI_GAN_4_2_01', 'JUICE_ROI_GAN_4_2_02', 'JUICE_ROI_GAN_4_2_03', 'JUICE_ROI_GAN_4_2_04', 'JUICE_ROI_GAN_4_2_05', 'JUICE_ROI_GAN_4_2_06', 'JUICE_ROI_GAN_4_2_07', 'JUICE_ROI_GAN_4_2_08', 'JUICE_ROI_GAN_4_3_01', 'JUICE_ROI_GAN_4_3_02', 'JUICE_ROI_GAN_4_3_03', 'JUICE_ROI_GAN_4_3_04', 'JUICE_ROI_GAN_4_3_05', 'JUICE_ROI_GAN_4_3_06', 'JUICE_ROI_GAN_4_3_07', 'JUICE_ROI_GAN_4_3_08', 'JUICE_ROI_GAN_4_3_09', 'JUICE_ROI_GAN_4_4_01', 'JUICE_ROI_GAN_4_4_02', 'JUICE_ROI_GAN_4_4_03', 'JUICE_ROI_GAN_4_4_04', 'JUICE_ROI_GAN_4_4_05', 'JUICE_ROI_GAN_4_4_06', 'JUICE_ROI_GAN_4_4_07', 'JUICE_ROI_GAN_4_4_08', 'JUICE_ROI_GAN_4_4_09', 'JUICE_ROI_GAN_4_4_10', 'JUICE_ROI_GAN_4_4_11', 'JUICE_ROI_GAN_4_5_01', 'JUICE_ROI_GAN_4_5_02', 'JUICE_ROI_GAN_4_5_03', 'JUICE_ROI_GAN_4_5_04', 'JUICE_ROI_GAN_4_5_05', 'JUICE_ROI_GAN_4_5_06', 'JUICE_ROI_GAN_4_5_07', 'JUICE_ROI_GAN_4_5_08', 'JUICE_ROI_GAN_4_5_09', 'JUICE_ROI_GAN_4_5_10', 'JUICE_ROI_GAN_4_5_11', 'JUICE_ROI_GAN_4_5_12', 'JUICE_ROI_GAN_4_5_13', 'JUICE_ROI_GAN_4_5_14', 'JUICE_ROI_GAN_4_6_01', 'JUICE_ROI_GAN_4_6_02', 'JUICE_ROI_GAN_4_6_03', 'JUICE_ROI_GAN_4_7_01', 'JUICE_ROI_GAN_4_7_02', 'JUICE_ROI_GAN_4_7_03', 'JUICE_ROI_GAN_4_7_04', 'JUICE_ROI_GAN_5_1_00', 'JUICE_ROI_GAN_5_2_00', 'JUICE_ROI_GAN_5_3_00', 'JUICE_ROI_GAN_5_4_00', 'JUICE_ROI_GAN_5_5_00', 'JUICE_ROI_GAN_5_6_00', 'JUICE_ROI_GAN_5_7_00', 'JUICE_ROI_GAN_5_8_00', 'JUICE_ROI_GAN_5_9_00', 'JUICE_ROI_GAN_5_10_00', 'JUICE_ROI_GAN_5_11_00', 'JUICE_ROI_GAN_5_12_00', 'JUICE_ROI_GAN_6_1_01', 'JUICE_ROI_GAN_6_1_02', 'JUICE_ROI_GAN_6_1_03', 'JUICE_ROI_GAN_6_1_04', 'JUICE_ROI_GAN_6_1_05', 'JUICE_ROI_GAN_6_1_06', 'JUICE_ROI_GAN_6_1_07', 'JUICE_ROI_GAN_6_1_08', 'JUICE_ROI_GAN_6_2_01', 'JUICE_ROI_GAN_6_2_02', 'JUICE_ROI_GAN_6_2_03', 'JUICE_ROI_GAN_6_2_04', 'JUICE_ROI_GAN_6_2_05', 'JUICE_ROI_GAN_6_3_01', 'JUICE_ROI_GAN_6_3_02', 'JUICE_ROI_GAN_6_3_03', 'JUICE_ROI_GAN_6_3_04', 'JUICE_ROI_GAN_6_3_05', 'JUICE_ROI_GAN_6_3_06', 'JUICE_ROI_GAN_6_3_07', 'JUICE_ROI_GAN_6_3_08', 'JUICE_ROI_GAN_6_3_09', 'JUICE_ROI_GAN_6_3_10', 'JUICE_ROI_GAN_6_3_11', 'JUICE_ROI_GAN_6_3_12', 'JUICE_ROI_GAN_6_3_13', 'JUICE_ROI_GAN_7_1_00', 'JUICE_ROI_GAN_7_2_00', 'JUICE_ROI_GAN_7_3_00', 'JUICE_ROI_GAN_7_4_00', 'JUICE_ROI_GAN_7_5_00', 'JUICE_ROI_GAN_7_6_00', 'JUICE_ROI_GAN_7_7_00', 'JUICE_ROI_GAN_7_8_00', 'JUICE_ROI_GAN_7_9_00') JUICE_ROI_CAL_2_1_00_CENTER = 504 JUICE_ROI_CAL_2_1_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_2_1_00_IDCODE = -280001 JUICE_ROI_CAL_2_1_00_LATLON = ( -76.5, 269.0, 0.5 ) JUICE_ROI_CAL_2_1_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_2_1_00_UP = 'Z' JUICE_ROI_CAL_2_1_00_NORTH = 'Y' JUICE_ROI_CAL_2_1_00_TOPO_FRAME = 'JUICE_ROI_CAL_2_1_00' JUICE_ROI_CAL_2_1_00_TOPO_ID = -2800011 JUICE_ROI_CAL_2_2_00_CENTER = 504 JUICE_ROI_CAL_2_2_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_2_2_00_IDCODE = -280002 JUICE_ROI_CAL_2_2_00_LATLON = ( 69.0, 246.25, 0.5 ) JUICE_ROI_CAL_2_2_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_2_2_00_UP = 'Z' JUICE_ROI_CAL_2_2_00_NORTH = 'Y' JUICE_ROI_CAL_2_2_00_TOPO_FRAME = 'JUICE_ROI_CAL_2_2_00' JUICE_ROI_CAL_2_2_00_TOPO_ID = -2800012 JUICE_ROI_CAL_2_3_00_CENTER = 504 JUICE_ROI_CAL_2_3_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_2_3_00_IDCODE = -280003 JUICE_ROI_CAL_2_3_00_LATLON = ( 69.0, 59.5, 0.5 ) JUICE_ROI_CAL_2_3_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_2_3_00_UP = 'Z' JUICE_ROI_CAL_2_3_00_NORTH = 'Y' JUICE_ROI_CAL_2_3_00_TOPO_FRAME = 'JUICE_ROI_CAL_2_3_00' JUICE_ROI_CAL_2_3_00_TOPO_ID = -2800013 JUICE_ROI_CAL_2_4_00_CENTER = 504 JUICE_ROI_CAL_2_4_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_2_4_00_IDCODE = -280004 JUICE_ROI_CAL_2_4_00_LATLON = ( -69.0, 246.25, 0.5 ) JUICE_ROI_CAL_2_4_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_2_4_00_UP = 'Z' JUICE_ROI_CAL_2_4_00_NORTH = 'Y' JUICE_ROI_CAL_2_4_00_TOPO_FRAME = 'JUICE_ROI_CAL_2_4_00' JUICE_ROI_CAL_2_4_00_TOPO_ID = -2800014 JUICE_ROI_CAL_2_5_00_CENTER = 504 JUICE_ROI_CAL_2_5_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_2_5_00_IDCODE = -280005 JUICE_ROI_CAL_2_5_00_LATLON = ( 68.5, 333.5, 0.5 ) JUICE_ROI_CAL_2_5_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_2_5_00_UP = 'Z' JUICE_ROI_CAL_2_5_00_NORTH = 'Y' JUICE_ROI_CAL_2_5_00_TOPO_FRAME = 'JUICE_ROI_CAL_2_5_00' JUICE_ROI_CAL_2_5_00_TOPO_ID = -2800015 JUICE_ROI_CAL_2_6_00_CENTER = 504 JUICE_ROI_CAL_2_6_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_2_6_00_IDCODE = -280006 JUICE_ROI_CAL_2_6_00_LATLON = ( -66.0, 133.0, 0.5 ) JUICE_ROI_CAL_2_6_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_2_6_00_UP = 'Z' JUICE_ROI_CAL_2_6_00_NORTH = 'Y' JUICE_ROI_CAL_2_6_00_TOPO_FRAME = 'JUICE_ROI_CAL_2_6_00' JUICE_ROI_CAL_2_6_00_TOPO_ID = -2800016 JUICE_ROI_CAL_2_7_00_CENTER = 504 JUICE_ROI_CAL_2_7_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_2_7_00_IDCODE = -280007 JUICE_ROI_CAL_2_7_00_LATLON = ( -69.0, 59.5, 0.5 ) JUICE_ROI_CAL_2_7_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_2_7_00_UP = 'Z' JUICE_ROI_CAL_2_7_00_NORTH = 'Y' JUICE_ROI_CAL_2_7_00_TOPO_FRAME = 'JUICE_ROI_CAL_2_7_00' JUICE_ROI_CAL_2_7_00_TOPO_ID = -2800017 JUICE_ROI_CAL_3_1_00_CENTER = 504 JUICE_ROI_CAL_3_1_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_3_1_00_IDCODE = -280008 JUICE_ROI_CAL_3_1_00_LATLON = ( -38.5, 277.0, 0.5 ) JUICE_ROI_CAL_3_1_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_3_1_00_UP = 'Z' JUICE_ROI_CAL_3_1_00_NORTH = 'Y' JUICE_ROI_CAL_3_1_00_TOPO_FRAME = 'JUICE_ROI_CAL_3_1_00' JUICE_ROI_CAL_3_1_00_TOPO_ID = -2800018 JUICE_ROI_CAL_3_2_00_CENTER = 504 JUICE_ROI_CAL_3_2_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_3_2_00_IDCODE = -280009 JUICE_ROI_CAL_3_2_00_LATLON = ( -54.5, 274.5, 0.5 ) JUICE_ROI_CAL_3_2_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_3_2_00_UP = 'Z' JUICE_ROI_CAL_3_2_00_NORTH = 'Y' JUICE_ROI_CAL_3_2_00_TOPO_FRAME = 'JUICE_ROI_CAL_3_2_00' JUICE_ROI_CAL_3_2_00_TOPO_ID = -2800019 JUICE_ROI_CAL_3_3_00_CENTER = 504 JUICE_ROI_CAL_3_3_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_3_3_00_IDCODE = -2800010 JUICE_ROI_CAL_3_3_00_LATLON = ( -53.0, 286.0, 0.5 ) JUICE_ROI_CAL_3_3_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_3_3_00_UP = 'Z' JUICE_ROI_CAL_3_3_00_NORTH = 'Y' JUICE_ROI_CAL_3_3_00_TOPO_FRAME = 'JUICE_ROI_CAL_3_3_00' JUICE_ROI_CAL_3_3_00_TOPO_ID = -28000110 JUICE_ROI_CAL_3_4_00_CENTER = 504 JUICE_ROI_CAL_3_4_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_3_4_00_IDCODE = -2800011 JUICE_ROI_CAL_3_4_00_LATLON = ( -56.0, 290.5, 0.5 ) JUICE_ROI_CAL_3_4_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_3_4_00_UP = 'Z' JUICE_ROI_CAL_3_4_00_NORTH = 'Y' JUICE_ROI_CAL_3_4_00_TOPO_FRAME = 'JUICE_ROI_CAL_3_4_00' JUICE_ROI_CAL_3_4_00_TOPO_ID = -28000111 JUICE_ROI_CAL_3_5_00_CENTER = 504 JUICE_ROI_CAL_3_5_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_3_5_00_IDCODE = -2800012 JUICE_ROI_CAL_3_5_00_LATLON = ( -42.75, 290.25, 0.5 ) JUICE_ROI_CAL_3_5_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_3_5_00_UP = 'Z' JUICE_ROI_CAL_3_5_00_NORTH = 'Y' JUICE_ROI_CAL_3_5_00_TOPO_FRAME = 'JUICE_ROI_CAL_3_5_00' JUICE_ROI_CAL_3_5_00_TOPO_ID = -28000112 JUICE_ROI_CAL_4_1_01_CENTER = 504 JUICE_ROI_CAL_4_1_01_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_1_01_IDCODE = -2800013 JUICE_ROI_CAL_4_1_01_LATLON = ( 36.5, 356.0, 0.5 ) JUICE_ROI_CAL_4_1_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_1_01_UP = 'Z' JUICE_ROI_CAL_4_1_01_NORTH = 'Y' JUICE_ROI_CAL_4_1_01_TOPO_FRAME = 'JUICE_ROI_CAL_4_1_01' JUICE_ROI_CAL_4_1_01_TOPO_ID = -28000113 JUICE_ROI_CAL_4_1_02_CENTER = 504 JUICE_ROI_CAL_4_1_02_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_1_02_IDCODE = -2800014 JUICE_ROI_CAL_4_1_02_LATLON = ( 16.0, 304.0, 0.5 ) JUICE_ROI_CAL_4_1_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_1_02_UP = 'Z' JUICE_ROI_CAL_4_1_02_NORTH = 'Y' JUICE_ROI_CAL_4_1_02_TOPO_FRAME = 'JUICE_ROI_CAL_4_1_02' JUICE_ROI_CAL_4_1_02_TOPO_ID = -28000114 JUICE_ROI_CAL_4_1_03_CENTER = 504 JUICE_ROI_CAL_4_1_03_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_1_03_IDCODE = -2800015 JUICE_ROI_CAL_4_1_03_LATLON = ( 52.5, 10.0, 0.5 ) JUICE_ROI_CAL_4_1_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_1_03_UP = 'Z' JUICE_ROI_CAL_4_1_03_NORTH = 'Y' JUICE_ROI_CAL_4_1_03_TOPO_FRAME = 'JUICE_ROI_CAL_4_1_03' JUICE_ROI_CAL_4_1_03_TOPO_ID = -28000115 JUICE_ROI_CAL_4_1_04_CENTER = 504 JUICE_ROI_CAL_4_1_04_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_1_04_IDCODE = -2800016 JUICE_ROI_CAL_4_1_04_LATLON = ( 5.0, 10.0, 0.5 ) JUICE_ROI_CAL_4_1_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_1_04_UP = 'Z' JUICE_ROI_CAL_4_1_04_NORTH = 'Y' JUICE_ROI_CAL_4_1_04_TOPO_FRAME = 'JUICE_ROI_CAL_4_1_04' JUICE_ROI_CAL_4_1_04_TOPO_ID = -28000116 JUICE_ROI_CAL_4_2_01_CENTER = 504 JUICE_ROI_CAL_4_2_01_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_2_01_IDCODE = -2800017 JUICE_ROI_CAL_4_2_01_LATLON = ( 35.0, 332.5, 0.5 ) JUICE_ROI_CAL_4_2_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_2_01_UP = 'Z' JUICE_ROI_CAL_4_2_01_NORTH = 'Y' JUICE_ROI_CAL_4_2_01_TOPO_FRAME = 'JUICE_ROI_CAL_4_2_01' JUICE_ROI_CAL_4_2_01_TOPO_ID = -28000117 JUICE_ROI_CAL_4_2_02_CENTER = 504 JUICE_ROI_CAL_4_2_02_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_2_02_IDCODE = -2800018 JUICE_ROI_CAL_4_2_02_LATLON = ( -32.5, 99.5, 0.5 ) JUICE_ROI_CAL_4_2_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_2_02_UP = 'Z' JUICE_ROI_CAL_4_2_02_NORTH = 'Y' JUICE_ROI_CAL_4_2_02_TOPO_FRAME = 'JUICE_ROI_CAL_4_2_02' JUICE_ROI_CAL_4_2_02_TOPO_ID = -28000118 JUICE_ROI_CAL_4_2_03_CENTER = 504 JUICE_ROI_CAL_4_2_03_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_2_03_IDCODE = -2800019 JUICE_ROI_CAL_4_2_03_LATLON = ( -38.75, 97.5, 0.5 ) JUICE_ROI_CAL_4_2_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_2_03_UP = 'Z' JUICE_ROI_CAL_4_2_03_NORTH = 'Y' JUICE_ROI_CAL_4_2_03_TOPO_FRAME = 'JUICE_ROI_CAL_4_2_03' JUICE_ROI_CAL_4_2_03_TOPO_ID = -28000119 JUICE_ROI_CAL_4_2_04_CENTER = 504 JUICE_ROI_CAL_4_2_04_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_2_04_IDCODE = -2800020 JUICE_ROI_CAL_4_2_04_LATLON = ( 13.25, 332.5, 0.5 ) JUICE_ROI_CAL_4_2_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_2_04_UP = 'Z' JUICE_ROI_CAL_4_2_04_NORTH = 'Y' JUICE_ROI_CAL_4_2_04_TOPO_FRAME = 'JUICE_ROI_CAL_4_2_04' JUICE_ROI_CAL_4_2_04_TOPO_ID = -28000120 JUICE_ROI_CAL_4_2_05_CENTER = 504 JUICE_ROI_CAL_4_2_05_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_2_05_IDCODE = -2800021 JUICE_ROI_CAL_4_2_05_LATLON = ( -3.0, 183.5, 0.5 ) JUICE_ROI_CAL_4_2_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_2_05_UP = 'Z' JUICE_ROI_CAL_4_2_05_NORTH = 'Y' JUICE_ROI_CAL_4_2_05_TOPO_FRAME = 'JUICE_ROI_CAL_4_2_05' JUICE_ROI_CAL_4_2_05_TOPO_ID = -28000121 JUICE_ROI_CAL_4_3_01_CENTER = 504 JUICE_ROI_CAL_4_3_01_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_01_IDCODE = -2800022 JUICE_ROI_CAL_4_3_01_LATLON = ( 8.0, 196.0, 0.5 ) JUICE_ROI_CAL_4_3_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_01_UP = 'Z' JUICE_ROI_CAL_4_3_01_NORTH = 'Y' JUICE_ROI_CAL_4_3_01_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_01' JUICE_ROI_CAL_4_3_01_TOPO_ID = -28000122 JUICE_ROI_CAL_4_3_02_CENTER = 504 JUICE_ROI_CAL_4_3_02_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_02_IDCODE = -2800023 JUICE_ROI_CAL_4_3_02_LATLON = ( 16.25, 228.5, 0.5 ) JUICE_ROI_CAL_4_3_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_02_UP = 'Z' JUICE_ROI_CAL_4_3_02_NORTH = 'Y' JUICE_ROI_CAL_4_3_02_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_02' JUICE_ROI_CAL_4_3_02_TOPO_ID = -28000123 JUICE_ROI_CAL_4_3_03_CENTER = 504 JUICE_ROI_CAL_4_3_03_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_03_IDCODE = -2800024 JUICE_ROI_CAL_4_3_03_LATLON = ( 30.75, 218.25, 0.5 ) JUICE_ROI_CAL_4_3_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_03_UP = 'Z' JUICE_ROI_CAL_4_3_03_NORTH = 'Y' JUICE_ROI_CAL_4_3_03_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_03' JUICE_ROI_CAL_4_3_03_TOPO_ID = -28000124 JUICE_ROI_CAL_4_3_04_CENTER = 504 JUICE_ROI_CAL_4_3_04_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_04_IDCODE = -2800025 JUICE_ROI_CAL_4_3_04_LATLON = ( -31.0, 290.0, 0.5 ) JUICE_ROI_CAL_4_3_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_04_UP = 'Z' JUICE_ROI_CAL_4_3_04_NORTH = 'Y' JUICE_ROI_CAL_4_3_04_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_04' JUICE_ROI_CAL_4_3_04_TOPO_ID = -28000125 JUICE_ROI_CAL_4_3_05_CENTER = 504 JUICE_ROI_CAL_4_3_05_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_05_IDCODE = -2800026 JUICE_ROI_CAL_4_3_05_LATLON = ( -47.5, 297.0, 0.5 ) JUICE_ROI_CAL_4_3_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_05_UP = 'Z' JUICE_ROI_CAL_4_3_05_NORTH = 'Y' JUICE_ROI_CAL_4_3_05_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_05' JUICE_ROI_CAL_4_3_05_TOPO_ID = -28000126 JUICE_ROI_CAL_4_3_06_CENTER = 504 JUICE_ROI_CAL_4_3_06_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_06_IDCODE = -2800027 JUICE_ROI_CAL_4_3_06_LATLON = ( -15.5, 303.5, 0.5 ) JUICE_ROI_CAL_4_3_06_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_06_UP = 'Z' JUICE_ROI_CAL_4_3_06_NORTH = 'Y' JUICE_ROI_CAL_4_3_06_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_06' JUICE_ROI_CAL_4_3_06_TOPO_ID = -28000127 JUICE_ROI_CAL_4_3_07_CENTER = 504 JUICE_ROI_CAL_4_3_07_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_07_IDCODE = -2800028 JUICE_ROI_CAL_4_3_07_LATLON = ( 46.5, 16.5, 0.5 ) JUICE_ROI_CAL_4_3_07_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_07_UP = 'Z' JUICE_ROI_CAL_4_3_07_NORTH = 'Y' JUICE_ROI_CAL_4_3_07_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_07' JUICE_ROI_CAL_4_3_07_TOPO_ID = -28000128 JUICE_ROI_CAL_4_3_08_CENTER = 504 JUICE_ROI_CAL_4_3_08_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_08_IDCODE = -2800029 JUICE_ROI_CAL_4_3_08_LATLON = ( 41.5, 146.0, 0.5 ) JUICE_ROI_CAL_4_3_08_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_08_UP = 'Z' JUICE_ROI_CAL_4_3_08_NORTH = 'Y' JUICE_ROI_CAL_4_3_08_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_08' JUICE_ROI_CAL_4_3_08_TOPO_ID = -28000129 JUICE_ROI_CAL_4_3_09_CENTER = 504 JUICE_ROI_CAL_4_3_09_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_09_IDCODE = -2800030 JUICE_ROI_CAL_4_3_09_LATLON = ( -8.5, 138.5, 0.5 ) JUICE_ROI_CAL_4_3_09_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_09_UP = 'Z' JUICE_ROI_CAL_4_3_09_NORTH = 'Y' JUICE_ROI_CAL_4_3_09_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_09' JUICE_ROI_CAL_4_3_09_TOPO_ID = -28000130 JUICE_ROI_CAL_4_3_10_CENTER = 504 JUICE_ROI_CAL_4_3_10_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_10_IDCODE = -2800031 JUICE_ROI_CAL_4_3_10_LATLON = ( -3.0, 146.0, 0.5 ) JUICE_ROI_CAL_4_3_10_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_10_UP = 'Z' JUICE_ROI_CAL_4_3_10_NORTH = 'Y' JUICE_ROI_CAL_4_3_10_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_10' JUICE_ROI_CAL_4_3_10_TOPO_ID = -28000131 JUICE_ROI_CAL_4_3_11_CENTER = 504 JUICE_ROI_CAL_4_3_11_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_11_IDCODE = -2800032 JUICE_ROI_CAL_4_3_11_LATLON = ( 27.5, 275.5, 0.5 ) JUICE_ROI_CAL_4_3_11_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_11_UP = 'Z' JUICE_ROI_CAL_4_3_11_NORTH = 'Y' JUICE_ROI_CAL_4_3_11_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_11' JUICE_ROI_CAL_4_3_11_TOPO_ID = -28000132 JUICE_ROI_CAL_4_3_12_CENTER = 504 JUICE_ROI_CAL_4_3_12_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_3_12_IDCODE = -2800033 JUICE_ROI_CAL_4_3_12_LATLON = ( -7.0, 292.0, 0.5 ) JUICE_ROI_CAL_4_3_12_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_3_12_UP = 'Z' JUICE_ROI_CAL_4_3_12_NORTH = 'Y' JUICE_ROI_CAL_4_3_12_TOPO_FRAME = 'JUICE_ROI_CAL_4_3_12' JUICE_ROI_CAL_4_3_12_TOPO_ID = -28000133 JUICE_ROI_CAL_4_4_01_CENTER = 504 JUICE_ROI_CAL_4_4_01_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_4_01_IDCODE = -2800034 JUICE_ROI_CAL_4_4_01_LATLON = ( -1.0, 113.5, 0.5 ) JUICE_ROI_CAL_4_4_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_4_01_UP = 'Z' JUICE_ROI_CAL_4_4_01_NORTH = 'Y' JUICE_ROI_CAL_4_4_01_TOPO_FRAME = 'JUICE_ROI_CAL_4_4_01' JUICE_ROI_CAL_4_4_01_TOPO_ID = -28000134 JUICE_ROI_CAL_4_4_02_CENTER = 504 JUICE_ROI_CAL_4_4_02_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_4_02_IDCODE = -2800035 JUICE_ROI_CAL_4_4_02_LATLON = ( 53.75, 279.0, 0.5 ) JUICE_ROI_CAL_4_4_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_4_02_UP = 'Z' JUICE_ROI_CAL_4_4_02_NORTH = 'Y' JUICE_ROI_CAL_4_4_02_TOPO_FRAME = 'JUICE_ROI_CAL_4_4_02' JUICE_ROI_CAL_4_4_02_TOPO_ID = -28000135 JUICE_ROI_CAL_4_4_03_CENTER = 504 JUICE_ROI_CAL_4_4_03_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_4_03_IDCODE = -2800036 JUICE_ROI_CAL_4_4_03_LATLON = ( 21.0, 321.75, 0.5 ) JUICE_ROI_CAL_4_4_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_4_03_UP = 'Z' JUICE_ROI_CAL_4_4_03_NORTH = 'Y' JUICE_ROI_CAL_4_4_03_TOPO_FRAME = 'JUICE_ROI_CAL_4_4_03' JUICE_ROI_CAL_4_4_03_TOPO_ID = -28000136 JUICE_ROI_CAL_4_4_04_CENTER = 504 JUICE_ROI_CAL_4_4_04_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_4_04_IDCODE = -2800037 JUICE_ROI_CAL_4_4_04_LATLON = ( -10.0, 333.0, 0.5 ) JUICE_ROI_CAL_4_4_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_4_04_UP = 'Z' JUICE_ROI_CAL_4_4_04_NORTH = 'Y' JUICE_ROI_CAL_4_4_04_TOPO_FRAME = 'JUICE_ROI_CAL_4_4_04' JUICE_ROI_CAL_4_4_04_TOPO_ID = -28000137 JUICE_ROI_CAL_4_5_01_CENTER = 504 JUICE_ROI_CAL_4_5_01_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_5_01_IDCODE = -2800038 JUICE_ROI_CAL_4_5_01_LATLON = ( 5.5, 77.5, 0.5 ) JUICE_ROI_CAL_4_5_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_5_01_UP = 'Z' JUICE_ROI_CAL_4_5_01_NORTH = 'Y' JUICE_ROI_CAL_4_5_01_TOPO_FRAME = 'JUICE_ROI_CAL_4_5_01' JUICE_ROI_CAL_4_5_01_TOPO_ID = -28000138 JUICE_ROI_CAL_4_5_02_CENTER = 504 JUICE_ROI_CAL_4_5_02_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_5_02_IDCODE = -2800039 JUICE_ROI_CAL_4_5_02_LATLON = ( -24.5, 202.25, 0.5 ) JUICE_ROI_CAL_4_5_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_5_02_UP = 'Z' JUICE_ROI_CAL_4_5_02_NORTH = 'Y' JUICE_ROI_CAL_4_5_02_TOPO_FRAME = 'JUICE_ROI_CAL_4_5_02' JUICE_ROI_CAL_4_5_02_TOPO_ID = -28000139 JUICE_ROI_CAL_4_5_03_CENTER = 504 JUICE_ROI_CAL_4_5_03_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_5_03_IDCODE = -2800040 JUICE_ROI_CAL_4_5_03_LATLON = ( -32.25, 230.25, 0.5 ) JUICE_ROI_CAL_4_5_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_5_03_UP = 'Z' JUICE_ROI_CAL_4_5_03_NORTH = 'Y' JUICE_ROI_CAL_4_5_03_TOPO_FRAME = 'JUICE_ROI_CAL_4_5_03' JUICE_ROI_CAL_4_5_03_TOPO_ID = -28000140 JUICE_ROI_CAL_4_6_01_CENTER = 504 JUICE_ROI_CAL_4_6_01_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_6_01_IDCODE = -2800041 JUICE_ROI_CAL_4_6_01_LATLON = ( 31.0, 219.0, 0.5 ) JUICE_ROI_CAL_4_6_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_6_01_UP = 'Z' JUICE_ROI_CAL_4_6_01_NORTH = 'Y' JUICE_ROI_CAL_4_6_01_TOPO_FRAME = 'JUICE_ROI_CAL_4_6_01' JUICE_ROI_CAL_4_6_01_TOPO_ID = -28000141 JUICE_ROI_CAL_4_6_02_CENTER = 504 JUICE_ROI_CAL_4_6_02_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_6_02_IDCODE = -2800042 JUICE_ROI_CAL_4_6_02_LATLON = ( 13.5, 305.0, 0.5 ) JUICE_ROI_CAL_4_6_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_6_02_UP = 'Z' JUICE_ROI_CAL_4_6_02_NORTH = 'Y' JUICE_ROI_CAL_4_6_02_TOPO_FRAME = 'JUICE_ROI_CAL_4_6_02' JUICE_ROI_CAL_4_6_02_TOPO_ID = -28000142 JUICE_ROI_CAL_4_6_03_CENTER = 504 JUICE_ROI_CAL_4_6_03_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_6_03_IDCODE = -2800043 JUICE_ROI_CAL_4_6_03_LATLON = ( -46.5, 326.5, 0.5 ) JUICE_ROI_CAL_4_6_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_6_03_UP = 'Z' JUICE_ROI_CAL_4_6_03_NORTH = 'Y' JUICE_ROI_CAL_4_6_03_TOPO_FRAME = 'JUICE_ROI_CAL_4_6_03' JUICE_ROI_CAL_4_6_03_TOPO_ID = -28000143 JUICE_ROI_CAL_4_7_01_CENTER = 504 JUICE_ROI_CAL_4_7_01_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_7_01_IDCODE = -2800044 JUICE_ROI_CAL_4_7_01_LATLON = ( 10.5, 323.5, 0.5 ) JUICE_ROI_CAL_4_7_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_7_01_UP = 'Z' JUICE_ROI_CAL_4_7_01_NORTH = 'Y' JUICE_ROI_CAL_4_7_01_TOPO_FRAME = 'JUICE_ROI_CAL_4_7_01' JUICE_ROI_CAL_4_7_01_TOPO_ID = -28000144 JUICE_ROI_CAL_4_7_02_CENTER = 504 JUICE_ROI_CAL_4_7_02_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_7_02_IDCODE = -2800045 JUICE_ROI_CAL_4_7_02_LATLON = ( 34.5, 314.0, 0.5 ) JUICE_ROI_CAL_4_7_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_7_02_UP = 'Z' JUICE_ROI_CAL_4_7_02_NORTH = 'Y' JUICE_ROI_CAL_4_7_02_TOPO_FRAME = 'JUICE_ROI_CAL_4_7_02' JUICE_ROI_CAL_4_7_02_TOPO_ID = -28000145 JUICE_ROI_CAL_4_7_03_CENTER = 504 JUICE_ROI_CAL_4_7_03_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_7_03_IDCODE = -2800046 JUICE_ROI_CAL_4_7_03_LATLON = ( -8.0, 343.5, 0.5 ) JUICE_ROI_CAL_4_7_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_7_03_UP = 'Z' JUICE_ROI_CAL_4_7_03_NORTH = 'Y' JUICE_ROI_CAL_4_7_03_TOPO_FRAME = 'JUICE_ROI_CAL_4_7_03' JUICE_ROI_CAL_4_7_03_TOPO_ID = -28000146 JUICE_ROI_CAL_4_7_04_CENTER = 504 JUICE_ROI_CAL_4_7_04_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_7_04_IDCODE = -2800047 JUICE_ROI_CAL_4_7_04_LATLON = ( 69.5, 311.0, 0.5 ) JUICE_ROI_CAL_4_7_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_7_04_UP = 'Z' JUICE_ROI_CAL_4_7_04_NORTH = 'Y' JUICE_ROI_CAL_4_7_04_TOPO_FRAME = 'JUICE_ROI_CAL_4_7_04' JUICE_ROI_CAL_4_7_04_TOPO_ID = -28000147 JUICE_ROI_CAL_4_7_05_CENTER = 504 JUICE_ROI_CAL_4_7_05_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_7_05_IDCODE = -2800048 JUICE_ROI_CAL_4_7_05_LATLON = ( 40.5, 27.0, 0.5 ) JUICE_ROI_CAL_4_7_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_7_05_UP = 'Z' JUICE_ROI_CAL_4_7_05_NORTH = 'Y' JUICE_ROI_CAL_4_7_05_TOPO_FRAME = 'JUICE_ROI_CAL_4_7_05' JUICE_ROI_CAL_4_7_05_TOPO_ID = -28000148 JUICE_ROI_CAL_4_7_06_CENTER = 504 JUICE_ROI_CAL_4_7_06_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_4_7_06_IDCODE = -2800049 JUICE_ROI_CAL_4_7_06_LATLON = ( -29.5, 59.0, 0.5 ) JUICE_ROI_CAL_4_7_06_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_4_7_06_UP = 'Z' JUICE_ROI_CAL_4_7_06_NORTH = 'Y' JUICE_ROI_CAL_4_7_06_TOPO_FRAME = 'JUICE_ROI_CAL_4_7_06' JUICE_ROI_CAL_4_7_06_TOPO_ID = -28000149 JUICE_ROI_CAL_5_1_00_CENTER = 504 JUICE_ROI_CAL_5_1_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_1_00_IDCODE = -2800050 JUICE_ROI_CAL_5_1_00_LATLON = ( 49.5, 198.5, 0.5 ) JUICE_ROI_CAL_5_1_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_1_00_UP = 'Z' JUICE_ROI_CAL_5_1_00_NORTH = 'Y' JUICE_ROI_CAL_5_1_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_1_00' JUICE_ROI_CAL_5_1_00_TOPO_ID = -28000150 JUICE_ROI_CAL_5_2_00_CENTER = 504 JUICE_ROI_CAL_5_2_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_2_00_IDCODE = -2800051 JUICE_ROI_CAL_5_2_00_LATLON = ( 31.75, 196.5, 0.5 ) JUICE_ROI_CAL_5_2_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_2_00_UP = 'Z' JUICE_ROI_CAL_5_2_00_NORTH = 'Y' JUICE_ROI_CAL_5_2_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_2_00' JUICE_ROI_CAL_5_2_00_TOPO_ID = -28000151 JUICE_ROI_CAL_5_3_00_CENTER = 504 JUICE_ROI_CAL_5_3_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_3_00_IDCODE = -2800052 JUICE_ROI_CAL_5_3_00_LATLON = ( 43.0, 184.5, 0.5 ) JUICE_ROI_CAL_5_3_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_3_00_UP = 'Z' JUICE_ROI_CAL_5_3_00_NORTH = 'Y' JUICE_ROI_CAL_5_3_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_3_00' JUICE_ROI_CAL_5_3_00_TOPO_ID = -28000152 JUICE_ROI_CAL_5_4_00_CENTER = 504 JUICE_ROI_CAL_5_4_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_4_00_IDCODE = -2800053 JUICE_ROI_CAL_5_4_00_LATLON = ( 44.5, 226.0, 0.5 ) JUICE_ROI_CAL_5_4_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_4_00_UP = 'Z' JUICE_ROI_CAL_5_4_00_NORTH = 'Y' JUICE_ROI_CAL_5_4_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_4_00' JUICE_ROI_CAL_5_4_00_TOPO_ID = -28000153 JUICE_ROI_CAL_5_5_00_CENTER = 504 JUICE_ROI_CAL_5_5_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_5_00_IDCODE = -2800054 JUICE_ROI_CAL_5_5_00_LATLON = ( 29.5, 234.0, 0.5 ) JUICE_ROI_CAL_5_5_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_5_00_UP = 'Z' JUICE_ROI_CAL_5_5_00_NORTH = 'Y' JUICE_ROI_CAL_5_5_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_5_00' JUICE_ROI_CAL_5_5_00_TOPO_ID = -28000154 JUICE_ROI_CAL_5_6_00_CENTER = 504 JUICE_ROI_CAL_5_6_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_6_00_IDCODE = -2800055 JUICE_ROI_CAL_5_6_00_LATLON = ( -48.0, 278.0, 0.5 ) JUICE_ROI_CAL_5_6_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_6_00_UP = 'Z' JUICE_ROI_CAL_5_6_00_NORTH = 'Y' JUICE_ROI_CAL_5_6_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_6_00' JUICE_ROI_CAL_5_6_00_TOPO_ID = -28000155 JUICE_ROI_CAL_5_7_00_CENTER = 504 JUICE_ROI_CAL_5_7_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_7_00_IDCODE = -2800056 JUICE_ROI_CAL_5_7_00_LATLON = ( -56.5, 338.5, 0.5 ) JUICE_ROI_CAL_5_7_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_7_00_UP = 'Z' JUICE_ROI_CAL_5_7_00_NORTH = 'Y' JUICE_ROI_CAL_5_7_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_7_00' JUICE_ROI_CAL_5_7_00_TOPO_ID = -28000156 JUICE_ROI_CAL_5_8_00_CENTER = 504 JUICE_ROI_CAL_5_8_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_8_00_IDCODE = -2800057 JUICE_ROI_CAL_5_8_00_LATLON = ( -62.25, 188.0, 0.5 ) JUICE_ROI_CAL_5_8_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_8_00_UP = 'Z' JUICE_ROI_CAL_5_8_00_NORTH = 'Y' JUICE_ROI_CAL_5_8_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_8_00' JUICE_ROI_CAL_5_8_00_TOPO_ID = -28000157 JUICE_ROI_CAL_5_9_00_CENTER = 504 JUICE_ROI_CAL_5_9_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_9_00_IDCODE = -2800058 JUICE_ROI_CAL_5_9_00_LATLON = ( -23.5, 154.0, 0.5 ) JUICE_ROI_CAL_5_9_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_9_00_UP = 'Z' JUICE_ROI_CAL_5_9_00_NORTH = 'Y' JUICE_ROI_CAL_5_9_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_9_00' JUICE_ROI_CAL_5_9_00_TOPO_ID = -28000158 JUICE_ROI_CAL_5_10_00_CENTER = 504 JUICE_ROI_CAL_5_10_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_10_00_IDCODE = -2800059 JUICE_ROI_CAL_5_10_00_LATLON = ( 6.25, 44.5, 0.5 ) JUICE_ROI_CAL_5_10_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_10_00_UP = 'Z' JUICE_ROI_CAL_5_10_00_NORTH = 'Y' JUICE_ROI_CAL_5_10_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_10_00' JUICE_ROI_CAL_5_10_00_TOPO_ID = -28000159 JUICE_ROI_CAL_5_11_00_CENTER = 504 JUICE_ROI_CAL_5_11_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_11_00_IDCODE = -2800060 JUICE_ROI_CAL_5_11_00_LATLON = ( 52.0, 37.5, 0.5 ) JUICE_ROI_CAL_5_11_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_11_00_UP = 'Z' JUICE_ROI_CAL_5_11_00_NORTH = 'Y' JUICE_ROI_CAL_5_11_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_11_00' JUICE_ROI_CAL_5_11_00_TOPO_ID = -28000160 JUICE_ROI_CAL_5_12_00_CENTER = 504 JUICE_ROI_CAL_5_12_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_12_00_IDCODE = -2800061 JUICE_ROI_CAL_5_12_00_LATLON = ( 49.5, 116.0, 0.5 ) JUICE_ROI_CAL_5_12_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_12_00_UP = 'Z' JUICE_ROI_CAL_5_12_00_NORTH = 'Y' JUICE_ROI_CAL_5_12_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_12_00' JUICE_ROI_CAL_5_12_00_TOPO_ID = -28000161 JUICE_ROI_CAL_5_13_00_CENTER = 504 JUICE_ROI_CAL_5_13_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_13_00_IDCODE = -2800062 JUICE_ROI_CAL_5_13_00_LATLON = ( -71.0, 306.5, 0.5 ) JUICE_ROI_CAL_5_13_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_13_00_UP = 'Z' JUICE_ROI_CAL_5_13_00_NORTH = 'Y' JUICE_ROI_CAL_5_13_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_13_00' JUICE_ROI_CAL_5_13_00_TOPO_ID = -28000162 JUICE_ROI_CAL_5_14_00_CENTER = 504 JUICE_ROI_CAL_5_14_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_14_00_IDCODE = -2800063 JUICE_ROI_CAL_5_14_00_LATLON = ( 33.5, 144.0, 0.5 ) JUICE_ROI_CAL_5_14_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_14_00_UP = 'Z' JUICE_ROI_CAL_5_14_00_NORTH = 'Y' JUICE_ROI_CAL_5_14_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_14_00' JUICE_ROI_CAL_5_14_00_TOPO_ID = -28000163 JUICE_ROI_CAL_5_15_00_CENTER = 504 JUICE_ROI_CAL_5_15_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_15_00_IDCODE = -2800064 JUICE_ROI_CAL_5_15_00_LATLON = ( 13.0, 208.0, 0.5 ) JUICE_ROI_CAL_5_15_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_15_00_UP = 'Z' JUICE_ROI_CAL_5_15_00_NORTH = 'Y' JUICE_ROI_CAL_5_15_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_15_00' JUICE_ROI_CAL_5_15_00_TOPO_ID = -28000164 JUICE_ROI_CAL_5_16_00_CENTER = 504 JUICE_ROI_CAL_5_16_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_16_00_IDCODE = -2800065 JUICE_ROI_CAL_5_16_00_LATLON = ( -20.5, 219.5, 0.5 ) JUICE_ROI_CAL_5_16_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_16_00_UP = 'Z' JUICE_ROI_CAL_5_16_00_NORTH = 'Y' JUICE_ROI_CAL_5_16_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_16_00' JUICE_ROI_CAL_5_16_00_TOPO_ID = -28000165 JUICE_ROI_CAL_5_17_00_CENTER = 504 JUICE_ROI_CAL_5_17_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_17_00_IDCODE = -2800066 JUICE_ROI_CAL_5_17_00_LATLON = ( -23.0, 113.5, 0.5 ) JUICE_ROI_CAL_5_17_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_17_00_UP = 'Z' JUICE_ROI_CAL_5_17_00_NORTH = 'Y' JUICE_ROI_CAL_5_17_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_17_00' JUICE_ROI_CAL_5_17_00_TOPO_ID = -28000166 JUICE_ROI_CAL_5_18_00_CENTER = 504 JUICE_ROI_CAL_5_18_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_18_00_IDCODE = -2800067 JUICE_ROI_CAL_5_18_00_LATLON = ( 59.5, 173.5, 0.5 ) JUICE_ROI_CAL_5_18_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_18_00_UP = 'Z' JUICE_ROI_CAL_5_18_00_NORTH = 'Y' JUICE_ROI_CAL_5_18_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_18_00' JUICE_ROI_CAL_5_18_00_TOPO_ID = -28000167 JUICE_ROI_CAL_5_19_00_CENTER = 504 JUICE_ROI_CAL_5_19_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_19_00_IDCODE = -2800068 JUICE_ROI_CAL_5_19_00_LATLON = ( -6.25, 50.5, 0.5 ) JUICE_ROI_CAL_5_19_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_19_00_UP = 'Z' JUICE_ROI_CAL_5_19_00_NORTH = 'Y' JUICE_ROI_CAL_5_19_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_19_00' JUICE_ROI_CAL_5_19_00_TOPO_ID = -28000168 JUICE_ROI_CAL_5_20_00_CENTER = 504 JUICE_ROI_CAL_5_20_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_20_00_IDCODE = -2800069 JUICE_ROI_CAL_5_20_00_LATLON = ( -47.0, 157.0, 0.5 ) JUICE_ROI_CAL_5_20_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_20_00_UP = 'Z' JUICE_ROI_CAL_5_20_00_NORTH = 'Y' JUICE_ROI_CAL_5_20_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_20_00' JUICE_ROI_CAL_5_20_00_TOPO_ID = -28000169 JUICE_ROI_CAL_5_21_00_CENTER = 504 JUICE_ROI_CAL_5_21_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_5_21_00_IDCODE = -2800070 JUICE_ROI_CAL_5_21_00_LATLON = ( 19.5, 131.5, 0.5 ) JUICE_ROI_CAL_5_21_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_5_21_00_UP = 'Z' JUICE_ROI_CAL_5_21_00_NORTH = 'Y' JUICE_ROI_CAL_5_21_00_TOPO_FRAME = 'JUICE_ROI_CAL_5_21_00' JUICE_ROI_CAL_5_21_00_TOPO_ID = -28000170 JUICE_ROI_CAL_6_1_01_CENTER = 504 JUICE_ROI_CAL_6_1_01_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_6_1_01_IDCODE = -2800071 JUICE_ROI_CAL_6_1_01_LATLON = ( -0.5, 165.5, 0.5 ) JUICE_ROI_CAL_6_1_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_6_1_01_UP = 'Z' JUICE_ROI_CAL_6_1_01_NORTH = 'Y' JUICE_ROI_CAL_6_1_01_TOPO_FRAME = 'JUICE_ROI_CAL_6_1_01' JUICE_ROI_CAL_6_1_01_TOPO_ID = -28000171 JUICE_ROI_CAL_6_1_02_CENTER = 504 JUICE_ROI_CAL_6_1_02_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_6_1_02_IDCODE = -2800072 JUICE_ROI_CAL_6_1_02_LATLON = ( -48.0, 309.5, 0.5 ) JUICE_ROI_CAL_6_1_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_6_1_02_UP = 'Z' JUICE_ROI_CAL_6_1_02_NORTH = 'Y' JUICE_ROI_CAL_6_1_02_TOPO_FRAME = 'JUICE_ROI_CAL_6_1_02' JUICE_ROI_CAL_6_1_02_TOPO_ID = -28000172 JUICE_ROI_CAL_6_1_03_CENTER = 504 JUICE_ROI_CAL_6_1_03_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_6_1_03_IDCODE = -2800073 JUICE_ROI_CAL_6_1_03_LATLON = ( -21.5, 13.5, 0.5 ) JUICE_ROI_CAL_6_1_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_6_1_03_UP = 'Z' JUICE_ROI_CAL_6_1_03_NORTH = 'Y' JUICE_ROI_CAL_6_1_03_TOPO_FRAME = 'JUICE_ROI_CAL_6_1_03' JUICE_ROI_CAL_6_1_03_TOPO_ID = -28000173 JUICE_ROI_CAL_6_1_04_CENTER = 504 JUICE_ROI_CAL_6_1_04_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_6_1_04_IDCODE = -2800074 JUICE_ROI_CAL_6_1_04_LATLON = ( 28.5, 288.5, 0.5 ) JUICE_ROI_CAL_6_1_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_6_1_04_UP = 'Z' JUICE_ROI_CAL_6_1_04_NORTH = 'Y' JUICE_ROI_CAL_6_1_04_TOPO_FRAME = 'JUICE_ROI_CAL_6_1_04' JUICE_ROI_CAL_6_1_04_TOPO_ID = -28000174 JUICE_ROI_CAL_6_1_05_CENTER = 504 JUICE_ROI_CAL_6_1_05_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_6_1_05_IDCODE = -2800075 JUICE_ROI_CAL_6_1_05_LATLON = ( -7.5, 75.0, 0.5 ) JUICE_ROI_CAL_6_1_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_6_1_05_UP = 'Z' JUICE_ROI_CAL_6_1_05_NORTH = 'Y' JUICE_ROI_CAL_6_1_05_TOPO_FRAME = 'JUICE_ROI_CAL_6_1_05' JUICE_ROI_CAL_6_1_05_TOPO_ID = -28000175 JUICE_ROI_CAL_6_1_06_CENTER = 504 JUICE_ROI_CAL_6_1_06_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_6_1_06_IDCODE = -2800076 JUICE_ROI_CAL_6_1_06_LATLON = ( 15.5, 74.0, 0.5 ) JUICE_ROI_CAL_6_1_06_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_6_1_06_UP = 'Z' JUICE_ROI_CAL_6_1_06_NORTH = 'Y' JUICE_ROI_CAL_6_1_06_TOPO_FRAME = 'JUICE_ROI_CAL_6_1_06' JUICE_ROI_CAL_6_1_06_TOPO_ID = -28000176 JUICE_ROI_CAL_6_1_07_CENTER = 504 JUICE_ROI_CAL_6_1_07_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_6_1_07_IDCODE = -2800077 JUICE_ROI_CAL_6_1_07_LATLON = ( -41.0, 36.0, 0.5 ) JUICE_ROI_CAL_6_1_07_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_6_1_07_UP = 'Z' JUICE_ROI_CAL_6_1_07_NORTH = 'Y' JUICE_ROI_CAL_6_1_07_TOPO_FRAME = 'JUICE_ROI_CAL_6_1_07' JUICE_ROI_CAL_6_1_07_TOPO_ID = -28000177 JUICE_ROI_CAL_6_1_08_CENTER = 504 JUICE_ROI_CAL_6_1_08_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_6_1_08_IDCODE = -2800078 JUICE_ROI_CAL_6_1_08_LATLON = ( 18.0, 233.25, 0.5 ) JUICE_ROI_CAL_6_1_08_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_6_1_08_UP = 'Z' JUICE_ROI_CAL_6_1_08_NORTH = 'Y' JUICE_ROI_CAL_6_1_08_TOPO_FRAME = 'JUICE_ROI_CAL_6_1_08' JUICE_ROI_CAL_6_1_08_TOPO_ID = -28000178 JUICE_ROI_CAL_6_1_09_CENTER = 504 JUICE_ROI_CAL_6_1_09_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_6_1_09_IDCODE = -2800079 JUICE_ROI_CAL_6_1_09_LATLON = ( 4.25, 328.5, 0.5 ) JUICE_ROI_CAL_6_1_09_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_6_1_09_UP = 'Z' JUICE_ROI_CAL_6_1_09_NORTH = 'Y' JUICE_ROI_CAL_6_1_09_TOPO_FRAME = 'JUICE_ROI_CAL_6_1_09' JUICE_ROI_CAL_6_1_09_TOPO_ID = -28000179 JUICE_ROI_CAL_7_1_00_CENTER = 504 JUICE_ROI_CAL_7_1_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_7_1_00_IDCODE = -2800080 JUICE_ROI_CAL_7_1_00_LATLON = ( 25.0, 219.0, 0.5 ) JUICE_ROI_CAL_7_1_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_7_1_00_UP = 'Z' JUICE_ROI_CAL_7_1_00_NORTH = 'Y' JUICE_ROI_CAL_7_1_00_TOPO_FRAME = 'JUICE_ROI_CAL_7_1_00' JUICE_ROI_CAL_7_1_00_TOPO_ID = -28000180 JUICE_ROI_CAL_7_2_00_CENTER = 504 JUICE_ROI_CAL_7_2_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_7_2_00_IDCODE = -2800081 JUICE_ROI_CAL_7_2_00_LATLON = ( 17.5, 17.5, 0.5 ) JUICE_ROI_CAL_7_2_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_7_2_00_UP = 'Z' JUICE_ROI_CAL_7_2_00_NORTH = 'Y' JUICE_ROI_CAL_7_2_00_TOPO_FRAME = 'JUICE_ROI_CAL_7_2_00' JUICE_ROI_CAL_7_2_00_TOPO_ID = -28000181 JUICE_ROI_CAL_7_3_00_CENTER = 504 JUICE_ROI_CAL_7_3_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_7_3_00_IDCODE = -2800082 JUICE_ROI_CAL_7_3_00_LATLON = ( 15.75, 220.0, 0.5 ) JUICE_ROI_CAL_7_3_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_7_3_00_UP = 'Z' JUICE_ROI_CAL_7_3_00_NORTH = 'Y' JUICE_ROI_CAL_7_3_00_TOPO_FRAME = 'JUICE_ROI_CAL_7_3_00' JUICE_ROI_CAL_7_3_00_TOPO_ID = -28000182 JUICE_ROI_CAL_7_4_00_CENTER = 504 JUICE_ROI_CAL_7_4_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_7_4_00_IDCODE = -2800083 JUICE_ROI_CAL_7_4_00_LATLON = ( 12.0, 243.5, 0.5 ) JUICE_ROI_CAL_7_4_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_7_4_00_UP = 'Z' JUICE_ROI_CAL_7_4_00_NORTH = 'Y' JUICE_ROI_CAL_7_4_00_TOPO_FRAME = 'JUICE_ROI_CAL_7_4_00' JUICE_ROI_CAL_7_4_00_TOPO_ID = -28000183 JUICE_ROI_CAL_7_5_00_CENTER = 504 JUICE_ROI_CAL_7_5_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_7_5_00_IDCODE = -2800084 JUICE_ROI_CAL_7_5_00_LATLON = ( -7.0, 355.0, 0.5 ) JUICE_ROI_CAL_7_5_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_7_5_00_UP = 'Z' JUICE_ROI_CAL_7_5_00_NORTH = 'Y' JUICE_ROI_CAL_7_5_00_TOPO_FRAME = 'JUICE_ROI_CAL_7_5_00' JUICE_ROI_CAL_7_5_00_TOPO_ID = -28000184 JUICE_ROI_CAL_7_6_00_CENTER = 504 JUICE_ROI_CAL_7_6_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_7_6_00_IDCODE = -2800085 JUICE_ROI_CAL_7_6_00_LATLON = ( 17.0, 9.5, 0.5 ) JUICE_ROI_CAL_7_6_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_7_6_00_UP = 'Z' JUICE_ROI_CAL_7_6_00_NORTH = 'Y' JUICE_ROI_CAL_7_6_00_TOPO_FRAME = 'JUICE_ROI_CAL_7_6_00' JUICE_ROI_CAL_7_6_00_TOPO_ID = -28000185 JUICE_ROI_CAL_7_7_00_CENTER = 504 JUICE_ROI_CAL_7_7_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_7_7_00_IDCODE = -2800086 JUICE_ROI_CAL_7_7_00_LATLON = ( 24.5, 62.0, 0.5 ) JUICE_ROI_CAL_7_7_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_7_7_00_UP = 'Z' JUICE_ROI_CAL_7_7_00_NORTH = 'Y' JUICE_ROI_CAL_7_7_00_TOPO_FRAME = 'JUICE_ROI_CAL_7_7_00' JUICE_ROI_CAL_7_7_00_TOPO_ID = -28000186 JUICE_ROI_CAL_7_8_00_CENTER = 504 JUICE_ROI_CAL_7_8_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_7_8_00_IDCODE = -2800087 JUICE_ROI_CAL_7_8_00_LATLON = ( -4.75, 261.25, 0.5 ) JUICE_ROI_CAL_7_8_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_7_8_00_UP = 'Z' JUICE_ROI_CAL_7_8_00_NORTH = 'Y' JUICE_ROI_CAL_7_8_00_TOPO_FRAME = 'JUICE_ROI_CAL_7_8_00' JUICE_ROI_CAL_7_8_00_TOPO_ID = -28000187 JUICE_ROI_CAL_7_9_00_CENTER = 504 JUICE_ROI_CAL_7_9_00_FRAME = 'IAU_CALLISTO' JUICE_ROI_CAL_7_9_00_IDCODE = -2800088 JUICE_ROI_CAL_7_9_00_LATLON = ( 33.5, 100.5, 0.5 ) JUICE_ROI_CAL_7_9_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_CAL_7_9_00_UP = 'Z' JUICE_ROI_CAL_7_9_00_NORTH = 'Y' JUICE_ROI_CAL_7_9_00_TOPO_FRAME = 'JUICE_ROI_CAL_7_9_00' JUICE_ROI_CAL_7_9_00_TOPO_ID = -28000188 JUICE_ROI_GAN_1_1_00_CENTER = 503 JUICE_ROI_GAN_1_1_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_1_00_IDCODE = -2800089 JUICE_ROI_GAN_1_1_00_LATLON = ( -24.0, 41.5, 0.5 ) JUICE_ROI_GAN_1_1_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_1_00_UP = 'Z' JUICE_ROI_GAN_1_1_00_NORTH = 'Y' JUICE_ROI_GAN_1_1_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_1_00' JUICE_ROI_GAN_1_1_00_TOPO_ID = -28000189 JUICE_ROI_GAN_1_2_00_CENTER = 503 JUICE_ROI_GAN_1_2_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_2_00_IDCODE = -2800090 JUICE_ROI_GAN_1_2_00_LATLON = ( -29.0, 175.5, 0.5 ) JUICE_ROI_GAN_1_2_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_2_00_UP = 'Z' JUICE_ROI_GAN_1_2_00_NORTH = 'Y' JUICE_ROI_GAN_1_2_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_2_00' JUICE_ROI_GAN_1_2_00_TOPO_ID = -28000190 JUICE_ROI_GAN_1_3_00_CENTER = 503 JUICE_ROI_GAN_1_3_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_3_00_IDCODE = -2800091 JUICE_ROI_GAN_1_3_00_LATLON = ( -28.5, 178.5, 0.5 ) JUICE_ROI_GAN_1_3_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_3_00_UP = 'Z' JUICE_ROI_GAN_1_3_00_NORTH = 'Y' JUICE_ROI_GAN_1_3_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_3_00' JUICE_ROI_GAN_1_3_00_TOPO_ID = -28000191 JUICE_ROI_GAN_1_4_00_CENTER = 503 JUICE_ROI_GAN_1_4_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_4_00_IDCODE = -2800092 JUICE_ROI_GAN_1_4_00_LATLON = ( -31.0, 170.0, 0.5 ) JUICE_ROI_GAN_1_4_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_4_00_UP = 'Z' JUICE_ROI_GAN_1_4_00_NORTH = 'Y' JUICE_ROI_GAN_1_4_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_4_00' JUICE_ROI_GAN_1_4_00_TOPO_ID = -28000192 JUICE_ROI_GAN_1_5_00_CENTER = 503 JUICE_ROI_GAN_1_5_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_5_00_IDCODE = -2800093 JUICE_ROI_GAN_1_5_00_LATLON = ( -46.5, 218.0, 0.5 ) JUICE_ROI_GAN_1_5_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_5_00_UP = 'Z' JUICE_ROI_GAN_1_5_00_NORTH = 'Y' JUICE_ROI_GAN_1_5_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_5_00' JUICE_ROI_GAN_1_5_00_TOPO_ID = -28000193 JUICE_ROI_GAN_1_6_00_CENTER = 503 JUICE_ROI_GAN_1_6_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_6_00_IDCODE = -2800094 JUICE_ROI_GAN_1_6_00_LATLON = ( -77.0, 189.0, 0.5 ) JUICE_ROI_GAN_1_6_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_6_00_UP = 'Z' JUICE_ROI_GAN_1_6_00_NORTH = 'Y' JUICE_ROI_GAN_1_6_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_6_00' JUICE_ROI_GAN_1_6_00_TOPO_ID = -28000194 JUICE_ROI_GAN_1_7_00_CENTER = 503 JUICE_ROI_GAN_1_7_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_7_00_IDCODE = -2800095 JUICE_ROI_GAN_1_7_00_LATLON = ( -28.0, 184.0, 0.5 ) JUICE_ROI_GAN_1_7_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_7_00_UP = 'Z' JUICE_ROI_GAN_1_7_00_NORTH = 'Y' JUICE_ROI_GAN_1_7_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_7_00' JUICE_ROI_GAN_1_7_00_TOPO_ID = -28000195 JUICE_ROI_GAN_1_8_00_CENTER = 503 JUICE_ROI_GAN_1_8_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_8_00_IDCODE = -2800096 JUICE_ROI_GAN_1_8_00_LATLON = ( -28.5, 188.5, 0.5 ) JUICE_ROI_GAN_1_8_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_8_00_UP = 'Z' JUICE_ROI_GAN_1_8_00_NORTH = 'Y' JUICE_ROI_GAN_1_8_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_8_00' JUICE_ROI_GAN_1_8_00_TOPO_ID = -28000196 JUICE_ROI_GAN_1_9_00_CENTER = 503 JUICE_ROI_GAN_1_9_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_9_00_IDCODE = -2800097 JUICE_ROI_GAN_1_9_00_LATLON = ( 77.0, 340.0, 0.5 ) JUICE_ROI_GAN_1_9_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_9_00_UP = 'Z' JUICE_ROI_GAN_1_9_00_NORTH = 'Y' JUICE_ROI_GAN_1_9_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_9_00' JUICE_ROI_GAN_1_9_00_TOPO_ID = -28000197 JUICE_ROI_GAN_1_10_00_CENTER = 503 JUICE_ROI_GAN_1_10_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_1_10_00_IDCODE = -2800098 JUICE_ROI_GAN_1_10_00_LATLON = ( -8.0, 280.0, 0.5 ) JUICE_ROI_GAN_1_10_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_1_10_00_UP = 'Z' JUICE_ROI_GAN_1_10_00_NORTH = 'Y' JUICE_ROI_GAN_1_10_00_TOPO_FRAME = 'JUICE_ROI_GAN_1_10_00' JUICE_ROI_GAN_1_10_00_TOPO_ID = -28000198 JUICE_ROI_GAN_2_1_00_CENTER = 503 JUICE_ROI_GAN_2_1_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_1_00_IDCODE = -2800099 JUICE_ROI_GAN_2_1_00_LATLON = ( 40.0, 260.0, 0.5 ) JUICE_ROI_GAN_2_1_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_1_00_UP = 'Z' JUICE_ROI_GAN_2_1_00_NORTH = 'Y' JUICE_ROI_GAN_2_1_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_1_00' JUICE_ROI_GAN_2_1_00_TOPO_ID = -28000199 JUICE_ROI_GAN_2_2_00_CENTER = 503 JUICE_ROI_GAN_2_2_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_2_00_IDCODE = -28000100 JUICE_ROI_GAN_2_2_00_LATLON = ( 35.5, 281.0, 0.5 ) JUICE_ROI_GAN_2_2_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_2_00_UP = 'Z' JUICE_ROI_GAN_2_2_00_NORTH = 'Y' JUICE_ROI_GAN_2_2_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_2_00' JUICE_ROI_GAN_2_2_00_TOPO_ID = -280001100 JUICE_ROI_GAN_2_3_00_CENTER = 503 JUICE_ROI_GAN_2_3_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_3_00_IDCODE = -28000101 JUICE_ROI_GAN_2_3_00_LATLON = ( -43.0, 189.5, 0.5 ) JUICE_ROI_GAN_2_3_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_3_00_UP = 'Z' JUICE_ROI_GAN_2_3_00_NORTH = 'Y' JUICE_ROI_GAN_2_3_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_3_00' JUICE_ROI_GAN_2_3_00_TOPO_ID = -280001101 JUICE_ROI_GAN_2_4_00_CENTER = 503 JUICE_ROI_GAN_2_4_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_4_00_IDCODE = -28000102 JUICE_ROI_GAN_2_4_00_LATLON = ( -66.0, 140.5, 0.5 ) JUICE_ROI_GAN_2_4_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_4_00_UP = 'Z' JUICE_ROI_GAN_2_4_00_NORTH = 'Y' JUICE_ROI_GAN_2_4_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_4_00' JUICE_ROI_GAN_2_4_00_TOPO_ID = -280001102 JUICE_ROI_GAN_2_5_00_CENTER = 503 JUICE_ROI_GAN_2_5_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_5_00_IDCODE = -28000103 JUICE_ROI_GAN_2_5_00_LATLON = ( -40.0, 92.5, 0.5 ) JUICE_ROI_GAN_2_5_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_5_00_UP = 'Z' JUICE_ROI_GAN_2_5_00_NORTH = 'Y' JUICE_ROI_GAN_2_5_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_5_00' JUICE_ROI_GAN_2_5_00_TOPO_ID = -280001103 JUICE_ROI_GAN_2_6_00_CENTER = 503 JUICE_ROI_GAN_2_6_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_6_00_IDCODE = -28000104 JUICE_ROI_GAN_2_6_00_LATLON = ( 46.5, 89.5, 0.5 ) JUICE_ROI_GAN_2_6_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_6_00_UP = 'Z' JUICE_ROI_GAN_2_6_00_NORTH = 'Y' JUICE_ROI_GAN_2_6_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_6_00' JUICE_ROI_GAN_2_6_00_TOPO_ID = -280001104 JUICE_ROI_GAN_2_7_00_CENTER = 503 JUICE_ROI_GAN_2_7_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_7_00_IDCODE = -28000105 JUICE_ROI_GAN_2_7_00_LATLON = ( 47.0, 218.5, 0.5 ) JUICE_ROI_GAN_2_7_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_7_00_UP = 'Z' JUICE_ROI_GAN_2_7_00_NORTH = 'Y' JUICE_ROI_GAN_2_7_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_7_00' JUICE_ROI_GAN_2_7_00_TOPO_ID = -280001105 JUICE_ROI_GAN_2_8_00_CENTER = 503 JUICE_ROI_GAN_2_8_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_8_00_IDCODE = -28000106 JUICE_ROI_GAN_2_8_00_LATLON = ( 69.5, 57.0, 0.5 ) JUICE_ROI_GAN_2_8_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_8_00_UP = 'Z' JUICE_ROI_GAN_2_8_00_NORTH = 'Y' JUICE_ROI_GAN_2_8_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_8_00' JUICE_ROI_GAN_2_8_00_TOPO_ID = -280001106 JUICE_ROI_GAN_2_9_00_CENTER = 503 JUICE_ROI_GAN_2_9_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_9_00_IDCODE = -28000107 JUICE_ROI_GAN_2_9_00_LATLON = ( 72.5, 171.0, 0.5 ) JUICE_ROI_GAN_2_9_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_9_00_UP = 'Z' JUICE_ROI_GAN_2_9_00_NORTH = 'Y' JUICE_ROI_GAN_2_9_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_9_00' JUICE_ROI_GAN_2_9_00_TOPO_ID = -280001107 JUICE_ROI_GAN_2_10_00_CENTER = 503 JUICE_ROI_GAN_2_10_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_10_00_IDCODE = -28000108 JUICE_ROI_GAN_2_10_00_LATLON = ( 72.5, 310.0, 0.5 ) JUICE_ROI_GAN_2_10_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_10_00_UP = 'Z' JUICE_ROI_GAN_2_10_00_NORTH = 'Y' JUICE_ROI_GAN_2_10_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_10_00' JUICE_ROI_GAN_2_10_00_TOPO_ID = -280001108 JUICE_ROI_GAN_2_11_00_CENTER = 503 JUICE_ROI_GAN_2_11_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_11_00_IDCODE = -28000109 JUICE_ROI_GAN_2_11_00_LATLON = ( -70.0, 180.0, 0.5 ) JUICE_ROI_GAN_2_11_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_11_00_UP = 'Z' JUICE_ROI_GAN_2_11_00_NORTH = 'Y' JUICE_ROI_GAN_2_11_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_11_00' JUICE_ROI_GAN_2_11_00_TOPO_ID = -280001109 JUICE_ROI_GAN_2_12_00_CENTER = 503 JUICE_ROI_GAN_2_12_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_2_12_00_IDCODE = -28000110 JUICE_ROI_GAN_2_12_00_LATLON = ( 72.5, 258.5, 0.5 ) JUICE_ROI_GAN_2_12_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_2_12_00_UP = 'Z' JUICE_ROI_GAN_2_12_00_NORTH = 'Y' JUICE_ROI_GAN_2_12_00_TOPO_FRAME = 'JUICE_ROI_GAN_2_12_00' JUICE_ROI_GAN_2_12_00_TOPO_ID = -280001110 JUICE_ROI_GAN_3_1_00_CENTER = 503 JUICE_ROI_GAN_3_1_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_1_00_IDCODE = -28000111 JUICE_ROI_GAN_3_1_00_LATLON = ( 1.25, 24.75, 0.5 ) JUICE_ROI_GAN_3_1_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_1_00_UP = 'Z' JUICE_ROI_GAN_3_1_00_NORTH = 'Y' JUICE_ROI_GAN_3_1_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_1_00' JUICE_ROI_GAN_3_1_00_TOPO_ID = -280001111 JUICE_ROI_GAN_3_2_00_CENTER = 503 JUICE_ROI_GAN_3_2_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_2_00_IDCODE = -28000112 JUICE_ROI_GAN_3_2_00_LATLON = ( 13.5, 129.5, 0.5 ) JUICE_ROI_GAN_3_2_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_2_00_UP = 'Z' JUICE_ROI_GAN_3_2_00_NORTH = 'Y' JUICE_ROI_GAN_3_2_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_2_00' JUICE_ROI_GAN_3_2_00_TOPO_ID = -280001112 JUICE_ROI_GAN_3_3_00_CENTER = 503 JUICE_ROI_GAN_3_3_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_3_00_IDCODE = -28000113 JUICE_ROI_GAN_3_3_00_LATLON = ( 5.3500000000000005, 140.5, 0.5 ) JUICE_ROI_GAN_3_3_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_3_00_UP = 'Z' JUICE_ROI_GAN_3_3_00_NORTH = 'Y' JUICE_ROI_GAN_3_3_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_3_00' JUICE_ROI_GAN_3_3_00_TOPO_ID = -280001113 JUICE_ROI_GAN_3_4_00_CENTER = 503 JUICE_ROI_GAN_3_4_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_4_00_IDCODE = -28000114 JUICE_ROI_GAN_3_4_00_LATLON = ( -4.0, 128.0, 0.5 ) JUICE_ROI_GAN_3_4_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_4_00_UP = 'Z' JUICE_ROI_GAN_3_4_00_NORTH = 'Y' JUICE_ROI_GAN_3_4_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_4_00' JUICE_ROI_GAN_3_4_00_TOPO_ID = -280001114 JUICE_ROI_GAN_3_5_00_CENTER = 503 JUICE_ROI_GAN_3_5_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_5_00_IDCODE = -28000115 JUICE_ROI_GAN_3_5_00_LATLON = ( 6.25, 126.5, 0.5 ) JUICE_ROI_GAN_3_5_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_5_00_UP = 'Z' JUICE_ROI_GAN_3_5_00_NORTH = 'Y' JUICE_ROI_GAN_3_5_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_5_00' JUICE_ROI_GAN_3_5_00_TOPO_ID = -280001115 JUICE_ROI_GAN_3_6_00_CENTER = 503 JUICE_ROI_GAN_3_6_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_6_00_IDCODE = -28000116 JUICE_ROI_GAN_3_6_00_LATLON = ( -12.5, 70.5, 0.5 ) JUICE_ROI_GAN_3_6_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_6_00_UP = 'Z' JUICE_ROI_GAN_3_6_00_NORTH = 'Y' JUICE_ROI_GAN_3_6_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_6_00' JUICE_ROI_GAN_3_6_00_TOPO_ID = -280001116 JUICE_ROI_GAN_3_7_00_CENTER = 503 JUICE_ROI_GAN_3_7_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_7_00_IDCODE = -28000117 JUICE_ROI_GAN_3_7_00_LATLON = ( 1.0, 207.0, 0.5 ) JUICE_ROI_GAN_3_7_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_7_00_UP = 'Z' JUICE_ROI_GAN_3_7_00_NORTH = 'Y' JUICE_ROI_GAN_3_7_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_7_00' JUICE_ROI_GAN_3_7_00_TOPO_ID = -280001117 JUICE_ROI_GAN_3_8_00_CENTER = 503 JUICE_ROI_GAN_3_8_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_8_00_IDCODE = -28000118 JUICE_ROI_GAN_3_8_00_LATLON = ( 21.5, 173.5, 0.5 ) JUICE_ROI_GAN_3_8_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_8_00_UP = 'Z' JUICE_ROI_GAN_3_8_00_NORTH = 'Y' JUICE_ROI_GAN_3_8_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_8_00' JUICE_ROI_GAN_3_8_00_TOPO_ID = -280001118 JUICE_ROI_GAN_3_9_00_CENTER = 503 JUICE_ROI_GAN_3_9_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_9_00_IDCODE = -28000119 JUICE_ROI_GAN_3_9_00_LATLON = ( -54.0, 291.0, 0.5 ) JUICE_ROI_GAN_3_9_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_9_00_UP = 'Z' JUICE_ROI_GAN_3_9_00_NORTH = 'Y' JUICE_ROI_GAN_3_9_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_9_00' JUICE_ROI_GAN_3_9_00_TOPO_ID = -280001119 JUICE_ROI_GAN_3_10_00_CENTER = 503 JUICE_ROI_GAN_3_10_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_10_00_IDCODE = -28000120 JUICE_ROI_GAN_3_10_00_LATLON = ( 32.0, 4.0, 0.5 ) JUICE_ROI_GAN_3_10_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_10_00_UP = 'Z' JUICE_ROI_GAN_3_10_00_NORTH = 'Y' JUICE_ROI_GAN_3_10_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_10_00' JUICE_ROI_GAN_3_10_00_TOPO_ID = -280001120 JUICE_ROI_GAN_3_11_00_CENTER = 503 JUICE_ROI_GAN_3_11_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_11_00_IDCODE = -28000121 JUICE_ROI_GAN_3_11_00_LATLON = ( 4.0, 10.5, 0.5 ) JUICE_ROI_GAN_3_11_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_11_00_UP = 'Z' JUICE_ROI_GAN_3_11_00_NORTH = 'Y' JUICE_ROI_GAN_3_11_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_11_00' JUICE_ROI_GAN_3_11_00_TOPO_ID = -280001121 JUICE_ROI_GAN_3_12_00_CENTER = 503 JUICE_ROI_GAN_3_12_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_12_00_IDCODE = -28000122 JUICE_ROI_GAN_3_12_00_LATLON = ( -29.0, 26.0, 0.5 ) JUICE_ROI_GAN_3_12_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_12_00_UP = 'Z' JUICE_ROI_GAN_3_12_00_NORTH = 'Y' JUICE_ROI_GAN_3_12_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_12_00' JUICE_ROI_GAN_3_12_00_TOPO_ID = -280001122 JUICE_ROI_GAN_3_13_00_CENTER = 503 JUICE_ROI_GAN_3_13_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_13_00_IDCODE = -28000123 JUICE_ROI_GAN_3_13_00_LATLON = ( -11.0, 284.5, 0.5 ) JUICE_ROI_GAN_3_13_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_13_00_UP = 'Z' JUICE_ROI_GAN_3_13_00_NORTH = 'Y' JUICE_ROI_GAN_3_13_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_13_00' JUICE_ROI_GAN_3_13_00_TOPO_ID = -280001123 JUICE_ROI_GAN_3_14_00_CENTER = 503 JUICE_ROI_GAN_3_14_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_3_14_00_IDCODE = -28000124 JUICE_ROI_GAN_3_14_00_LATLON = ( 1.5, 261.5, 0.5 ) JUICE_ROI_GAN_3_14_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_3_14_00_UP = 'Z' JUICE_ROI_GAN_3_14_00_NORTH = 'Y' JUICE_ROI_GAN_3_14_00_TOPO_FRAME = 'JUICE_ROI_GAN_3_14_00' JUICE_ROI_GAN_3_14_00_TOPO_ID = -280001124 JUICE_ROI_GAN_4_1_01_CENTER = 503 JUICE_ROI_GAN_4_1_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_1_01_IDCODE = -28000125 JUICE_ROI_GAN_4_1_01_LATLON = ( 56.0, 37.0, 0.5 ) JUICE_ROI_GAN_4_1_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_1_01_UP = 'Z' JUICE_ROI_GAN_4_1_01_NORTH = 'Y' JUICE_ROI_GAN_4_1_01_TOPO_FRAME = 'JUICE_ROI_GAN_4_1_01' JUICE_ROI_GAN_4_1_01_TOPO_ID = -280001125 JUICE_ROI_GAN_4_1_02_CENTER = 503 JUICE_ROI_GAN_4_1_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_1_02_IDCODE = -28000126 JUICE_ROI_GAN_4_1_02_LATLON = ( 1.5, 156.0, 0.5 ) JUICE_ROI_GAN_4_1_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_1_02_UP = 'Z' JUICE_ROI_GAN_4_1_02_NORTH = 'Y' JUICE_ROI_GAN_4_1_02_TOPO_FRAME = 'JUICE_ROI_GAN_4_1_02' JUICE_ROI_GAN_4_1_02_TOPO_ID = -280001126 JUICE_ROI_GAN_4_1_03_CENTER = 503 JUICE_ROI_GAN_4_1_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_1_03_IDCODE = -28000127 JUICE_ROI_GAN_4_1_03_LATLON = ( 73.5, 328.0, 0.5 ) JUICE_ROI_GAN_4_1_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_1_03_UP = 'Z' JUICE_ROI_GAN_4_1_03_NORTH = 'Y' JUICE_ROI_GAN_4_1_03_TOPO_FRAME = 'JUICE_ROI_GAN_4_1_03' JUICE_ROI_GAN_4_1_03_TOPO_ID = -280001127 JUICE_ROI_GAN_4_1_04_CENTER = 503 JUICE_ROI_GAN_4_1_04_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_1_04_IDCODE = -28000128 JUICE_ROI_GAN_4_1_04_LATLON = ( 70.0, 176.5, 0.5 ) JUICE_ROI_GAN_4_1_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_1_04_UP = 'Z' JUICE_ROI_GAN_4_1_04_NORTH = 'Y' JUICE_ROI_GAN_4_1_04_TOPO_FRAME = 'JUICE_ROI_GAN_4_1_04' JUICE_ROI_GAN_4_1_04_TOPO_ID = -280001128 JUICE_ROI_GAN_4_2_01_CENTER = 503 JUICE_ROI_GAN_4_2_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_2_01_IDCODE = -28000129 JUICE_ROI_GAN_4_2_01_LATLON = ( 7.0, 243.0, 0.5 ) JUICE_ROI_GAN_4_2_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_2_01_UP = 'Z' JUICE_ROI_GAN_4_2_01_NORTH = 'Y' JUICE_ROI_GAN_4_2_01_TOPO_FRAME = 'JUICE_ROI_GAN_4_2_01' JUICE_ROI_GAN_4_2_01_TOPO_ID = -280001129 JUICE_ROI_GAN_4_2_02_CENTER = 503 JUICE_ROI_GAN_4_2_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_2_02_IDCODE = -28000130 JUICE_ROI_GAN_4_2_02_LATLON = ( -12.0, 262.5, 0.5 ) JUICE_ROI_GAN_4_2_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_2_02_UP = 'Z' JUICE_ROI_GAN_4_2_02_NORTH = 'Y' JUICE_ROI_GAN_4_2_02_TOPO_FRAME = 'JUICE_ROI_GAN_4_2_02' JUICE_ROI_GAN_4_2_02_TOPO_ID = -280001130 JUICE_ROI_GAN_4_2_03_CENTER = 503 JUICE_ROI_GAN_4_2_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_2_03_IDCODE = -28000131 JUICE_ROI_GAN_4_2_03_LATLON = ( 23.5, 164.5, 0.5 ) JUICE_ROI_GAN_4_2_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_2_03_UP = 'Z' JUICE_ROI_GAN_4_2_03_NORTH = 'Y' JUICE_ROI_GAN_4_2_03_TOPO_FRAME = 'JUICE_ROI_GAN_4_2_03' JUICE_ROI_GAN_4_2_03_TOPO_ID = -280001131 JUICE_ROI_GAN_4_2_04_CENTER = 503 JUICE_ROI_GAN_4_2_04_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_2_04_IDCODE = -28000132 JUICE_ROI_GAN_4_2_04_LATLON = ( -39.0, 236.5, 0.5 ) JUICE_ROI_GAN_4_2_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_2_04_UP = 'Z' JUICE_ROI_GAN_4_2_04_NORTH = 'Y' JUICE_ROI_GAN_4_2_04_TOPO_FRAME = 'JUICE_ROI_GAN_4_2_04' JUICE_ROI_GAN_4_2_04_TOPO_ID = -280001132 JUICE_ROI_GAN_4_2_05_CENTER = 503 JUICE_ROI_GAN_4_2_05_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_2_05_IDCODE = -28000133 JUICE_ROI_GAN_4_2_05_LATLON = ( 72.5, 10.5, 0.5 ) JUICE_ROI_GAN_4_2_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_2_05_UP = 'Z' JUICE_ROI_GAN_4_2_05_NORTH = 'Y' JUICE_ROI_GAN_4_2_05_TOPO_FRAME = 'JUICE_ROI_GAN_4_2_05' JUICE_ROI_GAN_4_2_05_TOPO_ID = -280001133 JUICE_ROI_GAN_4_2_06_CENTER = 503 JUICE_ROI_GAN_4_2_06_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_2_06_IDCODE = -28000134 JUICE_ROI_GAN_4_2_06_LATLON = ( 28.0, 305.0, 0.5 ) JUICE_ROI_GAN_4_2_06_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_2_06_UP = 'Z' JUICE_ROI_GAN_4_2_06_NORTH = 'Y' JUICE_ROI_GAN_4_2_06_TOPO_FRAME = 'JUICE_ROI_GAN_4_2_06' JUICE_ROI_GAN_4_2_06_TOPO_ID = -280001134 JUICE_ROI_GAN_4_2_07_CENTER = 503 JUICE_ROI_GAN_4_2_07_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_2_07_IDCODE = -28000135 JUICE_ROI_GAN_4_2_07_LATLON = ( 3.5, 175.5, 0.5 ) JUICE_ROI_GAN_4_2_07_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_2_07_UP = 'Z' JUICE_ROI_GAN_4_2_07_NORTH = 'Y' JUICE_ROI_GAN_4_2_07_TOPO_FRAME = 'JUICE_ROI_GAN_4_2_07' JUICE_ROI_GAN_4_2_07_TOPO_ID = -280001135 JUICE_ROI_GAN_4_2_08_CENTER = 503 JUICE_ROI_GAN_4_2_08_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_2_08_IDCODE = -28000136 JUICE_ROI_GAN_4_2_08_LATLON = ( -32.0, 262.0, 0.5 ) JUICE_ROI_GAN_4_2_08_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_2_08_UP = 'Z' JUICE_ROI_GAN_4_2_08_NORTH = 'Y' JUICE_ROI_GAN_4_2_08_TOPO_FRAME = 'JUICE_ROI_GAN_4_2_08' JUICE_ROI_GAN_4_2_08_TOPO_ID = -280001136 JUICE_ROI_GAN_4_3_01_CENTER = 503 JUICE_ROI_GAN_4_3_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_3_01_IDCODE = -28000137 JUICE_ROI_GAN_4_3_01_LATLON = ( -9.5, 173.5, 0.5 ) JUICE_ROI_GAN_4_3_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_3_01_UP = 'Z' JUICE_ROI_GAN_4_3_01_NORTH = 'Y' JUICE_ROI_GAN_4_3_01_TOPO_FRAME = 'JUICE_ROI_GAN_4_3_01' JUICE_ROI_GAN_4_3_01_TOPO_ID = -280001137 JUICE_ROI_GAN_4_3_02_CENTER = 503 JUICE_ROI_GAN_4_3_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_3_02_IDCODE = -28000138 JUICE_ROI_GAN_4_3_02_LATLON = ( -25.5, 33.0, 0.5 ) JUICE_ROI_GAN_4_3_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_3_02_UP = 'Z' JUICE_ROI_GAN_4_3_02_NORTH = 'Y' JUICE_ROI_GAN_4_3_02_TOPO_FRAME = 'JUICE_ROI_GAN_4_3_02' JUICE_ROI_GAN_4_3_02_TOPO_ID = -280001138 JUICE_ROI_GAN_4_3_03_CENTER = 503 JUICE_ROI_GAN_4_3_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_3_03_IDCODE = -28000139 JUICE_ROI_GAN_4_3_03_LATLON = ( -30.5, 147.0, 0.5 ) JUICE_ROI_GAN_4_3_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_3_03_UP = 'Z' JUICE_ROI_GAN_4_3_03_NORTH = 'Y' JUICE_ROI_GAN_4_3_03_TOPO_FRAME = 'JUICE_ROI_GAN_4_3_03' JUICE_ROI_GAN_4_3_03_TOPO_ID = -280001139 JUICE_ROI_GAN_4_3_04_CENTER = 503 JUICE_ROI_GAN_4_3_04_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_3_04_IDCODE = -28000140 JUICE_ROI_GAN_4_3_04_LATLON = ( -32.0, 244.0, 0.5 ) JUICE_ROI_GAN_4_3_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_3_04_UP = 'Z' JUICE_ROI_GAN_4_3_04_NORTH = 'Y' JUICE_ROI_GAN_4_3_04_TOPO_FRAME = 'JUICE_ROI_GAN_4_3_04' JUICE_ROI_GAN_4_3_04_TOPO_ID = -280001140 JUICE_ROI_GAN_4_3_05_CENTER = 503 JUICE_ROI_GAN_4_3_05_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_3_05_IDCODE = -28000141 JUICE_ROI_GAN_4_3_05_LATLON = ( -40.0, 13.5, 0.5 ) JUICE_ROI_GAN_4_3_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_3_05_UP = 'Z' JUICE_ROI_GAN_4_3_05_NORTH = 'Y' JUICE_ROI_GAN_4_3_05_TOPO_FRAME = 'JUICE_ROI_GAN_4_3_05' JUICE_ROI_GAN_4_3_05_TOPO_ID = -280001141 JUICE_ROI_GAN_4_3_06_CENTER = 503 JUICE_ROI_GAN_4_3_06_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_3_06_IDCODE = -28000142 JUICE_ROI_GAN_4_3_06_LATLON = ( 21.5, 106.0, 0.5 ) JUICE_ROI_GAN_4_3_06_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_3_06_UP = 'Z' JUICE_ROI_GAN_4_3_06_NORTH = 'Y' JUICE_ROI_GAN_4_3_06_TOPO_FRAME = 'JUICE_ROI_GAN_4_3_06' JUICE_ROI_GAN_4_3_06_TOPO_ID = -280001142 JUICE_ROI_GAN_4_3_07_CENTER = 503 JUICE_ROI_GAN_4_3_07_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_3_07_IDCODE = -28000143 JUICE_ROI_GAN_4_3_07_LATLON = ( 65.0, 116.0, 0.5 ) JUICE_ROI_GAN_4_3_07_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_3_07_UP = 'Z' JUICE_ROI_GAN_4_3_07_NORTH = 'Y' JUICE_ROI_GAN_4_3_07_TOPO_FRAME = 'JUICE_ROI_GAN_4_3_07' JUICE_ROI_GAN_4_3_07_TOPO_ID = -280001143 JUICE_ROI_GAN_4_3_08_CENTER = 503 JUICE_ROI_GAN_4_3_08_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_3_08_IDCODE = -28000144 JUICE_ROI_GAN_4_3_08_LATLON = ( -11.5, 316.5, 0.5 ) JUICE_ROI_GAN_4_3_08_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_3_08_UP = 'Z' JUICE_ROI_GAN_4_3_08_NORTH = 'Y' JUICE_ROI_GAN_4_3_08_TOPO_FRAME = 'JUICE_ROI_GAN_4_3_08' JUICE_ROI_GAN_4_3_08_TOPO_ID = -280001144 JUICE_ROI_GAN_4_3_09_CENTER = 503 JUICE_ROI_GAN_4_3_09_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_3_09_IDCODE = -28000145 JUICE_ROI_GAN_4_3_09_LATLON = ( -29.0, 175.0, 0.5 ) JUICE_ROI_GAN_4_3_09_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_3_09_UP = 'Z' JUICE_ROI_GAN_4_3_09_NORTH = 'Y' JUICE_ROI_GAN_4_3_09_TOPO_FRAME = 'JUICE_ROI_GAN_4_3_09' JUICE_ROI_GAN_4_3_09_TOPO_ID = -280001145 JUICE_ROI_GAN_4_4_01_CENTER = 503 JUICE_ROI_GAN_4_4_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_01_IDCODE = -28000146 JUICE_ROI_GAN_4_4_01_LATLON = ( -1.0, 104.5, 0.5 ) JUICE_ROI_GAN_4_4_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_01_UP = 'Z' JUICE_ROI_GAN_4_4_01_NORTH = 'Y' JUICE_ROI_GAN_4_4_01_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_01' JUICE_ROI_GAN_4_4_01_TOPO_ID = -280001146 JUICE_ROI_GAN_4_4_02_CENTER = 503 JUICE_ROI_GAN_4_4_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_02_IDCODE = -28000147 JUICE_ROI_GAN_4_4_02_LATLON = ( 69.0, 328.0, 0.5 ) JUICE_ROI_GAN_4_4_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_02_UP = 'Z' JUICE_ROI_GAN_4_4_02_NORTH = 'Y' JUICE_ROI_GAN_4_4_02_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_02' JUICE_ROI_GAN_4_4_02_TOPO_ID = -280001147 JUICE_ROI_GAN_4_4_03_CENTER = 503 JUICE_ROI_GAN_4_4_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_03_IDCODE = -28000148 JUICE_ROI_GAN_4_4_03_LATLON = ( 74.5, 19.5, 0.5 ) JUICE_ROI_GAN_4_4_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_03_UP = 'Z' JUICE_ROI_GAN_4_4_03_NORTH = 'Y' JUICE_ROI_GAN_4_4_03_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_03' JUICE_ROI_GAN_4_4_03_TOPO_ID = -280001148 JUICE_ROI_GAN_4_4_04_CENTER = 503 JUICE_ROI_GAN_4_4_04_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_04_IDCODE = -28000149 JUICE_ROI_GAN_4_4_04_LATLON = ( -35.0, 217.0, 0.5 ) JUICE_ROI_GAN_4_4_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_04_UP = 'Z' JUICE_ROI_GAN_4_4_04_NORTH = 'Y' JUICE_ROI_GAN_4_4_04_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_04' JUICE_ROI_GAN_4_4_04_TOPO_ID = -280001149 JUICE_ROI_GAN_4_4_05_CENTER = 503 JUICE_ROI_GAN_4_4_05_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_05_IDCODE = -28000150 JUICE_ROI_GAN_4_4_05_LATLON = ( 30.5, 32.5, 0.5 ) JUICE_ROI_GAN_4_4_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_05_UP = 'Z' JUICE_ROI_GAN_4_4_05_NORTH = 'Y' JUICE_ROI_GAN_4_4_05_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_05' JUICE_ROI_GAN_4_4_05_TOPO_ID = -280001150 JUICE_ROI_GAN_4_4_06_CENTER = 503 JUICE_ROI_GAN_4_4_06_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_06_IDCODE = -28000151 JUICE_ROI_GAN_4_4_06_LATLON = ( 4.5, 200.25, 0.5 ) JUICE_ROI_GAN_4_4_06_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_06_UP = 'Z' JUICE_ROI_GAN_4_4_06_NORTH = 'Y' JUICE_ROI_GAN_4_4_06_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_06' JUICE_ROI_GAN_4_4_06_TOPO_ID = -280001151 JUICE_ROI_GAN_4_4_07_CENTER = 503 JUICE_ROI_GAN_4_4_07_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_07_IDCODE = -28000152 JUICE_ROI_GAN_4_4_07_LATLON = ( -2.3, 228.0, 0.5 ) JUICE_ROI_GAN_4_4_07_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_07_UP = 'Z' JUICE_ROI_GAN_4_4_07_NORTH = 'Y' JUICE_ROI_GAN_4_4_07_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_07' JUICE_ROI_GAN_4_4_07_TOPO_ID = -280001152 JUICE_ROI_GAN_4_4_08_CENTER = 503 JUICE_ROI_GAN_4_4_08_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_08_IDCODE = -28000153 JUICE_ROI_GAN_4_4_08_LATLON = ( 49.0, 300.5, 0.5 ) JUICE_ROI_GAN_4_4_08_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_08_UP = 'Z' JUICE_ROI_GAN_4_4_08_NORTH = 'Y' JUICE_ROI_GAN_4_4_08_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_08' JUICE_ROI_GAN_4_4_08_TOPO_ID = -280001153 JUICE_ROI_GAN_4_4_09_CENTER = 503 JUICE_ROI_GAN_4_4_09_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_09_IDCODE = -28000154 JUICE_ROI_GAN_4_4_09_LATLON = ( 49.5, 304.5, 0.5 ) JUICE_ROI_GAN_4_4_09_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_09_UP = 'Z' JUICE_ROI_GAN_4_4_09_NORTH = 'Y' JUICE_ROI_GAN_4_4_09_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_09' JUICE_ROI_GAN_4_4_09_TOPO_ID = -280001154 JUICE_ROI_GAN_4_4_10_CENTER = 503 JUICE_ROI_GAN_4_4_10_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_10_IDCODE = -28000155 JUICE_ROI_GAN_4_4_10_LATLON = ( -18.75, 307.25, 0.5 ) JUICE_ROI_GAN_4_4_10_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_10_UP = 'Z' JUICE_ROI_GAN_4_4_10_NORTH = 'Y' JUICE_ROI_GAN_4_4_10_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_10' JUICE_ROI_GAN_4_4_10_TOPO_ID = -280001155 JUICE_ROI_GAN_4_4_11_CENTER = 503 JUICE_ROI_GAN_4_4_11_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_4_11_IDCODE = -28000156 JUICE_ROI_GAN_4_4_11_LATLON = ( -27.25, 313.75, 0.5 ) JUICE_ROI_GAN_4_4_11_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_4_11_UP = 'Z' JUICE_ROI_GAN_4_4_11_NORTH = 'Y' JUICE_ROI_GAN_4_4_11_TOPO_FRAME = 'JUICE_ROI_GAN_4_4_11' JUICE_ROI_GAN_4_4_11_TOPO_ID = -280001156 JUICE_ROI_GAN_4_5_01_CENTER = 503 JUICE_ROI_GAN_4_5_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_01_IDCODE = -28000157 JUICE_ROI_GAN_4_5_01_LATLON = ( 34.0, 206.5, 0.5 ) JUICE_ROI_GAN_4_5_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_01_UP = 'Z' JUICE_ROI_GAN_4_5_01_NORTH = 'Y' JUICE_ROI_GAN_4_5_01_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_01' JUICE_ROI_GAN_4_5_01_TOPO_ID = -280001157 JUICE_ROI_GAN_4_5_02_CENTER = 503 JUICE_ROI_GAN_4_5_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_02_IDCODE = -28000158 JUICE_ROI_GAN_4_5_02_LATLON = ( 14.0, 228.5, 0.5 ) JUICE_ROI_GAN_4_5_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_02_UP = 'Z' JUICE_ROI_GAN_4_5_02_NORTH = 'Y' JUICE_ROI_GAN_4_5_02_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_02' JUICE_ROI_GAN_4_5_02_TOPO_ID = -280001158 JUICE_ROI_GAN_4_5_03_CENTER = 503 JUICE_ROI_GAN_4_5_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_03_IDCODE = -28000159 JUICE_ROI_GAN_4_5_03_LATLON = ( 22.5, 179.0, 0.5 ) JUICE_ROI_GAN_4_5_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_03_UP = 'Z' JUICE_ROI_GAN_4_5_03_NORTH = 'Y' JUICE_ROI_GAN_4_5_03_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_03' JUICE_ROI_GAN_4_5_03_TOPO_ID = -280001159 JUICE_ROI_GAN_4_5_04_CENTER = 503 JUICE_ROI_GAN_4_5_04_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_04_IDCODE = -28000160 JUICE_ROI_GAN_4_5_04_LATLON = ( 29.0, 265.5, 0.5 ) JUICE_ROI_GAN_4_5_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_04_UP = 'Z' JUICE_ROI_GAN_4_5_04_NORTH = 'Y' JUICE_ROI_GAN_4_5_04_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_04' JUICE_ROI_GAN_4_5_04_TOPO_ID = -280001160 JUICE_ROI_GAN_4_5_05_CENTER = 503 JUICE_ROI_GAN_4_5_05_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_05_IDCODE = -28000161 JUICE_ROI_GAN_4_5_05_LATLON = ( 2.5, 5.0, 0.5 ) JUICE_ROI_GAN_4_5_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_05_UP = 'Z' JUICE_ROI_GAN_4_5_05_NORTH = 'Y' JUICE_ROI_GAN_4_5_05_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_05' JUICE_ROI_GAN_4_5_05_TOPO_ID = -280001161 JUICE_ROI_GAN_4_5_06_CENTER = 503 JUICE_ROI_GAN_4_5_06_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_06_IDCODE = -28000162 JUICE_ROI_GAN_4_5_06_LATLON = ( -11.5, 221.5, 0.5 ) JUICE_ROI_GAN_4_5_06_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_06_UP = 'Z' JUICE_ROI_GAN_4_5_06_NORTH = 'Y' JUICE_ROI_GAN_4_5_06_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_06' JUICE_ROI_GAN_4_5_06_TOPO_ID = -280001162 JUICE_ROI_GAN_4_5_07_CENTER = 503 JUICE_ROI_GAN_4_5_07_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_07_IDCODE = -28000163 JUICE_ROI_GAN_4_5_07_LATLON = ( 17.5, 142.5, 0.5 ) JUICE_ROI_GAN_4_5_07_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_07_UP = 'Z' JUICE_ROI_GAN_4_5_07_NORTH = 'Y' JUICE_ROI_GAN_4_5_07_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_07' JUICE_ROI_GAN_4_5_07_TOPO_ID = -280001163 JUICE_ROI_GAN_4_5_08_CENTER = 503 JUICE_ROI_GAN_4_5_08_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_08_IDCODE = -28000164 JUICE_ROI_GAN_4_5_08_LATLON = ( 14.0, 156.5, 0.5 ) JUICE_ROI_GAN_4_5_08_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_08_UP = 'Z' JUICE_ROI_GAN_4_5_08_NORTH = 'Y' JUICE_ROI_GAN_4_5_08_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_08' JUICE_ROI_GAN_4_5_08_TOPO_ID = -280001164 JUICE_ROI_GAN_4_5_09_CENTER = 503 JUICE_ROI_GAN_4_5_09_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_09_IDCODE = -28000165 JUICE_ROI_GAN_4_5_09_LATLON = ( 11.0, 150.5, 0.5 ) JUICE_ROI_GAN_4_5_09_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_09_UP = 'Z' JUICE_ROI_GAN_4_5_09_NORTH = 'Y' JUICE_ROI_GAN_4_5_09_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_09' JUICE_ROI_GAN_4_5_09_TOPO_ID = -280001165 JUICE_ROI_GAN_4_5_10_CENTER = 503 JUICE_ROI_GAN_4_5_10_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_10_IDCODE = -28000166 JUICE_ROI_GAN_4_5_10_LATLON = ( -67.0, 92.0, 0.5 ) JUICE_ROI_GAN_4_5_10_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_10_UP = 'Z' JUICE_ROI_GAN_4_5_10_NORTH = 'Y' JUICE_ROI_GAN_4_5_10_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_10' JUICE_ROI_GAN_4_5_10_TOPO_ID = -280001166 JUICE_ROI_GAN_4_5_11_CENTER = 503 JUICE_ROI_GAN_4_5_11_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_11_IDCODE = -28000167 JUICE_ROI_GAN_4_5_11_LATLON = ( -67.0, 76.0, 0.5 ) JUICE_ROI_GAN_4_5_11_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_11_UP = 'Z' JUICE_ROI_GAN_4_5_11_NORTH = 'Y' JUICE_ROI_GAN_4_5_11_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_11' JUICE_ROI_GAN_4_5_11_TOPO_ID = -280001167 JUICE_ROI_GAN_4_5_12_CENTER = 503 JUICE_ROI_GAN_4_5_12_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_12_IDCODE = -28000168 JUICE_ROI_GAN_4_5_12_LATLON = ( 16.5, 237.0, 0.5 ) JUICE_ROI_GAN_4_5_12_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_12_UP = 'Z' JUICE_ROI_GAN_4_5_12_NORTH = 'Y' JUICE_ROI_GAN_4_5_12_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_12' JUICE_ROI_GAN_4_5_12_TOPO_ID = -280001168 JUICE_ROI_GAN_4_5_13_CENTER = 503 JUICE_ROI_GAN_4_5_13_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_13_IDCODE = -28000169 JUICE_ROI_GAN_4_5_13_LATLON = ( 30.0, 27.0, 0.5 ) JUICE_ROI_GAN_4_5_13_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_13_UP = 'Z' JUICE_ROI_GAN_4_5_13_NORTH = 'Y' JUICE_ROI_GAN_4_5_13_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_13' JUICE_ROI_GAN_4_5_13_TOPO_ID = -280001169 JUICE_ROI_GAN_4_5_14_CENTER = 503 JUICE_ROI_GAN_4_5_14_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_5_14_IDCODE = -28000170 JUICE_ROI_GAN_4_5_14_LATLON = ( -9.5, 34.0, 0.5 ) JUICE_ROI_GAN_4_5_14_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_5_14_UP = 'Z' JUICE_ROI_GAN_4_5_14_NORTH = 'Y' JUICE_ROI_GAN_4_5_14_TOPO_FRAME = 'JUICE_ROI_GAN_4_5_14' JUICE_ROI_GAN_4_5_14_TOPO_ID = -280001170 JUICE_ROI_GAN_4_6_01_CENTER = 503 JUICE_ROI_GAN_4_6_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_6_01_IDCODE = -28000171 JUICE_ROI_GAN_4_6_01_LATLON = ( -65.5, 233.5, 0.5 ) JUICE_ROI_GAN_4_6_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_6_01_UP = 'Z' JUICE_ROI_GAN_4_6_01_NORTH = 'Y' JUICE_ROI_GAN_4_6_01_TOPO_FRAME = 'JUICE_ROI_GAN_4_6_01' JUICE_ROI_GAN_4_6_01_TOPO_ID = -280001171 JUICE_ROI_GAN_4_6_02_CENTER = 503 JUICE_ROI_GAN_4_6_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_6_02_IDCODE = -28000172 JUICE_ROI_GAN_4_6_02_LATLON = ( -7.0, 239.0, 0.5 ) JUICE_ROI_GAN_4_6_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_6_02_UP = 'Z' JUICE_ROI_GAN_4_6_02_NORTH = 'Y' JUICE_ROI_GAN_4_6_02_TOPO_FRAME = 'JUICE_ROI_GAN_4_6_02' JUICE_ROI_GAN_4_6_02_TOPO_ID = -280001172 JUICE_ROI_GAN_4_6_03_CENTER = 503 JUICE_ROI_GAN_4_6_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_6_03_IDCODE = -28000173 JUICE_ROI_GAN_4_6_03_LATLON = ( 54.5, 292.5, 0.5 ) JUICE_ROI_GAN_4_6_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_6_03_UP = 'Z' JUICE_ROI_GAN_4_6_03_NORTH = 'Y' JUICE_ROI_GAN_4_6_03_TOPO_FRAME = 'JUICE_ROI_GAN_4_6_03' JUICE_ROI_GAN_4_6_03_TOPO_ID = -280001173 JUICE_ROI_GAN_4_7_01_CENTER = 503 JUICE_ROI_GAN_4_7_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_7_01_IDCODE = -28000174 JUICE_ROI_GAN_4_7_01_LATLON = ( 7.0, 82.5, 0.5 ) JUICE_ROI_GAN_4_7_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_7_01_UP = 'Z' JUICE_ROI_GAN_4_7_01_NORTH = 'Y' JUICE_ROI_GAN_4_7_01_TOPO_FRAME = 'JUICE_ROI_GAN_4_7_01' JUICE_ROI_GAN_4_7_01_TOPO_ID = -280001174 JUICE_ROI_GAN_4_7_02_CENTER = 503 JUICE_ROI_GAN_4_7_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_7_02_IDCODE = -28000175 JUICE_ROI_GAN_4_7_02_LATLON = ( 10.5, 276.0, 0.5 ) JUICE_ROI_GAN_4_7_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_7_02_UP = 'Z' JUICE_ROI_GAN_4_7_02_NORTH = 'Y' JUICE_ROI_GAN_4_7_02_TOPO_FRAME = 'JUICE_ROI_GAN_4_7_02' JUICE_ROI_GAN_4_7_02_TOPO_ID = -280001175 JUICE_ROI_GAN_4_7_03_CENTER = 503 JUICE_ROI_GAN_4_7_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_7_03_IDCODE = -28000176 JUICE_ROI_GAN_4_7_03_LATLON = ( 38.0, 346.5, 0.5 ) JUICE_ROI_GAN_4_7_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_7_03_UP = 'Z' JUICE_ROI_GAN_4_7_03_NORTH = 'Y' JUICE_ROI_GAN_4_7_03_TOPO_FRAME = 'JUICE_ROI_GAN_4_7_03' JUICE_ROI_GAN_4_7_03_TOPO_ID = -280001176 JUICE_ROI_GAN_4_7_04_CENTER = 503 JUICE_ROI_GAN_4_7_04_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_4_7_04_IDCODE = -28000177 JUICE_ROI_GAN_4_7_04_LATLON = ( 16.0, 6.0, 0.5 ) JUICE_ROI_GAN_4_7_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_4_7_04_UP = 'Z' JUICE_ROI_GAN_4_7_04_NORTH = 'Y' JUICE_ROI_GAN_4_7_04_TOPO_FRAME = 'JUICE_ROI_GAN_4_7_04' JUICE_ROI_GAN_4_7_04_TOPO_ID = -280001177 JUICE_ROI_GAN_5_1_00_CENTER = 503 JUICE_ROI_GAN_5_1_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_1_00_IDCODE = -28000178 JUICE_ROI_GAN_5_1_00_LATLON = ( 33.0, 139.0, 0.5 ) JUICE_ROI_GAN_5_1_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_1_00_UP = 'Z' JUICE_ROI_GAN_5_1_00_NORTH = 'Y' JUICE_ROI_GAN_5_1_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_1_00' JUICE_ROI_GAN_5_1_00_TOPO_ID = -280001178 JUICE_ROI_GAN_5_2_00_CENTER = 503 JUICE_ROI_GAN_5_2_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_2_00_IDCODE = -28000179 JUICE_ROI_GAN_5_2_00_LATLON = ( 13.0, 332.0, 0.5 ) JUICE_ROI_GAN_5_2_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_2_00_UP = 'Z' JUICE_ROI_GAN_5_2_00_NORTH = 'Y' JUICE_ROI_GAN_5_2_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_2_00' JUICE_ROI_GAN_5_2_00_TOPO_ID = -280001179 JUICE_ROI_GAN_5_3_00_CENTER = 503 JUICE_ROI_GAN_5_3_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_3_00_IDCODE = -28000180 JUICE_ROI_GAN_5_3_00_LATLON = ( -25.0, 119.5, 0.5 ) JUICE_ROI_GAN_5_3_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_3_00_UP = 'Z' JUICE_ROI_GAN_5_3_00_NORTH = 'Y' JUICE_ROI_GAN_5_3_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_3_00' JUICE_ROI_GAN_5_3_00_TOPO_ID = -280001180 JUICE_ROI_GAN_5_4_00_CENTER = 503 JUICE_ROI_GAN_5_4_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_4_00_IDCODE = -28000181 JUICE_ROI_GAN_5_4_00_LATLON = ( 42.0, 19.0, 0.5 ) JUICE_ROI_GAN_5_4_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_4_00_UP = 'Z' JUICE_ROI_GAN_5_4_00_NORTH = 'Y' JUICE_ROI_GAN_5_4_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_4_00' JUICE_ROI_GAN_5_4_00_TOPO_ID = -280001181 JUICE_ROI_GAN_5_5_00_CENTER = 503 JUICE_ROI_GAN_5_5_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_5_00_IDCODE = -28000182 JUICE_ROI_GAN_5_5_00_LATLON = ( -8.0, 84.0, 0.5 ) JUICE_ROI_GAN_5_5_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_5_00_UP = 'Z' JUICE_ROI_GAN_5_5_00_NORTH = 'Y' JUICE_ROI_GAN_5_5_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_5_00' JUICE_ROI_GAN_5_5_00_TOPO_ID = -280001182 JUICE_ROI_GAN_5_6_00_CENTER = 503 JUICE_ROI_GAN_5_6_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_6_00_IDCODE = -28000183 JUICE_ROI_GAN_5_6_00_LATLON = ( 27.5, 59.0, 0.5 ) JUICE_ROI_GAN_5_6_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_6_00_UP = 'Z' JUICE_ROI_GAN_5_6_00_NORTH = 'Y' JUICE_ROI_GAN_5_6_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_6_00' JUICE_ROI_GAN_5_6_00_TOPO_ID = -280001183 JUICE_ROI_GAN_5_7_00_CENTER = 503 JUICE_ROI_GAN_5_7_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_7_00_IDCODE = -28000184 JUICE_ROI_GAN_5_7_00_LATLON = ( 0.5, 351.5, 0.5 ) JUICE_ROI_GAN_5_7_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_7_00_UP = 'Z' JUICE_ROI_GAN_5_7_00_NORTH = 'Y' JUICE_ROI_GAN_5_7_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_7_00' JUICE_ROI_GAN_5_7_00_TOPO_ID = -280001184 JUICE_ROI_GAN_5_8_00_CENTER = 503 JUICE_ROI_GAN_5_8_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_8_00_IDCODE = -28000185 JUICE_ROI_GAN_5_8_00_LATLON = ( 43.5, 183.0, 0.5 ) JUICE_ROI_GAN_5_8_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_8_00_UP = 'Z' JUICE_ROI_GAN_5_8_00_NORTH = 'Y' JUICE_ROI_GAN_5_8_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_8_00' JUICE_ROI_GAN_5_8_00_TOPO_ID = -280001185 JUICE_ROI_GAN_5_9_00_CENTER = 503 JUICE_ROI_GAN_5_9_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_9_00_IDCODE = -28000186 JUICE_ROI_GAN_5_9_00_LATLON = ( 15.5, 254.0, 0.5 ) JUICE_ROI_GAN_5_9_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_9_00_UP = 'Z' JUICE_ROI_GAN_5_9_00_NORTH = 'Y' JUICE_ROI_GAN_5_9_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_9_00' JUICE_ROI_GAN_5_9_00_TOPO_ID = -280001186 JUICE_ROI_GAN_5_10_00_CENTER = 503 JUICE_ROI_GAN_5_10_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_10_00_IDCODE = -28000187 JUICE_ROI_GAN_5_10_00_LATLON = ( 61.5, 348.5, 0.5 ) JUICE_ROI_GAN_5_10_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_10_00_UP = 'Z' JUICE_ROI_GAN_5_10_00_NORTH = 'Y' JUICE_ROI_GAN_5_10_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_10_00' JUICE_ROI_GAN_5_10_00_TOPO_ID = -280001187 JUICE_ROI_GAN_5_11_00_CENTER = 503 JUICE_ROI_GAN_5_11_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_11_00_IDCODE = -28000188 JUICE_ROI_GAN_5_11_00_LATLON = ( 22.0, 282.0, 0.5 ) JUICE_ROI_GAN_5_11_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_11_00_UP = 'Z' JUICE_ROI_GAN_5_11_00_NORTH = 'Y' JUICE_ROI_GAN_5_11_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_11_00' JUICE_ROI_GAN_5_11_00_TOPO_ID = -280001188 JUICE_ROI_GAN_5_12_00_CENTER = 503 JUICE_ROI_GAN_5_12_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_5_12_00_IDCODE = -28000189 JUICE_ROI_GAN_5_12_00_LATLON = ( -31.5, 295.0, 0.5 ) JUICE_ROI_GAN_5_12_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_5_12_00_UP = 'Z' JUICE_ROI_GAN_5_12_00_NORTH = 'Y' JUICE_ROI_GAN_5_12_00_TOPO_FRAME = 'JUICE_ROI_GAN_5_12_00' JUICE_ROI_GAN_5_12_00_TOPO_ID = -280001189 JUICE_ROI_GAN_6_1_01_CENTER = 503 JUICE_ROI_GAN_6_1_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_1_01_IDCODE = -28000190 JUICE_ROI_GAN_6_1_01_LATLON = ( -11.0, 185.0, 0.5 ) JUICE_ROI_GAN_6_1_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_1_01_UP = 'Z' JUICE_ROI_GAN_6_1_01_NORTH = 'Y' JUICE_ROI_GAN_6_1_01_TOPO_FRAME = 'JUICE_ROI_GAN_6_1_01' JUICE_ROI_GAN_6_1_01_TOPO_ID = -280001190 JUICE_ROI_GAN_6_1_02_CENTER = 503 JUICE_ROI_GAN_6_1_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_1_02_IDCODE = -28000191 JUICE_ROI_GAN_6_1_02_LATLON = ( 19.0, 206.5, 0.5 ) JUICE_ROI_GAN_6_1_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_1_02_UP = 'Z' JUICE_ROI_GAN_6_1_02_NORTH = 'Y' JUICE_ROI_GAN_6_1_02_TOPO_FRAME = 'JUICE_ROI_GAN_6_1_02' JUICE_ROI_GAN_6_1_02_TOPO_ID = -280001191 JUICE_ROI_GAN_6_1_03_CENTER = 503 JUICE_ROI_GAN_6_1_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_1_03_IDCODE = -28000192 JUICE_ROI_GAN_6_1_03_LATLON = ( 27.5, 231.0, 0.5 ) JUICE_ROI_GAN_6_1_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_1_03_UP = 'Z' JUICE_ROI_GAN_6_1_03_NORTH = 'Y' JUICE_ROI_GAN_6_1_03_TOPO_FRAME = 'JUICE_ROI_GAN_6_1_03' JUICE_ROI_GAN_6_1_03_TOPO_ID = -280001192 JUICE_ROI_GAN_6_1_04_CENTER = 503 JUICE_ROI_GAN_6_1_04_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_1_04_IDCODE = -28000193 JUICE_ROI_GAN_6_1_04_LATLON = ( 17.5, 304.5, 0.5 ) JUICE_ROI_GAN_6_1_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_1_04_UP = 'Z' JUICE_ROI_GAN_6_1_04_NORTH = 'Y' JUICE_ROI_GAN_6_1_04_TOPO_FRAME = 'JUICE_ROI_GAN_6_1_04' JUICE_ROI_GAN_6_1_04_TOPO_ID = -280001193 JUICE_ROI_GAN_6_1_05_CENTER = 503 JUICE_ROI_GAN_6_1_05_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_1_05_IDCODE = -28000194 JUICE_ROI_GAN_6_1_05_LATLON = ( 34.0, 168.0, 0.5 ) JUICE_ROI_GAN_6_1_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_1_05_UP = 'Z' JUICE_ROI_GAN_6_1_05_NORTH = 'Y' JUICE_ROI_GAN_6_1_05_TOPO_FRAME = 'JUICE_ROI_GAN_6_1_05' JUICE_ROI_GAN_6_1_05_TOPO_ID = -280001194 JUICE_ROI_GAN_6_1_06_CENTER = 503 JUICE_ROI_GAN_6_1_06_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_1_06_IDCODE = -28000195 JUICE_ROI_GAN_6_1_06_LATLON = ( 39.5, 157.0, 0.5 ) JUICE_ROI_GAN_6_1_06_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_1_06_UP = 'Z' JUICE_ROI_GAN_6_1_06_NORTH = 'Y' JUICE_ROI_GAN_6_1_06_TOPO_FRAME = 'JUICE_ROI_GAN_6_1_06' JUICE_ROI_GAN_6_1_06_TOPO_ID = -280001195 JUICE_ROI_GAN_6_1_07_CENTER = 503 JUICE_ROI_GAN_6_1_07_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_1_07_IDCODE = -28000196 JUICE_ROI_GAN_6_1_07_LATLON = ( -24.0, 11.5, 0.5 ) JUICE_ROI_GAN_6_1_07_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_1_07_UP = 'Z' JUICE_ROI_GAN_6_1_07_NORTH = 'Y' JUICE_ROI_GAN_6_1_07_TOPO_FRAME = 'JUICE_ROI_GAN_6_1_07' JUICE_ROI_GAN_6_1_07_TOPO_ID = -280001196 JUICE_ROI_GAN_6_1_08_CENTER = 503 JUICE_ROI_GAN_6_1_08_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_1_08_IDCODE = -28000197 JUICE_ROI_GAN_6_1_08_LATLON = ( 12.0, 170.0, 0.5 ) JUICE_ROI_GAN_6_1_08_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_1_08_UP = 'Z' JUICE_ROI_GAN_6_1_08_NORTH = 'Y' JUICE_ROI_GAN_6_1_08_TOPO_FRAME = 'JUICE_ROI_GAN_6_1_08' JUICE_ROI_GAN_6_1_08_TOPO_ID = -280001197 JUICE_ROI_GAN_6_2_01_CENTER = 503 JUICE_ROI_GAN_6_2_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_2_01_IDCODE = -28000198 JUICE_ROI_GAN_6_2_01_LATLON = ( -11.0, 97.5, 0.5 ) JUICE_ROI_GAN_6_2_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_2_01_UP = 'Z' JUICE_ROI_GAN_6_2_01_NORTH = 'Y' JUICE_ROI_GAN_6_2_01_TOPO_FRAME = 'JUICE_ROI_GAN_6_2_01' JUICE_ROI_GAN_6_2_01_TOPO_ID = -280001198 JUICE_ROI_GAN_6_2_02_CENTER = 503 JUICE_ROI_GAN_6_2_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_2_02_IDCODE = -28000199 JUICE_ROI_GAN_6_2_02_LATLON = ( 23.5, 155.0, 0.5 ) JUICE_ROI_GAN_6_2_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_2_02_UP = 'Z' JUICE_ROI_GAN_6_2_02_NORTH = 'Y' JUICE_ROI_GAN_6_2_02_TOPO_FRAME = 'JUICE_ROI_GAN_6_2_02' JUICE_ROI_GAN_6_2_02_TOPO_ID = -280001199 JUICE_ROI_GAN_6_2_03_CENTER = 503 JUICE_ROI_GAN_6_2_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_2_03_IDCODE = -28000200 JUICE_ROI_GAN_6_2_03_LATLON = ( -18.0, 149.0, 0.5 ) JUICE_ROI_GAN_6_2_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_2_03_UP = 'Z' JUICE_ROI_GAN_6_2_03_NORTH = 'Y' JUICE_ROI_GAN_6_2_03_TOPO_FRAME = 'JUICE_ROI_GAN_6_2_03' JUICE_ROI_GAN_6_2_03_TOPO_ID = -280001200 JUICE_ROI_GAN_6_2_04_CENTER = 503 JUICE_ROI_GAN_6_2_04_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_2_04_IDCODE = -28000201 JUICE_ROI_GAN_6_2_04_LATLON = ( -19.0, 346.0, 0.5 ) JUICE_ROI_GAN_6_2_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_2_04_UP = 'Z' JUICE_ROI_GAN_6_2_04_NORTH = 'Y' JUICE_ROI_GAN_6_2_04_TOPO_FRAME = 'JUICE_ROI_GAN_6_2_04' JUICE_ROI_GAN_6_2_04_TOPO_ID = -280001201 JUICE_ROI_GAN_6_2_05_CENTER = 503 JUICE_ROI_GAN_6_2_05_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_2_05_IDCODE = -28000202 JUICE_ROI_GAN_6_2_05_LATLON = ( -16.5, 12.5, 0.5 ) JUICE_ROI_GAN_6_2_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_2_05_UP = 'Z' JUICE_ROI_GAN_6_2_05_NORTH = 'Y' JUICE_ROI_GAN_6_2_05_TOPO_FRAME = 'JUICE_ROI_GAN_6_2_05' JUICE_ROI_GAN_6_2_05_TOPO_ID = -280001202 JUICE_ROI_GAN_6_3_01_CENTER = 503 JUICE_ROI_GAN_6_3_01_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_01_IDCODE = -28000203 JUICE_ROI_GAN_6_3_01_LATLON = ( -37.5, 227.5, 0.5 ) JUICE_ROI_GAN_6_3_01_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_01_UP = 'Z' JUICE_ROI_GAN_6_3_01_NORTH = 'Y' JUICE_ROI_GAN_6_3_01_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_01' JUICE_ROI_GAN_6_3_01_TOPO_ID = -280001203 JUICE_ROI_GAN_6_3_02_CENTER = 503 JUICE_ROI_GAN_6_3_02_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_02_IDCODE = -28000204 JUICE_ROI_GAN_6_3_02_LATLON = ( -6.0, 210.5, 0.5 ) JUICE_ROI_GAN_6_3_02_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_02_UP = 'Z' JUICE_ROI_GAN_6_3_02_NORTH = 'Y' JUICE_ROI_GAN_6_3_02_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_02' JUICE_ROI_GAN_6_3_02_TOPO_ID = -280001204 JUICE_ROI_GAN_6_3_03_CENTER = 503 JUICE_ROI_GAN_6_3_03_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_03_IDCODE = -28000205 JUICE_ROI_GAN_6_3_03_LATLON = ( 10.0, 187.0, 0.5 ) JUICE_ROI_GAN_6_3_03_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_03_UP = 'Z' JUICE_ROI_GAN_6_3_03_NORTH = 'Y' JUICE_ROI_GAN_6_3_03_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_03' JUICE_ROI_GAN_6_3_03_TOPO_ID = -280001205 JUICE_ROI_GAN_6_3_04_CENTER = 503 JUICE_ROI_GAN_6_3_04_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_04_IDCODE = -28000206 JUICE_ROI_GAN_6_3_04_LATLON = ( -1.0, 44.0, 0.5 ) JUICE_ROI_GAN_6_3_04_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_04_UP = 'Z' JUICE_ROI_GAN_6_3_04_NORTH = 'Y' JUICE_ROI_GAN_6_3_04_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_04' JUICE_ROI_GAN_6_3_04_TOPO_ID = -280001206 JUICE_ROI_GAN_6_3_05_CENTER = 503 JUICE_ROI_GAN_6_3_05_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_05_IDCODE = -28000207 JUICE_ROI_GAN_6_3_05_LATLON = ( -19.0, 186.0, 0.5 ) JUICE_ROI_GAN_6_3_05_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_05_UP = 'Z' JUICE_ROI_GAN_6_3_05_NORTH = 'Y' JUICE_ROI_GAN_6_3_05_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_05' JUICE_ROI_GAN_6_3_05_TOPO_ID = -280001207 JUICE_ROI_GAN_6_3_06_CENTER = 503 JUICE_ROI_GAN_6_3_06_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_06_IDCODE = -28000208 JUICE_ROI_GAN_6_3_06_LATLON = ( 4.5, 285.5, 0.5 ) JUICE_ROI_GAN_6_3_06_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_06_UP = 'Z' JUICE_ROI_GAN_6_3_06_NORTH = 'Y' JUICE_ROI_GAN_6_3_06_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_06' JUICE_ROI_GAN_6_3_06_TOPO_ID = -280001208 JUICE_ROI_GAN_6_3_07_CENTER = 503 JUICE_ROI_GAN_6_3_07_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_07_IDCODE = -28000209 JUICE_ROI_GAN_6_3_07_LATLON = ( -25.5, 308.5, 0.5 ) JUICE_ROI_GAN_6_3_07_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_07_UP = 'Z' JUICE_ROI_GAN_6_3_07_NORTH = 'Y' JUICE_ROI_GAN_6_3_07_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_07' JUICE_ROI_GAN_6_3_07_TOPO_ID = -280001209 JUICE_ROI_GAN_6_3_08_CENTER = 503 JUICE_ROI_GAN_6_3_08_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_08_IDCODE = -28000210 JUICE_ROI_GAN_6_3_08_LATLON = ( -8.5, 295.0, 0.5 ) JUICE_ROI_GAN_6_3_08_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_08_UP = 'Z' JUICE_ROI_GAN_6_3_08_NORTH = 'Y' JUICE_ROI_GAN_6_3_08_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_08' JUICE_ROI_GAN_6_3_08_TOPO_ID = -280001210 JUICE_ROI_GAN_6_3_09_CENTER = 503 JUICE_ROI_GAN_6_3_09_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_09_IDCODE = -28000211 JUICE_ROI_GAN_6_3_09_LATLON = ( 44.0, 51.0, 0.5 ) JUICE_ROI_GAN_6_3_09_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_09_UP = 'Z' JUICE_ROI_GAN_6_3_09_NORTH = 'Y' JUICE_ROI_GAN_6_3_09_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_09' JUICE_ROI_GAN_6_3_09_TOPO_ID = -280001211 JUICE_ROI_GAN_6_3_10_CENTER = 503 JUICE_ROI_GAN_6_3_10_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_10_IDCODE = -28000212 JUICE_ROI_GAN_6_3_10_LATLON = ( 49.0, 171.0, 0.5 ) JUICE_ROI_GAN_6_3_10_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_10_UP = 'Z' JUICE_ROI_GAN_6_3_10_NORTH = 'Y' JUICE_ROI_GAN_6_3_10_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_10' JUICE_ROI_GAN_6_3_10_TOPO_ID = -280001212 JUICE_ROI_GAN_6_3_11_CENTER = 503 JUICE_ROI_GAN_6_3_11_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_11_IDCODE = -28000213 JUICE_ROI_GAN_6_3_11_LATLON = ( 58.5, 187.5, 0.5 ) JUICE_ROI_GAN_6_3_11_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_11_UP = 'Z' JUICE_ROI_GAN_6_3_11_NORTH = 'Y' JUICE_ROI_GAN_6_3_11_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_11' JUICE_ROI_GAN_6_3_11_TOPO_ID = -280001213 JUICE_ROI_GAN_6_3_12_CENTER = 503 JUICE_ROI_GAN_6_3_12_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_12_IDCODE = -28000214 JUICE_ROI_GAN_6_3_12_LATLON = ( -16.5, 184.25, 0.5 ) JUICE_ROI_GAN_6_3_12_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_12_UP = 'Z' JUICE_ROI_GAN_6_3_12_NORTH = 'Y' JUICE_ROI_GAN_6_3_12_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_12' JUICE_ROI_GAN_6_3_12_TOPO_ID = -280001214 JUICE_ROI_GAN_6_3_13_CENTER = 503 JUICE_ROI_GAN_6_3_13_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_6_3_13_IDCODE = -28000215 JUICE_ROI_GAN_6_3_13_LATLON = ( 44.5, 39.0, 0.5 ) JUICE_ROI_GAN_6_3_13_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_6_3_13_UP = 'Z' JUICE_ROI_GAN_6_3_13_NORTH = 'Y' JUICE_ROI_GAN_6_3_13_TOPO_FRAME = 'JUICE_ROI_GAN_6_3_13' JUICE_ROI_GAN_6_3_13_TOPO_ID = -280001215 JUICE_ROI_GAN_7_1_00_CENTER = 503 JUICE_ROI_GAN_7_1_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_7_1_00_IDCODE = -28000216 JUICE_ROI_GAN_7_1_00_LATLON = ( -26.5, 219.5, 0.5 ) JUICE_ROI_GAN_7_1_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_7_1_00_UP = 'Z' JUICE_ROI_GAN_7_1_00_NORTH = 'Y' JUICE_ROI_GAN_7_1_00_TOPO_FRAME = 'JUICE_ROI_GAN_7_1_00' JUICE_ROI_GAN_7_1_00_TOPO_ID = -280001216 JUICE_ROI_GAN_7_2_00_CENTER = 503 JUICE_ROI_GAN_7_2_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_7_2_00_IDCODE = -28000217 JUICE_ROI_GAN_7_2_00_LATLON = ( 27.0, 347.0, 0.5 ) JUICE_ROI_GAN_7_2_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_7_2_00_UP = 'Z' JUICE_ROI_GAN_7_2_00_NORTH = 'Y' JUICE_ROI_GAN_7_2_00_TOPO_FRAME = 'JUICE_ROI_GAN_7_2_00' JUICE_ROI_GAN_7_2_00_TOPO_ID = -280001217 JUICE_ROI_GAN_7_3_00_CENTER = 503 JUICE_ROI_GAN_7_3_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_7_3_00_IDCODE = -28000218 JUICE_ROI_GAN_7_3_00_LATLON = ( 43.0, 348.0, 0.5 ) JUICE_ROI_GAN_7_3_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_7_3_00_UP = 'Z' JUICE_ROI_GAN_7_3_00_NORTH = 'Y' JUICE_ROI_GAN_7_3_00_TOPO_FRAME = 'JUICE_ROI_GAN_7_3_00' JUICE_ROI_GAN_7_3_00_TOPO_ID = -280001218 JUICE_ROI_GAN_7_4_00_CENTER = 503 JUICE_ROI_GAN_7_4_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_7_4_00_IDCODE = -28000219 JUICE_ROI_GAN_7_4_00_LATLON = ( -6.1, 187.7, 0.5 ) JUICE_ROI_GAN_7_4_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_7_4_00_UP = 'Z' JUICE_ROI_GAN_7_4_00_NORTH = 'Y' JUICE_ROI_GAN_7_4_00_TOPO_FRAME = 'JUICE_ROI_GAN_7_4_00' JUICE_ROI_GAN_7_4_00_TOPO_ID = -280001219 JUICE_ROI_GAN_7_5_00_CENTER = 503 JUICE_ROI_GAN_7_5_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_7_5_00_IDCODE = -28000220 JUICE_ROI_GAN_7_5_00_LATLON = ( -16.0, 28.0, 0.5 ) JUICE_ROI_GAN_7_5_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_7_5_00_UP = 'Z' JUICE_ROI_GAN_7_5_00_NORTH = 'Y' JUICE_ROI_GAN_7_5_00_TOPO_FRAME = 'JUICE_ROI_GAN_7_5_00' JUICE_ROI_GAN_7_5_00_TOPO_ID = -280001220 JUICE_ROI_GAN_7_6_00_CENTER = 503 JUICE_ROI_GAN_7_6_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_7_6_00_IDCODE = -28000221 JUICE_ROI_GAN_7_6_00_LATLON = ( -1.9500000000000002, 110.0, 0.5 ) JUICE_ROI_GAN_7_6_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_7_6_00_UP = 'Z' JUICE_ROI_GAN_7_6_00_NORTH = 'Y' JUICE_ROI_GAN_7_6_00_TOPO_FRAME = 'JUICE_ROI_GAN_7_6_00' JUICE_ROI_GAN_7_6_00_TOPO_ID = -280001221 JUICE_ROI_GAN_7_7_00_CENTER = 503 JUICE_ROI_GAN_7_7_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_7_7_00_IDCODE = -28000222 JUICE_ROI_GAN_7_7_00_LATLON = ( 41.5, 162.5, 0.5 ) JUICE_ROI_GAN_7_7_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_7_7_00_UP = 'Z' JUICE_ROI_GAN_7_7_00_NORTH = 'Y' JUICE_ROI_GAN_7_7_00_TOPO_FRAME = 'JUICE_ROI_GAN_7_7_00' JUICE_ROI_GAN_7_7_00_TOPO_ID = -280001222 JUICE_ROI_GAN_7_8_00_CENTER = 503 JUICE_ROI_GAN_7_8_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_7_8_00_IDCODE = -28000223 JUICE_ROI_GAN_7_8_00_LATLON = ( 37.5, 195.0, 0.5 ) JUICE_ROI_GAN_7_8_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_7_8_00_UP = 'Z' JUICE_ROI_GAN_7_8_00_NORTH = 'Y' JUICE_ROI_GAN_7_8_00_TOPO_FRAME = 'JUICE_ROI_GAN_7_8_00' JUICE_ROI_GAN_7_8_00_TOPO_ID = -280001223 JUICE_ROI_GAN_7_9_00_CENTER = 503 JUICE_ROI_GAN_7_9_00_FRAME = 'IAU_GANYMEDE' JUICE_ROI_GAN_7_9_00_IDCODE = -28000224 JUICE_ROI_GAN_7_9_00_LATLON = ( -11.5, 33.0, 0.5 ) JUICE_ROI_GAN_7_9_00_BOUNDS = ( @2020-01-01T00:00:00, @2100-01-01 ) JUICE_ROI_GAN_7_9_00_UP = 'Z' JUICE_ROI_GAN_7_9_00_NORTH = 'Y' JUICE_ROI_GAN_7_9_00_TOPO_FRAME = 'JUICE_ROI_GAN_7_9_00' JUICE_ROI_GAN_7_9_00_TOPO_ID = -280001224 begintext End of frames kernel.