epyt-flow 0.6.0__py3-none-any.whl → 0.7.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -142,7 +142,11 @@ class ScadaDataExport():
142
142
  unit_desc = massunit_to_str(sensor_config.
143
143
  bulk_species_mass_unit[surface_species_idx])
144
144
 
145
- col_desc[col_id] = [sensor_type, item_id, unit_desc]
145
+ if sensor_type not in ["bulk_species_node", "bulk_species_link", "surface_species"]:
146
+ col_desc[col_id] = [sensor_type, item_id, unit_desc]
147
+ else:
148
+ for location_id, c_id in col_id.items():
149
+ col_desc[c_id] = [sensor_type, f"{item_id} @ {location_id}", unit_desc]
146
150
 
147
151
  return np.array(col_desc, dtype=object)
148
152