When writing the distribution file precipitation_distribution_{X}C_strain_rate{Y}.txt, if the precipitation density is small in the larger bins they are written as 0.783187485266873-335 excluding the E for the scientific notation. This affects reading the file with numpy or similar.
I assume the easiest fix for this would be some threshold to simply write 0.0 instead.
When writing the distribution file
precipitation_distribution_{X}C_strain_rate{Y}.txt
, if the precipitation density is small in the larger bins they are written as0.783187485266873-335
excluding theE
for the scientific notation. This affects reading the file with numpy or similar.I assume the easiest fix for this would be some threshold to simply write
0.0
instead.