Skip to content
Snippets Groups Projects
Commit 1f19e565 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Increasing the date for temperature sum calculation

parent 481f183e
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,7 @@ public class DeliaRadicumModel extends I18nImpl implements Model{ ...@@ -94,7 +94,7 @@ public class DeliaRadicumModel extends I18nImpl implements Model{
Calendar cal = Calendar.getInstance(this.timeZone); Calendar cal = Calendar.getInstance(this.timeZone);
//System.out.println(this.dataMatrix.toString()); //System.out.println(this.dataMatrix.toString());
DecimalFormat dFormat = new DecimalFormat("###.##"); DecimalFormat dFormat = new DecimalFormat("###.##");
while(currentDate.compareTo(lastDate) < 0) while(currentDate.compareTo(lastDate) <= 0)
{ {
Result result = new ResultImpl(); Result result = new ResultImpl();
result.setResultValidTime(currentDate); result.setResultValidTime(currentDate);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment