diff --git a/src/main/java/no/nibio/vips/model/downcastmodel/DOWNCASTModel.java b/src/main/java/no/nibio/vips/model/downcastmodel/DOWNCASTModel.java
index 18da402616665301c36660f120078440548d2727..8930904a6ceff47bb0a3ea64f16003b435bc5995 100644
--- a/src/main/java/no/nibio/vips/model/downcastmodel/DOWNCASTModel.java
+++ b/src/main/java/no/nibio/vips/model/downcastmodel/DOWNCASTModel.java
@@ -82,6 +82,7 @@ public class DOWNCASTModel extends I18nImpl implements Model {
             Integer sporulationValue = this.dataMatrix.getParamIntValueForDate(currentDate, DataMatrix.SPORULATION_VALUE);
             Integer infectionDirectlyAfterSporulation = this.dataMatrix.getParamIntValueForDate(currentDate, DataMatrix.INFECTION_DIRECTLY_AFTER_SPORULATION);
             Date infectionTimeAfterSporulation = this.dataMatrix.getParamDateValueForDate(currentDate, DataMatrix.INFECTION_TIME_AFTER_SPORULATION);
+            Boolean isInfectionPredictedToday = isInfectionPredictedToday(currentDate);
             
             result.setValue(DOWNCASTModel.MODEL_ID.toString(), DataMatrix.SPORULATION_VALUE, 
                     String.valueOf(sporulationValue));
@@ -89,10 +90,12 @@ public class DOWNCASTModel extends I18nImpl implements Model {
                     String.valueOf(infectionDirectlyAfterSporulation));
             result.setValue(DOWNCASTModel.MODEL_ID.toString(), DataMatrix.INFECTION_TIME_AFTER_SPORULATION, 
                     infectionTimeAfterSporulation != null ? String.valueOf(infectionTimeAfterSporulation) : "");
+            result.setValue(DOWNCASTModel.MODEL_ID.toString(), DataMatrix.INFECTION_LATER_AFTER_SPORULATION, 
+                    isInfectionPredictedToday ? "1" : "0");
             
             Integer warningStatus = Result.WARNING_STATUS_NO_RISK;
             if(infectionDirectlyAfterSporulation == 1
-                    || isInfectionPredictedToday(currentDate) // Checks today and three days back for prediction
+                    || isInfectionPredictedToday // Checks today and three days back for prediction
                     )
             {
                 warningStatus = Result.WARNING_STATUS_HIGH_RISK;
diff --git a/src/main/java/no/nibio/vips/model/downcastmodel/DataMatrix.java b/src/main/java/no/nibio/vips/model/downcastmodel/DataMatrix.java
index 2d2d5c85446f213b5727652f87ea375218f9c947..85dfadfc2764e7e106b4c555ecd75d5fb4b74c32 100644
--- a/src/main/java/no/nibio/vips/model/downcastmodel/DataMatrix.java
+++ b/src/main/java/no/nibio/vips/model/downcastmodel/DataMatrix.java
@@ -28,5 +28,6 @@ import no.nibio.vips.util.DateMap;
 public class DataMatrix extends DateMap{
     public final static String SPORULATION_VALUE = "SPORULATION_VALUE";
     public final static String INFECTION_DIRECTLY_AFTER_SPORULATION = "IDAS";
+    public final static String INFECTION_LATER_AFTER_SPORULATION = "ILAS";
     public final static String INFECTION_TIME_AFTER_SPORULATION = "ITAS";
 }