We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a694fbf + f924ae8 commit c87b0c1Copy full SHA for c87b0c1
lstchain/scripts/lstchain_dl1ab.py
@@ -269,8 +269,11 @@ def main():
269
parameters_to_update["calibration_id"] = np.int32
270
271
nodes_keys = get_dataset_keys(args.input_file)
272
- if args.no_image:
273
- nodes_keys.remove(dl1_images_lstcam_key)
+ # Remove the images key from the list of nodes to be copied:
+ # it will be added later if so chosen by the user.
274
+ # Copying it here sometimes resulted in too bulky files, due
275
+ # to empty chunks.
276
+ nodes_keys.remove(dl1_images_lstcam_key)
277
278
metadata = global_metadata()
279
0 commit comments