I cant figure it out
double d = Double.valueOf(str);
double d2 = Double.parseDouble(str);
both methods produce the following exception:
java.lang.NumberFormatException: Invalid double: "-73.04"
However, the following hardcoded value works just fine:
double d = Double.valueOf("-73.04");