public PrecipitationAmount(string str)
 {
     Value = PrecipitationAmountConverter.ToValue(str);
 }
 public PrecipitationAmount(double value)
 {
     Value = PrecipitationAmountConverter.ToValue(value);
 }