Commit 696037b4ec4a0b387a0d387486c0df03237b6169

Authored by Goutte
1 parent f57c94fe

Fix an idiot bug that was here for too long.

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
@@ -566,10 +566,11 @@ def get_data_for_target(target_config, input_slug, @@ -566,10 +566,11 @@ def get_data_for_target(target_config, input_slug,
566 if dkey in orbit_data: 566 if dkey in orbit_data:
567 x_hee = orbit_data[dkey][0] 567 x_hee = orbit_data[dkey][0]
568 y_hee = orbit_data[dkey][1] 568 y_hee = orbit_data[dkey][1]
  569 + # /!\ MUST be in the same order as PROPERTIES
569 all_data[dkey] = ( 570 all_data[dkey] = (
570 dtime.strftime("%Y-%m-%dT%H:%M:%S+00:00"), 571 dtime.strftime("%Y-%m-%dT%H:%M:%S+00:00"),
571 vrad, vtan, vtot, 572 vrad, vtan, vtot,
572 - datum_b, datum_t, datum_n, datum_p, datum_a, 573 + datum_b, datum_t, datum_p, datum_n, datum_a,
573 x_hee, y_hee 574 x_hee, y_hee
574 ) 575 )
575 cdf_handle.close() 576 cdf_handle.close()