+
@Html.EditorFor(m => m.Q.lat, new { size = "small", append = "°" })
-
+
@Html.EditorFor(m => m.Q.latr, new { size = "small", prepend = "±", append = "°" })
-
+
@Html.EditorFor(m => m.Q.lon, new { size = "small", append = "°" })
-
+
@Html.EditorFor(m => m.Q.lonr, new { size = "small", prepend = "±", append = "°" })
+
Curve Variation range minimum
-
-
Curve Variation range minimum
-
- @Html.EditorFor(m => m.Q.co2s, new { size = "small", append = "umol/m" })
+
+ @Html.EditorFor(m => m.Q.co2s, new { size = "small", append = "umol/m", prepend = ">" })
+
+
+ @Html.EditorFor(m => m.Q.pari, new { size = "small", append = "umol/m2/s", prepend = ">" })
+
+
+ @Html.EditorFor(m => m.Q.tleaf, new { size = "small", append = "oC", prepend = ">" })
+
+
+ @Html.EditorFor(m => m.Q.phips2, new { size = "small", prepend = ">" })
diff --git a/WebCms/Views/Shared/DisplayTemplates/LeafInputDataViewModels.cshtml b/WebCms/Views/Shared/DisplayTemplates/LeafInputDataViewModels.cshtml
index 9e11507..f85738b 100644
--- a/WebCms/Views/Shared/DisplayTemplates/LeafInputDataViewModels.cshtml
+++ b/WebCms/Views/Shared/DisplayTemplates/LeafInputDataViewModels.cshtml
@@ -11,7 +11,7 @@
@RendDistinctValues("Latitude [°]", Model.Select(m => m.Site.Latitude?.ToString()))
@RendDistinctValues("Longitude [°]", Model.Select(m => m.Site.Longitude?.ToString()))
@RendDistinctValues("Elevation [m]", Model.Select(m => m.Site.Elevation?.ToString()))
-@RendDistinctValues("CO2S",
+@*@RendDistinctValues("CO2S",
Model.Select(m =>
m.SiteName + " (" + m.Id + "): " +
string.Join(", ",
@@ -33,21 +33,33 @@
m.SiteName + " (" + m.Id + "): " +
(m.Data?.Max(d => d.CO2S)
- m.Data?.Min(d => d.CO2S))), "
")
-@RendValue("CO2S Max Range", Model.Max(m =>
- m.Data?.Max(d => d.CO2S)
- - m.Data?.Min(d => d.CO2S))?.ToString())
@RendValue("CO2S Min Range", Model.Min(m =>
+ m.Data?.Max(d => d.CO2S)
+ - m.Data?.Min(d => d.CO2S))?.ToString())*@
+
+@RendValue("CO2 response curves (CO2S) Max range", Model.Max(m =>
m.Data?.Max(d => d.CO2S)
- m.Data?.Min(d => d.CO2S))?.ToString())
+@RendValue("Light response curves (PARi) Max range", Model.Max(m =>
+ m.Data?.Max(d => d.PARi)
+ - m.Data?.Min(d => d.PARi))?.ToString())
+
+@RendValue("Temperature response curves (Tleaf) Max Range", Model.Max(m =>
+ m.Data?.Max(d => d.Tleaf)
+ - m.Data?.Min(d => d.Tleaf))?.ToString())
+
+@RendValue("Fluorometry measurements (PhiPS2) Max Range", Model.Max(m =>
+ m.Data?.Max(d => d.PhiPS2)
+ - m.Data?.Min(d => d.PhiPS2))?.ToString())
@helper RendValue(string label, string value)
{
-