CntrlComparison parsing

This commit is contained in:
2015-12-04 10:15:51 -05:00
parent 4d46f206ac
commit 685e8c8658
39 changed files with 820 additions and 491 deletions
@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using LeafWeb.Core.Models;
using LeafWeb.Core.Parsers;
using NUnit.Framework;
namespace LeafWeb.Core.Tests.Parsers
{
[TestFixture]
public class CntrlComparisonParserTests
{
protected const string ContentDirectory = @"Parsers\LeafOutputData\";
private static FileInfo GetContentFile(string fileName)
{
var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ContentDirectory);
return new FileInfo(path + fileName);
}
[Test]
public void Parse_Valid()
{
var fileInfo = GetContentFile("cntrlcomparison_Wild Capsicum.csv");
CntrlComparison[] cntrlComparison;
using (var parser = new CntrlComparisonParser(fileInfo))
cntrlComparison = parser.Parse();
Assert.That(cntrlComparison.Length, Is.EqualTo(7 * 4));
}
}
}
+31
View File
@@ -0,0 +1,31 @@
using System;
using System.IO;
using LeafWeb.Core.Charter;
using NUnit.Framework;
namespace LeafWeb.Core.Tests.Parsers
{
[TestFixture]
public class CurveDataListTests
{
protected const string ContentDirectory = @"Services\LeafOutputData\";
private static FileInfo GetContentFile(string fileName)
{
var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ContentDirectory);
return new FileInfo(path + fileName);
}
[Test]
public void Parse_Valid()
{
var fileInfo = GetContentFile("cntrlcomparison_Wild Capsicum.csv");
var cntrlComparison = new CurveDataList();
using (var reader = fileInfo.OpenText())
{
cntrlComparison.ReadFromStream(reader);
}
Assert.That(cntrlComparison.CurveData.Count, Is.EqualTo(7));
}
}
}
@@ -0,0 +1,167 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using LeafWeb.Core.Models;
using LeafWeb.Core.Parsers;
using LeafWeb.Core.Utility;
using NUnit.Framework;
namespace LeafWeb.Core.Tests.Parsers
{
[TestFixture]
public class LeafInputCsvParserTests
{
protected const string ContentDirectory = @"Parsers\LeafInputData\";
private static FileInfo GetContentFile(string fileName)
{
var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ContentDirectory);
return new FileInfo(path + fileName);
}
[Test]
public void Parse_Valid()
{
var fileInfo = GetContentFile("LeafInput-valid.csv");
var leafInput = new LeafInputCsvParser(fileInfo);
var input = leafInput.Parse();
Assert.That(input.InvestigatorName, Is.EqualTo("Valid Name"));
Assert.That(input.ContactInformation, Is.EqualTo("validname@ornl.gov"));
Assert.That(input.SiteName, Is.EqualTo("FACE"));
Assert.That(input.VegetationType, Is.EqualTo("tropical forest"));
Assert.That(input.SoilType, Is.EqualTo("dense soil"));
Assert.That(input.MajorSpecies, Is.EqualTo("Tulip Poplar, Oak"));
Assert.That(input.SampleLeafLightEnv, Is.EqualTo("heavily shaded from above"));
Assert.That(input.WaterStressAssessment, Is.EqualTo("Little to no stress"));
Assert.That(input.InstrumentUsed, Is.EqualTo("Licor-6400"));
Assert.That(input.ExtraInfo, Is.EqualTo("dear01"));
var site = input.Site;
Assert.That(site.SiteID, Is.EqualTo("Metropolitano"));
Assert.That(site.Latitude, Is.EqualTo(8.98333));
Assert.That(site.Longitude, Is.EqualTo(-79.55));
Assert.That(site.Elevation, Is.Null);
Assert.That(site.SampleYear, Is.EqualTo(2013));
Assert.That(site.SampleDayOfYear, Is.EqualTo(22));
Assert.That(site.GrowSeasonStart, Is.Null);
Assert.That(site.GrowSeasonEnd, Is.Null);
Assert.That(site.StandAge, Is.Null);
Assert.That(site.CanopyHeight, Is.Null);
Assert.That(site.LeafAreaIndex, Is.Null);
Assert.That(site.SpeciesSampled, Is.EqualTo("Dendropanax_arboreus"));
Assert.That(site.AverageTimeResolution, Is.Null);
Assert.That(site.SampleHeight, Is.Null);
Assert.That(site.LeafAge, Is.Null);
Assert.That(site.SpecificLeafArea, Is.EqualTo(245.5609363));
Assert.That(site.LfNitrogenContent, Is.EqualTo(2.19));
Assert.That(site.LfCarbonContent, Is.EqualTo(46.03));
Assert.That(site.LfPhosphContent, Is.EqualTo(0.129929353));
//Assert.That(site.WoodPorosity, Is.Null);
//Assert.That(site.SapWoodDensity, Is.Null);
var photosynthetic = input.Photosynthetic;
Assert.That(photosynthetic.GammaStar, Is.EqualTo(1.2));
Assert.That(photosynthetic.Kc, Is.EqualTo(2.3));
Assert.That(photosynthetic.Ko, Is.EqualTo(3.4));
Assert.That(photosynthetic.Alpha, Is.EqualTo(4.5));
Assert.That(photosynthetic.Rd, Is.EqualTo(6.5));
Assert.That(photosynthetic.gi, Is.EqualTo(4.3));
var data = input.Data;
Assert.That(data.Count(), Is.GreaterThan(2));
var dataItem = data.First();
Assert.That(dataItem.Obs, Is.EqualTo(2));
Assert.That(dataItem.HHMMSS, Is.EqualTo("11:26:17"));
Assert.That(dataItem.FTime, Is.EqualTo(681.5));
Assert.That(dataItem.Photo, Is.EqualTo(6.707855907));
Assert.That(dataItem.AdjPhoto, Is.EqualTo(6.707855907));
Assert.That(dataItem.StomCond, Is.EqualTo(0.066161416));
Assert.That(dataItem.Ci, Is.EqualTo(185.9999057));
Assert.That(dataItem.Trmmol, Is.EqualTo(0.936751155));
Assert.That(dataItem.VpdL, Is.EqualTo(1.386027641));
Assert.That(dataItem.Area, Is.EqualTo(2));
Assert.That(dataItem.StmRat, Is.EqualTo(1));
Assert.That(dataItem.BLCond, Is.EqualTo(9.289719582));
Assert.That(dataItem.Tair, Is.EqualTo(29.09575272));
Assert.That(dataItem.Tleaf, Is.EqualTo(29.91356087));
Assert.That(dataItem.TBlk, Is.EqualTo(28.63459015));
Assert.That(dataItem.CO2R, Is.EqualTo(360.0646362));
Assert.That(dataItem.CO2S, Is.EqualTo(355.3765869));
Assert.That(dataItem.H2OR, Is.EqualTo(27.71545029));
Assert.That(dataItem.H2OS, Is.EqualTo(28.32151604));
Assert.That(dataItem.RH_R, Is.EqualTo(69.04498291));
Assert.That(dataItem.RH_S, Is.EqualTo(70.5548172));
Assert.That(dataItem.Flow, Is.EqualTo(300.3703613));
Assert.That(dataItem.PARi, Is.EqualTo(500.4228821));
Assert.That(dataItem.PARo, Is.EqualTo(23.31687355));
Assert.That(dataItem.Press, Is.EqualTo(100.7472458));
Assert.That(dataItem.CsMch, Is.EqualTo(1.491710782));
Assert.That(dataItem.HsMch, Is.EqualTo(10.9474802));
Assert.That(dataItem.StableF, Is.EqualTo(0.5));
Assert.That(dataItem.Status, Is.EqualTo("111115"));
Assert.That(dataItem.PhiPS2, Is.Null);
Assert.That(dataItem.OxygenPress, Is.Null);
}
[Test]
public void Parse_TitlesRemoved()
{
var fileInfo = GetContentFile("LeafInput-titlesRemoved.csv");
var leafInput = new LeafInputCsvParser(fileInfo);
var input = leafInput.Parse();
Assert.That(input.InvestigatorName, Is.EqualTo("Valid Name"));
Assert.That(input.ContactInformation, Is.EqualTo("validname@ornl.gov"));
Assert.That(input.SiteName, Is.EqualTo("FACE"));
Assert.That(input.VegetationType, Is.EqualTo("tropical forest"));
Assert.That(input.SoilType, Is.EqualTo("dense soil"));
Assert.That(input.MajorSpecies, Is.EqualTo("Tulip Poplar, Oak"));
Assert.That(input.SampleLeafLightEnv, Is.EqualTo("heavily shaded from above"));
Assert.That(input.WaterStressAssessment, Is.EqualTo("Little to no stress"));
Assert.That(input.InstrumentUsed, Is.EqualTo("Licor-6400"));
Assert.That(input.ExtraInfo, Is.EqualTo("dear01"));
}
[Test]
public void Parse_IncompleteRows()
{
var fileInfo = GetContentFile("LeafInput-incompleteRows.csv");
var parser = new LeafInputCsvParser(fileInfo);
Assert.That(() => parser.Parse(), Throws.TypeOf<ParseException>());
}
[Test]
public void Parse_NoData()
{
var fileInfo = GetContentFile("LeafInput-noData.csv");
var parser = new LeafInputCsvParser(fileInfo);
var input = parser.Parse();
}
[Test, Explicit]
public void Parse_FindIssues()
{
var dir = @"C:\Users\poprhythm\Documents\code\LeafWeb\Notes\leafweb database work\newcurves\RemovableDisk\curves";
var files = Directory.GetFiles(dir, "*.csv").Select(f => new FileInfo(f));
var leafInputs = new List<LeafInput>();
foreach (var file in files)
{
try
{
var parser = new LeafInputCsvParser(file);
var leafInput = parser.Parse();
leafInputs.Add(leafInput);
//Console.WriteLine("{0}, {1}, {2}", leafInput.FileName, leafInput.InvestigatorName, leafInput.ContactInformation);
}
catch (Exception ex)
{
Console.WriteLine("{1} : {0}", ex.Message, file.Name);
}
}
LeafInputCsvParser.ExportCsv(@"C:\Temp\test.csv", leafInputs);
}
}
}
@@ -0,0 +1,7 @@
Investigator name: Valid Name,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Contact information: validname@ornl.gov,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Site name in full: FACE ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Vegetation type: tropical forest,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Soil type: dense soil,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
"Major species: Tulip Poplar, Oak",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Sample leaf light environment: heavily shaded from above,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1 Investigator name: Valid Name
2 Contact information: validname@ornl.gov
3 Site name in full: FACE
4 Vegetation type: tropical forest
5 Soil type: dense soil
6 Major species: Tulip Poplar, Oak
7 Sample leaf light environment: heavily shaded from above
@@ -0,0 +1,18 @@
Investigator name: Nick Smith,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Contact information: ngsmith@purdue.edu,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Site name in full: Purdue Growth Chamber,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Vegetation type: NA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Soil type: Field Mixture,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Major species: NA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Sample leaf light environment: Chamber light (~1000 PAR),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Water stress assessment: No water stress,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Instrument used: Licor-6400,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Extra info:,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
SiteID,Latitude(Degrees),Longitude(Degrees),Elevation,SampleYear,SampleDayOfYear,GrowSeasonStart,GrowSeasonEnd,StandAge,CanopyHeight,LeafAreaIndex,SpeciesSampled,AveTimeResolution,SampleHeight,LeafAge,SpecificLeafArea,LfNitrogenContent,LfCarbonContent,LfPhosphContent,,,,,,,,,,,,
NoUnit,NorthPositive,EastPositive,m,NoUnit,DayOfYear,DayOfYear,DayOfYear,Year,m,m2/m2,NoBlankSpace,Minutes,m,days,cm2/g,%,%,%,,,,,,,,,,,,
NA,NA,NA,NA,2012,252,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,,,,,,,,,,,
Gamma*,Kc,Ko,Alpha,Rd,gi,,,,,,,,,,,,,,,,,,,,,,,,,
Pa,Pa,Pa,NoUnit,umol/m2/s,umol/m2/s/Pa,,,,,,,,,,,,,,,,,,,,,,,,,
-9999,-9999,-9999,-9999,0.822,-9999,,,,,,,,,,,,,,,,,,,,,,,,,
Obs,HHMMSS,FTime,Photo,!AdjPhoto,!StomCond,!Ci,!Trmmol,!VpdL,Area,StmRat,BLCond,Tair,!Tleaf,TBlk,CO2R,CO2S,H2OR,H2OS,RH_R,RH_S,Flow,!PARi,PARo,Press,CsMch,HsMch,StableF,Status,PhiPS2,OxygenPress
NoUnit,HHMMSS,Second,umol/m2/s,umol/m2/s,mol/m2/s,umol/mol,mmol/m2/s,kPa,cm2,NA,mol/m2/s,oC,oC,oC,umol/mol,umol/mol,mmol/mol,mmol/mol,%,%,umol/s,umol/m2/s,umol/m2/s,Kpa,umol/mol,mmol/mol,NA,NA,NA,KPA
1 Investigator name: Nick Smith
2 Contact information: ngsmith@purdue.edu
3 Site name in full: Purdue Growth Chamber
4 Vegetation type: NA
5 Soil type: Field Mixture
6 Major species: NA
7 Sample leaf light environment: Chamber light (~1000 PAR)
8 Water stress assessment: No water stress
9 Instrument used: Licor-6400
10 Extra info:
11 SiteID Latitude(Degrees) Longitude(Degrees) Elevation SampleYear SampleDayOfYear GrowSeasonStart GrowSeasonEnd StandAge CanopyHeight LeafAreaIndex SpeciesSampled AveTimeResolution SampleHeight LeafAge SpecificLeafArea LfNitrogenContent LfCarbonContent LfPhosphContent
12 NoUnit NorthPositive EastPositive m NoUnit DayOfYear DayOfYear DayOfYear Year m m2/m2 NoBlankSpace Minutes m days cm2/g % % %
13 NA NA NA NA 2012 252 NA NA NA NA NA NA NA NA NA NA NA NA NA
14 Gamma* Kc Ko Alpha Rd gi
15 Pa Pa Pa NoUnit umol/m2/s umol/m2/s/Pa
16 -9999 -9999 -9999 -9999 0.822 -9999
17 Obs HHMMSS FTime Photo !AdjPhoto !StomCond !Ci !Trmmol !VpdL Area StmRat BLCond Tair !Tleaf TBlk CO2R CO2S H2OR H2OS RH_R RH_S Flow !PARi PARo Press CsMch HsMch StableF Status PhiPS2 OxygenPress
18 NoUnit HHMMSS Second umol/m2/s umol/m2/s mol/m2/s umol/mol mmol/m2/s kPa cm2 NA mol/m2/s oC oC oC umol/mol umol/mol mmol/mol mmol/mol % % umol/s umol/m2/s umol/m2/s Kpa umol/mol mmol/mol NA NA NA KPA
@@ -0,0 +1,31 @@
"Investigator name: Nick Smith"
"Contact information: ngsmith@purdue.edu"
"Site name in full: Purdue Growth Chamber"
"Vegetation type: NA"
"Soil type: Field Mixture"
"Major species: NA"
"Sample leaf light environment: Chamber light (~1000 PAR)"
"Water stress assessment: No water stress"
"Instrument used: Licor-6400"
"Extra info: 7day acclimation at 20c"
"SiteID Latitude(Degrees) Longitude(Degrees) Elevation SampleYear SampleDayOfYear GrowSeasonStart GrowSeasonEnd StandAge CanopyHeight LeafAreaIndex SpeciesSampled AveTimeResolution SampleHeight LeafAge SpecificLeafArea LfNitrogenContent LfCarbonContent LfPhosphContent"
"NoUnit NorthPositive EastPositive m NoUnit DayOfYear DayOfYear DayOfYear Year m m2/m2 NoBlankSpace Minutes m days cm2/g % % %"
"NA NA NA NA 2014 282 NA NA NA NA NA Tamarindusindica NA NA NA 159.0634345 1.4 NA NA"
"Gamma* Kc Ko Alpha Rd gi"
"Pa Pa Pa NoUnit umol/m2/s umol/m2/s/Pa"
"-9999 -9999 -9999 -9999 2.189610949 -9999"
"Obs HHMMSS FTime Photo !AdjPhoto !StomCond !Ci !Trmmol !VpdL Area StmRat BLCond Tair !Tleaf TBlk CO2R CO2S H2OR H2OS RH_R RH_S Flow !PARi PARo Press CsMch HsMch StableF Status PhiPS2 OxygenPress"
"NoUnit HHMMSS Second umol/m2/s umol/m2/s mol/m2/s umol/mol mmol/m2/s kPa cm2 NA mol/m2/s oC oC oC umol/mol umol/mol mmol/mol mmol/mol % % umol/s umol/m2/s umol/m2/s Kpa umol/mol mmol/mol NA NA NA KPA"
"66 17:38:55 16298.00005 -0.215426597 -0.215426597 0.007774086 387.5601933 0.691837268 8.326482961 5.265 0.5 2.523228275 48.75154114 46.73216629 49.93317795 399.3782959 399.2714844 20.96022415 22.1486187 17.9028511 18.91743469 299.7191772 1199.456543 43.07281876 99.64649963 2.999198914 1.05813694 1 111114 -9999 -9999"
"67 17:40:40 16402.50005 -0.505870892 -0.505870892 0.0085163 349.5536599 0.761887632 8.369241706 5.265 0.5 2.523228275 48.81954193 46.83860397 49.93241501 300.4419861 300.927887 20.98658371 22.29515648 17.88055229 18.97615433 299.7085876 1199.490479 43.07907867 99.6419754 3.762382507 1.066325188 1 111114 -9999 -9999"
"68 17:42:23 16505.00005 -0.718271361 -0.718271361 0.009213096 291.3857548 0.826080193 8.387930436 5.265 0.5 2.523228275 48.8538208 46.89636993 49.93274307 200.7705383 201.739502 21.00330162 22.42184448 17.87025642 19.0505619 299.7295837 1199.116821 44.01655579 99.63645935 4.080833435 1.060667992 1 111114 -9999 -9999"
"69 17:44:11 16613.00005 -0.991620268 -0.991620268 0.010095712 235.0120968 0.907467284 8.409155772 5.265 0.5 2.523228275 48.86945724 46.96108246 49.93239212 100.027565 101.6075668 21.003088 22.56126976 17.85757637 19.15289497 299.7096863 1199.012329 46.25364304 99.63273621 3.954681396 1.065255165 1 111114 -9999 -9999"
"70 17:46:46 16768.00005 -1.045282227 -1.045282227 0.011287996 183.1882237 1.009646387 8.371469809 5.265 0.5 2.523228275 48.87886429 46.92841721 49.93133163 49.55680847 51.30204773 21.0290432 22.76230049 17.87363815 19.3139534 299.7124939 1198.983521 43.66405487 99.6309967 3.677768707 1.070101738 1 111114 -9999 -9999"
"71 17:48:56 16898.50005 -0.358454456 -0.358454456 0.012415238 389.9600226 1.109333954 8.36545804 5.265 0.5 2.523228275 48.89009094 46.94281769 49.92983246 400.4476013 400.2972107 20.99722672 22.90138435 17.83179474 19.42071342 299.7065125 1198.709229 42.7310257 99.6289444 3.165927887 1.073033333 1 111114 -9999 -9999"
"72 17:50:04 16966.50005 -0.369359541 -0.369359541 0.012860315 389.0550121 1.148128169 8.359215055 5.265 0.5 2.523228275 48.89198303 46.94270706 49.9316597 399.6208496 399.4640198 20.9937439 22.96431923 17.82751465 19.47166443 299.7133789 1199.011597 46.73867416 99.62515259 3.196323395 1.071206093 1 111114 -9999 -9999"
"73 17:52:29 17111.50005 -0.000448038 -0.000448038 0.013857559 519.5473911 1.23260114 8.331337797 5.265 0.5 2.523228275 48.89042282 46.9200325 49.93070602 600.796814 599.4993896 21.00602722 23.12145042 17.84046745 19.60547066 299.6844788 1199.114502 43.48819351 99.62283325 1.873325348 1.067681313 1 111114 -9999 -9999"
"74 17:54:57 17259.50005 0.229358264 0.229358264 0.015404105 668.456214 1.363738633 8.29717668 5.265 0.5 2.523228275 48.89125443 46.88843155 49.92894745 799.0285034 796.7166748 20.95309639 23.29321289 17.76644516 19.75002861 299.6789551 1198.772827 42.78263092 99.6211319 0.459568024 1.070916176 1 111114 -9999 -9999"
"75 17:56:48 17370.50005 0.647329733 0.647329733 0.01610465 804.9132425 1.420754821 8.269994013 5.265 0.5 2.523228275 48.88961792 46.86376572 49.93006134 1001.105164 997.4780273 20.99555397 23.43319511 17.83556366 19.86952591 299.6744385 1199.096558 43.42731094 99.61750793 -1.527980804 1.074719429 1 111114 -9999 -9999"
"76 17:59:09 17511.50005 1.071500245 1.071500245 0.017460418 945.566887 1.535388617 8.246544404 5.265 0.5 2.523228275 48.89328766 46.85366821 49.93212891 1200.983765 1195.875977 20.98199844 23.61549187 17.82249069 20.01953888 299.7128296 1198.785034 45.1896286 99.61073303 -3.668849945 1.068657875 1 111114 -9999 -9999"
"77 18:01:35 17657.50005 1.609415729 1.609415729 0.019173401 1170.685812 1.674877491 8.197620033 5.265 0.5 2.523228275 48.88559723 46.80513382 49.93037033 1500.460083 1493.239014 20.97205353 23.84428024 17.82379532 20.22059631 299.6965942 1198.97876 43.85221481 99.60964966 -7.248439789 1.062548637 1 111114 -9999 -9999"
"78 18:05:01 17863.50005 2.509786563 2.509786563 0.022670681 1563.338984 1.962966907 8.135609987 5.265 0.5 2.523228275 48.8908844 46.76280594 49.93166351 2001.122437 1989.85083 20.87425804 24.2393074 17.69743919 20.54927826 299.6837769 1198.699219 45.60385132 99.60519409 -13.40700912 1.060843468 1 111114 -9999 -9999"
1 Investigator name: Nick Smith
2 Contact information: ngsmith@purdue.edu
3 Site name in full: Purdue Growth Chamber
4 Vegetation type: NA
5 Soil type: Field Mixture
6 Major species: NA
7 Sample leaf light environment: Chamber light (~1000 PAR)
8 Water stress assessment: No water stress
9 Instrument used: Licor-6400
10 Extra info: 7day acclimation at 20c
11 SiteID Latitude(Degrees) Longitude(Degrees) Elevation SampleYear SampleDayOfYear GrowSeasonStart GrowSeasonEnd StandAge CanopyHeight LeafAreaIndex SpeciesSampled AveTimeResolution SampleHeight LeafAge SpecificLeafArea LfNitrogenContent LfCarbonContent LfPhosphContent
12 NoUnit NorthPositive EastPositive m NoUnit DayOfYear DayOfYear DayOfYear Year m m2/m2 NoBlankSpace Minutes m days cm2/g % % %
13 NA NA NA NA 2014 282 NA NA NA NA NA Tamarindusindica NA NA NA 159.0634345 1.4 NA NA
14 Gamma* Kc Ko Alpha Rd gi
15 Pa Pa Pa NoUnit umol/m2/s umol/m2/s/Pa
16 -9999 -9999 -9999 -9999 2.189610949 -9999
17 Obs HHMMSS FTime Photo !AdjPhoto !StomCond !Ci !Trmmol !VpdL Area StmRat BLCond Tair !Tleaf TBlk CO2R CO2S H2OR H2OS RH_R RH_S Flow !PARi PARo Press CsMch HsMch StableF Status PhiPS2 OxygenPress
18 NoUnit HHMMSS Second umol/m2/s umol/m2/s mol/m2/s umol/mol mmol/m2/s kPa cm2 NA mol/m2/s oC oC oC umol/mol umol/mol mmol/mol mmol/mol % % umol/s umol/m2/s umol/m2/s Kpa umol/mol mmol/mol NA NA NA KPA
19 66 17:38:55 16298.00005 -0.215426597 -0.215426597 0.007774086 387.5601933 0.691837268 8.326482961 5.265 0.5 2.523228275 48.75154114 46.73216629 49.93317795 399.3782959 399.2714844 20.96022415 22.1486187 17.9028511 18.91743469 299.7191772 1199.456543 43.07281876 99.64649963 2.999198914 1.05813694 1 111114 -9999 -9999
20 67 17:40:40 16402.50005 -0.505870892 -0.505870892 0.0085163 349.5536599 0.761887632 8.369241706 5.265 0.5 2.523228275 48.81954193 46.83860397 49.93241501 300.4419861 300.927887 20.98658371 22.29515648 17.88055229 18.97615433 299.7085876 1199.490479 43.07907867 99.6419754 3.762382507 1.066325188 1 111114 -9999 -9999
21 68 17:42:23 16505.00005 -0.718271361 -0.718271361 0.009213096 291.3857548 0.826080193 8.387930436 5.265 0.5 2.523228275 48.8538208 46.89636993 49.93274307 200.7705383 201.739502 21.00330162 22.42184448 17.87025642 19.0505619 299.7295837 1199.116821 44.01655579 99.63645935 4.080833435 1.060667992 1 111114 -9999 -9999
22 69 17:44:11 16613.00005 -0.991620268 -0.991620268 0.010095712 235.0120968 0.907467284 8.409155772 5.265 0.5 2.523228275 48.86945724 46.96108246 49.93239212 100.027565 101.6075668 21.003088 22.56126976 17.85757637 19.15289497 299.7096863 1199.012329 46.25364304 99.63273621 3.954681396 1.065255165 1 111114 -9999 -9999
23 70 17:46:46 16768.00005 -1.045282227 -1.045282227 0.011287996 183.1882237 1.009646387 8.371469809 5.265 0.5 2.523228275 48.87886429 46.92841721 49.93133163 49.55680847 51.30204773 21.0290432 22.76230049 17.87363815 19.3139534 299.7124939 1198.983521 43.66405487 99.6309967 3.677768707 1.070101738 1 111114 -9999 -9999
24 71 17:48:56 16898.50005 -0.358454456 -0.358454456 0.012415238 389.9600226 1.109333954 8.36545804 5.265 0.5 2.523228275 48.89009094 46.94281769 49.92983246 400.4476013 400.2972107 20.99722672 22.90138435 17.83179474 19.42071342 299.7065125 1198.709229 42.7310257 99.6289444 3.165927887 1.073033333 1 111114 -9999 -9999
25 72 17:50:04 16966.50005 -0.369359541 -0.369359541 0.012860315 389.0550121 1.148128169 8.359215055 5.265 0.5 2.523228275 48.89198303 46.94270706 49.9316597 399.6208496 399.4640198 20.9937439 22.96431923 17.82751465 19.47166443 299.7133789 1199.011597 46.73867416 99.62515259 3.196323395 1.071206093 1 111114 -9999 -9999
26 73 17:52:29 17111.50005 -0.000448038 -0.000448038 0.013857559 519.5473911 1.23260114 8.331337797 5.265 0.5 2.523228275 48.89042282 46.9200325 49.93070602 600.796814 599.4993896 21.00602722 23.12145042 17.84046745 19.60547066 299.6844788 1199.114502 43.48819351 99.62283325 1.873325348 1.067681313 1 111114 -9999 -9999
27 74 17:54:57 17259.50005 0.229358264 0.229358264 0.015404105 668.456214 1.363738633 8.29717668 5.265 0.5 2.523228275 48.89125443 46.88843155 49.92894745 799.0285034 796.7166748 20.95309639 23.29321289 17.76644516 19.75002861 299.6789551 1198.772827 42.78263092 99.6211319 0.459568024 1.070916176 1 111114 -9999 -9999
28 75 17:56:48 17370.50005 0.647329733 0.647329733 0.01610465 804.9132425 1.420754821 8.269994013 5.265 0.5 2.523228275 48.88961792 46.86376572 49.93006134 1001.105164 997.4780273 20.99555397 23.43319511 17.83556366 19.86952591 299.6744385 1199.096558 43.42731094 99.61750793 -1.527980804 1.074719429 1 111114 -9999 -9999
29 76 17:59:09 17511.50005 1.071500245 1.071500245 0.017460418 945.566887 1.535388617 8.246544404 5.265 0.5 2.523228275 48.89328766 46.85366821 49.93212891 1200.983765 1195.875977 20.98199844 23.61549187 17.82249069 20.01953888 299.7128296 1198.785034 45.1896286 99.61073303 -3.668849945 1.068657875 1 111114 -9999 -9999
30 77 18:01:35 17657.50005 1.609415729 1.609415729 0.019173401 1170.685812 1.674877491 8.197620033 5.265 0.5 2.523228275 48.88559723 46.80513382 49.93037033 1500.460083 1493.239014 20.97205353 23.84428024 17.82379532 20.22059631 299.6965942 1198.97876 43.85221481 99.60964966 -7.248439789 1.062548637 1 111114 -9999 -9999
31 78 18:05:01 17863.50005 2.509786563 2.509786563 0.022670681 1563.338984 1.962966907 8.135609987 5.265 0.5 2.523228275 48.8908844 46.76280594 49.93166351 2001.122437 1989.85083 20.87425804 24.2393074 17.69743919 20.54927826 299.6837769 1198.699219 45.60385132 99.60519409 -13.40700912 1.060843468 1 111114 -9999 -9999
@@ -0,0 +1,34 @@
Valid Name,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
validname@ornl.gov,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
FACE ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
tropical forest,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
dense soil,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
"Tulip Poplar, Oak",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
heavily shaded from above,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Little to no stress,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Licor-6400,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
dear01,,,,sla/nut no. 2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
SiteID,Latitude(Degrees),Longitude(Degrees),Elevation,SampleYear,SampleDayOfYear,GrowSeasonStart,GrowSeasonEnd,StandAge,CanopyHeight,LeafAreaIndex,SpeciesSampled,AveTimeResolution,SampleHeight,LeafAge,SpecificLeafArea,LfNitrogenContent,LfCarbonContent,LfPhosphContent,WoodPorosity,SapWoodDensity,,,,,,,,,,,,,,,,,
NoUnit,NorthPositive,EastPositive,m,NoUnit,DayOfYear,DayOfYear,DayOfYear,Year,m,m2/m2,NoBlankSpace,Minutes,m,days,cm2/g,%,%,%,NoUnit,g/cm3,,,,,,,,,,,,,,,,,
Metropolitano ,8.98333,-79.55,-9999,2013,22,-9999,-9999,-9999,-9999,-9999,Dendropanax_arboreus,-9999,-9999,-9999,245.5609363,2.19,46.03,0.129929353,-9999,0.42,,,,,,,,,,,,,,,,,
Gamma*,Kc,Ko,Alpha,Rd,gi,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Pa,Pa,Pa,NoUnit,umol/m2/s,umol/m2/s/Pa,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-9999,-9999,-9999,-9999,-9999,-9999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Obs,HHMMSS,FTime,Photo,!AdjPhoto,!StomCond,!Ci,!Trmmol,!VpdL,Area,StmRat,BLCond,Tair,!Tleaf,TBlk,CO2R,CO2S,H2OR,H2OS,RH_R,RH_S,Flow,!PARi,PARo,Press,CsMch,HsMch,StableF,Status,PhiPS2,OxygenPress,DataType,TissueArea,TissueMass,Fo'_or_Fo,Fm'_or_Fm,Fs,MeasLight
NoUnit,HHMMSS,Second,umol/m2/s,umol/m2/s,mol/m2/s,umol/mol,mmol/m2/s,kPa,cm2,NA,mol/m2/s,oC,oC,oC,umol/mol,umol/mol,mmol/mol,mmol/mol,%,%,umol/s,umol/m2/s,umol/m2/s,Kpa,umol/mol,mmol/mol,NA,NA,NA,KPA,123Flu11_25ACi31_45ALight_9999others,cm2,gram,Arb_Unit,Arb_Unit,Arb_Unit,umolm-2s-1
2,11:26:17,681.5,6.707855907,6.707855907,0.066161416,185.9999057,0.936751155,1.386027641,2,1,9.289719582,29.09575272,29.91356087,28.63459015,360.0646362,355.3765869,27.71545029,28.32151604,69.04498291,70.5548172,300.3703613,500.4228821,23.31687355,100.7472458,1.491710782,10.9474802,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
3,11:30:29,933.5,5.771831799,5.771831799,0.07942629,172.5935849,1.09826383,1.355495012,2,1,9.289719582,29.09716606,29.85159492,28.63698769,298.9832153,294.9247742,27.76527977,28.47566414,69.16172028,70.9312439,300.3979492,500.3692017,25.71452522,100.7446976,1.531658292,10.98022556,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
4,11:33:59,1144,4.325258223,4.325258223,0.085983618,151.023036,1.188274711,1.355434906,2,1,9.289719582,29.13848686,29.91317749,28.63607216,239.5308838,236.4640961,27.85741615,28.62590981,69.22337341,71.13302612,300.3952637,500.3513489,33.338871,100.741394,1.670513272,11.00670147,0.25,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
5,11:37:31,1356,2.827309844,2.827309844,0.09812974,127.6065847,1.335534508,1.336460632,2,1,9.289719582,29.13998985,29.8854599,28.63371277,179.5149384,177.474411,27.88515472,28.74891472,69.28231049,71.42836761,300.347168,500.2981567,24.44124985,100.735611,1.570171475,11.03241634,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
6,11:41:04,1569,1.194818958,1.194818958,0.107753176,88.63161349,1.460041169,1.331723176,2,1,9.289719582,29.28667641,29.92069626,28.83418274,109.6109619,108.7097931,27.93833351,28.88233376,68.82578278,71.15132141,300.3964844,500.3841248,31.03587151,100.7314072,1.507373929,11.05681133,0.75,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
7,11:43:45,1729.5,-0.756032277,-0.756032277,0.1155767,51.30436732,1.560378208,1.327865608,2,1,9.289719582,29.31532288,29.95697784,28.83176422,41.28229904,41.7423172,27.99954605,29.00834846,68.86295319,71.34403229,300.3787842,500.3143005,24.70624542,100.7319412,1.261989713,11.08116055,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
8,11:46:42,1906.5,7.34330065,7.34330065,0.118790057,268.5384085,1.59344573,1.319710687,2,1,9.289719582,29.33441162,29.95470619,28.83215523,380.8040466,375.516449,28.05409241,29.08415985,68.92025757,71.45082092,300.3884277,500.2626648,35.80098343,100.73069,1.607235074,11.10654354,0.25,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
9,11:49:44,2089,7.904847079,7.904847079,0.110187779,290.9430443,1.476094614,1.316732146,2,1,9.289719582,29.30088615,29.93460655,28.82966614,420.2006836,414.5297546,28.11221123,29.06651115,69.19332123,71.54216003,300.364624,500.5073242,33.35251617,100.7255707,1.686336637,11.10749531,0.75,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
10,11:52:17,2242,8.412550198,8.412550198,0.107218775,329.0402424,1.427586651,1.308429964,2,1,9.289719582,29.2647934,29.87786865,28.83231163,470.3963318,464.3539124,28.08907318,29.01198196,69.28002167,71.55632019,300.391449,500.6035767,26.83644104,100.7247086,1.531368375,11.10119152,0.75,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
11,11:54:49,2394,8.942760877,8.942760877,0.099987679,369.6233746,1.337743766,1.313900888,2,1,9.289719582,29.23348236,29.8452034,28.83133125,530.1151733,523.6935425,28.01350403,28.87860107,69.21929932,71.35688782,300.3389282,500.8887329,22.21284676,100.7255859,1.323848844,11.08121204,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
12,11:58:35,2620,9.558578395,9.558578395,0.088424049,437.1518216,1.230003596,1.364140129,2,1,9.289719582,29.38029861,29.99291992,29.02685356,630.2923584,623.4188232,27.9438591,28.73913193,68.45996857,70.40831757,300.4388733,500.8171997,22.24046707,100.7190247,1.161373258,11.05481243,0.25,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
13,12:01:07,2771.5,9.873152604,9.873152604,0.080181353,510.6765842,1.143831655,1.397517525,2,1,9.289719582,29.41447258,30.11022568,29.02637482,730.4609985,723.3362427,27.95492935,28.69467545,68.34937286,70.15804291,300.3759766,500.7625427,23.86174965,100.7148819,0.70708859,11.04821491,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
14,12:03:46,2930.5,9.873834511,9.873834511,0.065068937,562.5871977,0.932179735,1.401146672,2,1,9.289719582,29.05545425,30.09852409,28.43083191,829.8916016,822.8070679,28.02915764,28.63202095,69.96215057,71.46692657,300.3963013,500.498291,37.39061737,100.7079849,0.278255582,11.03235149,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
15,12:06:22,3086.5,10.02683312,10.02683312,0.064134644,653.7121812,0.905940007,1.381484098,2,1,9.289719582,29.00729942,30.02923965,28.43653297,930.4942627,923.2613525,28.07292557,28.65882683,70.26574707,71.73223877,300.3840027,500.588623,27.13081169,100.7063675,-0.062930942,11.0444231,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
16,12:09:14,3258.5,10.05007126,10.05007126,0.056535537,717.0210045,0.799662235,1.382177405,2,1,9.289719582,28.98132896,30.00952148,28.43982887,1029.953247,1022.716675,28.0886879,28.60592461,70.40614319,71.70262909,300.3604126,500.6481628,32.60289001,100.6995239,-0.451480746,11.03314304,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
17,12:11:46,3410.5,10.08104453,10.08104453,0.05308502,795.1938984,0.752668042,1.385043349,2,1,9.289719582,28.9710083,30.00168419,28.43811226,1129.660278,1122.383789,28.07155228,28.55850601,70.40500641,71.62631226,300.3049011,500.8016663,38.56233597,100.6991959,-0.955020785,11.02880192,0.75,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
1 Valid Name
2 validname@ornl.gov
3 FACE
4 tropical forest
5 dense soil
6 Tulip Poplar, Oak
7 heavily shaded from above
8 Little to no stress
9 Licor-6400
10 dear01 sla/nut no. 2
11 SiteID Latitude(Degrees) Longitude(Degrees) Elevation SampleYear SampleDayOfYear GrowSeasonStart GrowSeasonEnd StandAge CanopyHeight LeafAreaIndex SpeciesSampled AveTimeResolution SampleHeight LeafAge SpecificLeafArea LfNitrogenContent LfCarbonContent LfPhosphContent WoodPorosity SapWoodDensity
12 NoUnit NorthPositive EastPositive m NoUnit DayOfYear DayOfYear DayOfYear Year m m2/m2 NoBlankSpace Minutes m days cm2/g % % % NoUnit g/cm3
13 Metropolitano 8.98333 -79.55 -9999 2013 22 -9999 -9999 -9999 -9999 -9999 Dendropanax_arboreus -9999 -9999 -9999 245.5609363 2.19 46.03 0.129929353 -9999 0.42
14 Gamma* Kc Ko Alpha Rd gi
15 Pa Pa Pa NoUnit umol/m2/s umol/m2/s/Pa
16 -9999 -9999 -9999 -9999 -9999 -9999
17 Obs HHMMSS FTime Photo !AdjPhoto !StomCond !Ci !Trmmol !VpdL Area StmRat BLCond Tair !Tleaf TBlk CO2R CO2S H2OR H2OS RH_R RH_S Flow !PARi PARo Press CsMch HsMch StableF Status PhiPS2 OxygenPress DataType TissueArea TissueMass Fo'_or_Fo Fm'_or_Fm Fs MeasLight
18 NoUnit HHMMSS Second umol/m2/s umol/m2/s mol/m2/s umol/mol mmol/m2/s kPa cm2 NA mol/m2/s oC oC oC umol/mol umol/mol mmol/mol mmol/mol % % umol/s umol/m2/s umol/m2/s Kpa umol/mol mmol/mol NA NA NA KPA 123Flu11_25ACi31_45ALight_9999others cm2 gram Arb_Unit Arb_Unit Arb_Unit umolm-2s-1
19 2 11:26:17 681.5 6.707855907 6.707855907 0.066161416 185.9999057 0.936751155 1.386027641 2 1 9.289719582 29.09575272 29.91356087 28.63459015 360.0646362 355.3765869 27.71545029 28.32151604 69.04498291 70.5548172 300.3703613 500.4228821 23.31687355 100.7472458 1.491710782 10.9474802 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
20 3 11:30:29 933.5 5.771831799 5.771831799 0.07942629 172.5935849 1.09826383 1.355495012 2 1 9.289719582 29.09716606 29.85159492 28.63698769 298.9832153 294.9247742 27.76527977 28.47566414 69.16172028 70.9312439 300.3979492 500.3692017 25.71452522 100.7446976 1.531658292 10.98022556 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
21 4 11:33:59 1144 4.325258223 4.325258223 0.085983618 151.023036 1.188274711 1.355434906 2 1 9.289719582 29.13848686 29.91317749 28.63607216 239.5308838 236.4640961 27.85741615 28.62590981 69.22337341 71.13302612 300.3952637 500.3513489 33.338871 100.741394 1.670513272 11.00670147 0.25 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
22 5 11:37:31 1356 2.827309844 2.827309844 0.09812974 127.6065847 1.335534508 1.336460632 2 1 9.289719582 29.13998985 29.8854599 28.63371277 179.5149384 177.474411 27.88515472 28.74891472 69.28231049 71.42836761 300.347168 500.2981567 24.44124985 100.735611 1.570171475 11.03241634 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
23 6 11:41:04 1569 1.194818958 1.194818958 0.107753176 88.63161349 1.460041169 1.331723176 2 1 9.289719582 29.28667641 29.92069626 28.83418274 109.6109619 108.7097931 27.93833351 28.88233376 68.82578278 71.15132141 300.3964844 500.3841248 31.03587151 100.7314072 1.507373929 11.05681133 0.75 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
24 7 11:43:45 1729.5 -0.756032277 -0.756032277 0.1155767 51.30436732 1.560378208 1.327865608 2 1 9.289719582 29.31532288 29.95697784 28.83176422 41.28229904 41.7423172 27.99954605 29.00834846 68.86295319 71.34403229 300.3787842 500.3143005 24.70624542 100.7319412 1.261989713 11.08116055 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
25 8 11:46:42 1906.5 7.34330065 7.34330065 0.118790057 268.5384085 1.59344573 1.319710687 2 1 9.289719582 29.33441162 29.95470619 28.83215523 380.8040466 375.516449 28.05409241 29.08415985 68.92025757 71.45082092 300.3884277 500.2626648 35.80098343 100.73069 1.607235074 11.10654354 0.25 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
26 9 11:49:44 2089 7.904847079 7.904847079 0.110187779 290.9430443 1.476094614 1.316732146 2 1 9.289719582 29.30088615 29.93460655 28.82966614 420.2006836 414.5297546 28.11221123 29.06651115 69.19332123 71.54216003 300.364624 500.5073242 33.35251617 100.7255707 1.686336637 11.10749531 0.75 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
27 10 11:52:17 2242 8.412550198 8.412550198 0.107218775 329.0402424 1.427586651 1.308429964 2 1 9.289719582 29.2647934 29.87786865 28.83231163 470.3963318 464.3539124 28.08907318 29.01198196 69.28002167 71.55632019 300.391449 500.6035767 26.83644104 100.7247086 1.531368375 11.10119152 0.75 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
28 11 11:54:49 2394 8.942760877 8.942760877 0.099987679 369.6233746 1.337743766 1.313900888 2 1 9.289719582 29.23348236 29.8452034 28.83133125 530.1151733 523.6935425 28.01350403 28.87860107 69.21929932 71.35688782 300.3389282 500.8887329 22.21284676 100.7255859 1.323848844 11.08121204 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
29 12 11:58:35 2620 9.558578395 9.558578395 0.088424049 437.1518216 1.230003596 1.364140129 2 1 9.289719582 29.38029861 29.99291992 29.02685356 630.2923584 623.4188232 27.9438591 28.73913193 68.45996857 70.40831757 300.4388733 500.8171997 22.24046707 100.7190247 1.161373258 11.05481243 0.25 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
30 13 12:01:07 2771.5 9.873152604 9.873152604 0.080181353 510.6765842 1.143831655 1.397517525 2 1 9.289719582 29.41447258 30.11022568 29.02637482 730.4609985 723.3362427 27.95492935 28.69467545 68.34937286 70.15804291 300.3759766 500.7625427 23.86174965 100.7148819 0.70708859 11.04821491 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
31 14 12:03:46 2930.5 9.873834511 9.873834511 0.065068937 562.5871977 0.932179735 1.401146672 2 1 9.289719582 29.05545425 30.09852409 28.43083191 829.8916016 822.8070679 28.02915764 28.63202095 69.96215057 71.46692657 300.3963013 500.498291 37.39061737 100.7079849 0.278255582 11.03235149 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
32 15 12:06:22 3086.5 10.02683312 10.02683312 0.064134644 653.7121812 0.905940007 1.381484098 2 1 9.289719582 29.00729942 30.02923965 28.43653297 930.4942627 923.2613525 28.07292557 28.65882683 70.26574707 71.73223877 300.3840027 500.588623 27.13081169 100.7063675 -0.062930942 11.0444231 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
33 16 12:09:14 3258.5 10.05007126 10.05007126 0.056535537 717.0210045 0.799662235 1.382177405 2 1 9.289719582 28.98132896 30.00952148 28.43982887 1029.953247 1022.716675 28.0886879 28.60592461 70.40614319 71.70262909 300.3604126 500.6481628 32.60289001 100.6995239 -0.451480746 11.03314304 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
34 17 12:11:46 3410.5 10.08104453 10.08104453 0.05308502 795.1938984 0.752668042 1.385043349 2 1 9.289719582 28.9710083 30.00168419 28.43811226 1129.660278 1122.383789 28.07155228 28.55850601 70.40500641 71.62631226 300.3049011 500.8016663 38.56233597 100.6991959 -0.955020785 11.02880192 0.75 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
@@ -0,0 +1,34 @@
Investigator name: Valid Name,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Contact information: validname@ornl.gov,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Site name in full: FACE ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Vegetation type: tropical forest,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Soil type: dense soil,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
"Major species: Tulip Poplar, Oak",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Sample leaf light environment: heavily shaded from above,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Water stress assessment: Little to no stress,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Instrument used: Licor-6400,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Extra info: dear01,,,,sla/nut no. 2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
SiteID,Latitude(Degrees),Longitude(Degrees),Elevation,SampleYear,SampleDayOfYear,GrowSeasonStart,GrowSeasonEnd,StandAge,CanopyHeight,LeafAreaIndex,SpeciesSampled,AveTimeResolution,SampleHeight,LeafAge,SpecificLeafArea,LfNitrogenContent,LfCarbonContent,LfPhosphContent,WoodPorosity,SapWoodDensity,,,,,,,,,,,,,,,,,
NoUnit,NorthPositive,EastPositive,m,NoUnit,DayOfYear,DayOfYear,DayOfYear,Year,m,m2/m2,NoBlankSpace,Minutes,m,days,cm2/g,%,%,%,NoUnit,g/cm3,,,,,,,,,,,,,,,,,
Metropolitano ,8.98333,-79.55,-9999,2013,22,-9999,-9999,-9999,-9999,-9999,Dendropanax_arboreus,-9999,-9999,-9999,245.5609363,2.19,46.03,0.129929353,-9999,0.42,,,,,,,,,,,,,,,,,
Gamma*,Kc,Ko,Alpha,Rd,gi,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Pa,Pa,Pa,NoUnit,umol/m2/s,umol/m2/s/Pa,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1.2,2.3,3.4,4.5,6.5,4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Obs,HHMMSS,FTime,Photo,!AdjPhoto,!StomCond,!Ci,!Trmmol,!VpdL,Area,StmRat,BLCond,Tair,!Tleaf,TBlk,CO2R,CO2S,H2OR,H2OS,RH_R,RH_S,Flow,!PARi,PARo,Press,CsMch,HsMch,StableF,Status,PhiPS2,OxygenPress,DataType,TissueArea,TissueMass,Fo'_or_Fo,Fm'_or_Fm,Fs,MeasLight
NoUnit,HHMMSS,Second,umol/m2/s,umol/m2/s,mol/m2/s,umol/mol,mmol/m2/s,kPa,cm2,NA,mol/m2/s,oC,oC,oC,umol/mol,umol/mol,mmol/mol,mmol/mol,%,%,umol/s,umol/m2/s,umol/m2/s,Kpa,umol/mol,mmol/mol,NA,NA,NA,KPA,123Flu11_25ACi31_45ALight_9999others,cm2,gram,Arb_Unit,Arb_Unit,Arb_Unit,umolm-2s-1
2,11:26:17,681.5,6.707855907,6.707855907,0.066161416,185.9999057,0.936751155,1.386027641,2,1,9.289719582,29.09575272,29.91356087,28.63459015,360.0646362,355.3765869,27.71545029,28.32151604,69.04498291,70.5548172,300.3703613,500.4228821,23.31687355,100.7472458,1.491710782,10.9474802,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
3,11:30:29,933.5,5.771831799,5.771831799,0.07942629,172.5935849,1.09826383,1.355495012,2,1,9.289719582,29.09716606,29.85159492,28.63698769,298.9832153,294.9247742,27.76527977,28.47566414,69.16172028,70.9312439,300.3979492,500.3692017,25.71452522,100.7446976,1.531658292,10.98022556,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
4,11:33:59,1144,4.325258223,4.325258223,0.085983618,151.023036,1.188274711,1.355434906,2,1,9.289719582,29.13848686,29.91317749,28.63607216,239.5308838,236.4640961,27.85741615,28.62590981,69.22337341,71.13302612,300.3952637,500.3513489,33.338871,100.741394,1.670513272,11.00670147,0.25,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
5,11:37:31,1356,2.827309844,2.827309844,0.09812974,127.6065847,1.335534508,1.336460632,2,1,9.289719582,29.13998985,29.8854599,28.63371277,179.5149384,177.474411,27.88515472,28.74891472,69.28231049,71.42836761,300.347168,500.2981567,24.44124985,100.735611,1.570171475,11.03241634,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
6,11:41:04,1569,1.194818958,1.194818958,0.107753176,88.63161349,1.460041169,1.331723176,2,1,9.289719582,29.28667641,29.92069626,28.83418274,109.6109619,108.7097931,27.93833351,28.88233376,68.82578278,71.15132141,300.3964844,500.3841248,31.03587151,100.7314072,1.507373929,11.05681133,0.75,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
7,11:43:45,1729.5,-0.756032277,-0.756032277,0.1155767,51.30436732,1.560378208,1.327865608,2,1,9.289719582,29.31532288,29.95697784,28.83176422,41.28229904,41.7423172,27.99954605,29.00834846,68.86295319,71.34403229,300.3787842,500.3143005,24.70624542,100.7319412,1.261989713,11.08116055,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
8,11:46:42,1906.5,7.34330065,7.34330065,0.118790057,268.5384085,1.59344573,1.319710687,2,1,9.289719582,29.33441162,29.95470619,28.83215523,380.8040466,375.516449,28.05409241,29.08415985,68.92025757,71.45082092,300.3884277,500.2626648,35.80098343,100.73069,1.607235074,11.10654354,0.25,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
9,11:49:44,2089,7.904847079,7.904847079,0.110187779,290.9430443,1.476094614,1.316732146,2,1,9.289719582,29.30088615,29.93460655,28.82966614,420.2006836,414.5297546,28.11221123,29.06651115,69.19332123,71.54216003,300.364624,500.5073242,33.35251617,100.7255707,1.686336637,11.10749531,0.75,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
10,11:52:17,2242,8.412550198,8.412550198,0.107218775,329.0402424,1.427586651,1.308429964,2,1,9.289719582,29.2647934,29.87786865,28.83231163,470.3963318,464.3539124,28.08907318,29.01198196,69.28002167,71.55632019,300.391449,500.6035767,26.83644104,100.7247086,1.531368375,11.10119152,0.75,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
11,11:54:49,2394,8.942760877,8.942760877,0.099987679,369.6233746,1.337743766,1.313900888,2,1,9.289719582,29.23348236,29.8452034,28.83133125,530.1151733,523.6935425,28.01350403,28.87860107,69.21929932,71.35688782,300.3389282,500.8887329,22.21284676,100.7255859,1.323848844,11.08121204,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
12,11:58:35,2620,9.558578395,9.558578395,0.088424049,437.1518216,1.230003596,1.364140129,2,1,9.289719582,29.38029861,29.99291992,29.02685356,630.2923584,623.4188232,27.9438591,28.73913193,68.45996857,70.40831757,300.4388733,500.8171997,22.24046707,100.7190247,1.161373258,11.05481243,0.25,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
13,12:01:07,2771.5,9.873152604,9.873152604,0.080181353,510.6765842,1.143831655,1.397517525,2,1,9.289719582,29.41447258,30.11022568,29.02637482,730.4609985,723.3362427,27.95492935,28.69467545,68.34937286,70.15804291,300.3759766,500.7625427,23.86174965,100.7148819,0.70708859,11.04821491,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
14,12:03:46,2930.5,9.873834511,9.873834511,0.065068937,562.5871977,0.932179735,1.401146672,2,1,9.289719582,29.05545425,30.09852409,28.43083191,829.8916016,822.8070679,28.02915764,28.63202095,69.96215057,71.46692657,300.3963013,500.498291,37.39061737,100.7079849,0.278255582,11.03235149,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
15,12:06:22,3086.5,10.02683312,10.02683312,0.064134644,653.7121812,0.905940007,1.381484098,2,1,9.289719582,29.00729942,30.02923965,28.43653297,930.4942627,923.2613525,28.07292557,28.65882683,70.26574707,71.73223877,300.3840027,500.588623,27.13081169,100.7063675,-0.062930942,11.0444231,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
16,12:09:14,3258.5,10.05007126,10.05007126,0.056535537,717.0210045,0.799662235,1.382177405,2,1,9.289719582,28.98132896,30.00952148,28.43982887,1029.953247,1022.716675,28.0886879,28.60592461,70.40614319,71.70262909,300.3604126,500.6481628,32.60289001,100.6995239,-0.451480746,11.03314304,0.5,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
17,12:11:46,3410.5,10.08104453,10.08104453,0.05308502,795.1938984,0.752668042,1.385043349,2,1,9.289719582,28.9710083,30.00168419,28.43811226,1129.660278,1122.383789,28.07155228,28.55850601,70.40500641,71.62631226,300.3049011,500.8016663,38.56233597,100.6991959,-0.955020785,11.02880192,0.75,111115,-9999,-9999,-9999,-9999,-9999,0,0,0,-9999
1 Investigator name: Valid Name
2 Contact information: validname@ornl.gov
3 Site name in full: FACE
4 Vegetation type: tropical forest
5 Soil type: dense soil
6 Major species: Tulip Poplar, Oak
7 Sample leaf light environment: heavily shaded from above
8 Water stress assessment: Little to no stress
9 Instrument used: Licor-6400
10 Extra info: dear01 sla/nut no. 2
11 SiteID Latitude(Degrees) Longitude(Degrees) Elevation SampleYear SampleDayOfYear GrowSeasonStart GrowSeasonEnd StandAge CanopyHeight LeafAreaIndex SpeciesSampled AveTimeResolution SampleHeight LeafAge SpecificLeafArea LfNitrogenContent LfCarbonContent LfPhosphContent WoodPorosity SapWoodDensity
12 NoUnit NorthPositive EastPositive m NoUnit DayOfYear DayOfYear DayOfYear Year m m2/m2 NoBlankSpace Minutes m days cm2/g % % % NoUnit g/cm3
13 Metropolitano 8.98333 -79.55 -9999 2013 22 -9999 -9999 -9999 -9999 -9999 Dendropanax_arboreus -9999 -9999 -9999 245.5609363 2.19 46.03 0.129929353 -9999 0.42
14 Gamma* Kc Ko Alpha Rd gi
15 Pa Pa Pa NoUnit umol/m2/s umol/m2/s/Pa
16 1.2 2.3 3.4 4.5 6.5 4.3
17 Obs HHMMSS FTime Photo !AdjPhoto !StomCond !Ci !Trmmol !VpdL Area StmRat BLCond Tair !Tleaf TBlk CO2R CO2S H2OR H2OS RH_R RH_S Flow !PARi PARo Press CsMch HsMch StableF Status PhiPS2 OxygenPress DataType TissueArea TissueMass Fo'_or_Fo Fm'_or_Fm Fs MeasLight
18 NoUnit HHMMSS Second umol/m2/s umol/m2/s mol/m2/s umol/mol mmol/m2/s kPa cm2 NA mol/m2/s oC oC oC umol/mol umol/mol mmol/mol mmol/mol % % umol/s umol/m2/s umol/m2/s Kpa umol/mol mmol/mol NA NA NA KPA 123Flu11_25ACi31_45ALight_9999others cm2 gram Arb_Unit Arb_Unit Arb_Unit umolm-2s-1
19 2 11:26:17 681.5 6.707855907 6.707855907 0.066161416 185.9999057 0.936751155 1.386027641 2 1 9.289719582 29.09575272 29.91356087 28.63459015 360.0646362 355.3765869 27.71545029 28.32151604 69.04498291 70.5548172 300.3703613 500.4228821 23.31687355 100.7472458 1.491710782 10.9474802 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
20 3 11:30:29 933.5 5.771831799 5.771831799 0.07942629 172.5935849 1.09826383 1.355495012 2 1 9.289719582 29.09716606 29.85159492 28.63698769 298.9832153 294.9247742 27.76527977 28.47566414 69.16172028 70.9312439 300.3979492 500.3692017 25.71452522 100.7446976 1.531658292 10.98022556 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
21 4 11:33:59 1144 4.325258223 4.325258223 0.085983618 151.023036 1.188274711 1.355434906 2 1 9.289719582 29.13848686 29.91317749 28.63607216 239.5308838 236.4640961 27.85741615 28.62590981 69.22337341 71.13302612 300.3952637 500.3513489 33.338871 100.741394 1.670513272 11.00670147 0.25 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
22 5 11:37:31 1356 2.827309844 2.827309844 0.09812974 127.6065847 1.335534508 1.336460632 2 1 9.289719582 29.13998985 29.8854599 28.63371277 179.5149384 177.474411 27.88515472 28.74891472 69.28231049 71.42836761 300.347168 500.2981567 24.44124985 100.735611 1.570171475 11.03241634 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
23 6 11:41:04 1569 1.194818958 1.194818958 0.107753176 88.63161349 1.460041169 1.331723176 2 1 9.289719582 29.28667641 29.92069626 28.83418274 109.6109619 108.7097931 27.93833351 28.88233376 68.82578278 71.15132141 300.3964844 500.3841248 31.03587151 100.7314072 1.507373929 11.05681133 0.75 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
24 7 11:43:45 1729.5 -0.756032277 -0.756032277 0.1155767 51.30436732 1.560378208 1.327865608 2 1 9.289719582 29.31532288 29.95697784 28.83176422 41.28229904 41.7423172 27.99954605 29.00834846 68.86295319 71.34403229 300.3787842 500.3143005 24.70624542 100.7319412 1.261989713 11.08116055 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
25 8 11:46:42 1906.5 7.34330065 7.34330065 0.118790057 268.5384085 1.59344573 1.319710687 2 1 9.289719582 29.33441162 29.95470619 28.83215523 380.8040466 375.516449 28.05409241 29.08415985 68.92025757 71.45082092 300.3884277 500.2626648 35.80098343 100.73069 1.607235074 11.10654354 0.25 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
26 9 11:49:44 2089 7.904847079 7.904847079 0.110187779 290.9430443 1.476094614 1.316732146 2 1 9.289719582 29.30088615 29.93460655 28.82966614 420.2006836 414.5297546 28.11221123 29.06651115 69.19332123 71.54216003 300.364624 500.5073242 33.35251617 100.7255707 1.686336637 11.10749531 0.75 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
27 10 11:52:17 2242 8.412550198 8.412550198 0.107218775 329.0402424 1.427586651 1.308429964 2 1 9.289719582 29.2647934 29.87786865 28.83231163 470.3963318 464.3539124 28.08907318 29.01198196 69.28002167 71.55632019 300.391449 500.6035767 26.83644104 100.7247086 1.531368375 11.10119152 0.75 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
28 11 11:54:49 2394 8.942760877 8.942760877 0.099987679 369.6233746 1.337743766 1.313900888 2 1 9.289719582 29.23348236 29.8452034 28.83133125 530.1151733 523.6935425 28.01350403 28.87860107 69.21929932 71.35688782 300.3389282 500.8887329 22.21284676 100.7255859 1.323848844 11.08121204 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
29 12 11:58:35 2620 9.558578395 9.558578395 0.088424049 437.1518216 1.230003596 1.364140129 2 1 9.289719582 29.38029861 29.99291992 29.02685356 630.2923584 623.4188232 27.9438591 28.73913193 68.45996857 70.40831757 300.4388733 500.8171997 22.24046707 100.7190247 1.161373258 11.05481243 0.25 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
30 13 12:01:07 2771.5 9.873152604 9.873152604 0.080181353 510.6765842 1.143831655 1.397517525 2 1 9.289719582 29.41447258 30.11022568 29.02637482 730.4609985 723.3362427 27.95492935 28.69467545 68.34937286 70.15804291 300.3759766 500.7625427 23.86174965 100.7148819 0.70708859 11.04821491 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
31 14 12:03:46 2930.5 9.873834511 9.873834511 0.065068937 562.5871977 0.932179735 1.401146672 2 1 9.289719582 29.05545425 30.09852409 28.43083191 829.8916016 822.8070679 28.02915764 28.63202095 69.96215057 71.46692657 300.3963013 500.498291 37.39061737 100.7079849 0.278255582 11.03235149 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
32 15 12:06:22 3086.5 10.02683312 10.02683312 0.064134644 653.7121812 0.905940007 1.381484098 2 1 9.289719582 29.00729942 30.02923965 28.43653297 930.4942627 923.2613525 28.07292557 28.65882683 70.26574707 71.73223877 300.3840027 500.588623 27.13081169 100.7063675 -0.062930942 11.0444231 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
33 16 12:09:14 3258.5 10.05007126 10.05007126 0.056535537 717.0210045 0.799662235 1.382177405 2 1 9.289719582 28.98132896 30.00952148 28.43982887 1029.953247 1022.716675 28.0886879 28.60592461 70.40614319 71.70262909 300.3604126 500.6481628 32.60289001 100.6995239 -0.451480746 11.03314304 0.5 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
34 17 12:11:46 3410.5 10.08104453 10.08104453 0.05308502 795.1938984 0.752668042 1.385043349 2 1 9.289719582 28.9710083 30.00168419 28.43811226 1129.660278 1122.383789 28.07155228 28.55850601 70.40500641 71.62631226 300.3049011 500.8016663 38.56233597 100.6991959 -0.955020785 11.02880192 0.75 111115 -9999 -9999 -9999 -9999 -9999 0 0 0 -9999
@@ -0,0 +1,30 @@
CurveID,ChlFlUse?,FitGi?,FitGamma*?,FitKco?,FitRd?,FitAlpha?,LimitCombina,MeanTleaf,MeanPARi,MeanPresAir,MeanPO2i,gmeso,stargamma,rdlight,vcmax,fkco,fjelect,tpu,alpha,df_gmeso,df_stargamma,df_rdlight,df_vcmax,df_fkco,df_fjelect,df_tpu,df_alpha,df2_gmeso,df2_stargamma,df2_rdlight,df2_vcmax,df2_fkco,df2_fjelect,df2_tpu,df2_alpha,SumSquare
NA,0=No1=Yes,0=No1=Yes,0=No1=Yes,0=No1=Yes,0=No1=Yes,0=No1=Yes,NA,oC,umolm-2s-1,kPa,kPa,umolm-2s-1Pa-1,Pa,umolm-2s-1,umolm-2s-1,Pa,umolm-2s-1,umolm-2s-1,0-1,umolm-2s-1Pa,(umol-2s-1)2Pa-1,umolm-2s-1,umolm-2s-1,(umol-2s-1)2Pa-1,umolm-2s-1,umolm-2s-1,(umol-2s-1)2,Pa^2,(umol-2s-1)2Pa-2,NA,NA,(umol-2s-1)2Pa-2,NA,NA,(umolm-2s-1)2,NA
wild_capsicum.csv,0,0,0,0,1,0,RubiscoRuBp,33.974989,399.811793,90.365679,18.931610,-9999.000000,4.993954,1.643863,94.115358,131.846966,109.773523,8.180265,0.000000,-9999.000000,-1.230430,0.000000,0.000000,0.004428,0.000000,-9999.000000,-9999.000000,-9999.000000,14.667812,24.000000,0.115769,0.041385,0.407778,-9999.000000,-9999.000000,3.866441
wild_capsicum.csv,0,0,1,1,1,1,RubiscoRuBp,33.974989,399.811793,90.365679,18.931610,-9999.000000,7.488471,0.000000,65.827534,85.909434,112.393339,7.632311,0.000000,-9999.000000,-0.121263,0.083547,0.000000,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,12.962859,24.000000,0.170648,0.059120,0.333894,-9999.000000,-9999.000000,2.118036
wild_capsicum.csv,0,1,0,0,1,0,RubiscoRuBp,33.974989,399.811793,90.365679,18.931610,1.544352,4.993954,2.863257,159.925336,131.846966,121.672699,8.586730,0.000000,0.000000,0.094379,0.000000,0.000000,-0.000436,0.000000,-9999.000000,-9999.000000,39.650686,22.167322,14.096344,0.010154,0.012213,0.347737,-9999.000000,-9999.000000,1.676630
wild_capsicum.csv,0,1,1,1,1,1,RubiscoRuBp,33.974989,399.811793,90.365679,18.931610,0.925675,2.574930,10.000000,610.000000,290.879356,144.358855,10.965644,0.000000,0.000000,0.000000,-0.010457,-0.000015,0.000000,0.000000,-9999.000000,-9999.000000,320.150279,45.190048,9.893208,0.000686,0.002813,0.380307,-9999.000000,-9999.000000,1.456995
wild_capsicum2.csv,0,0,0,0,1,0,RubiscoRuBp,31.709438,400.062670,90.405074,18.939863,-9999.000000,4.650823,1.415502,64.317274,107.633049,95.572588,7.130306,0.000000,-9999.000000,-0.404038,0.000000,0.000000,-0.003461,0.000000,-9999.000000,-9999.000000,-9999.000000,8.917394,24.000000,0.243250,0.053029,0.448361,-9999.000000,-9999.000000,1.421347
wild_capsicum2.csv,0,0,1,1,1,1,RubiscoRuBp,31.709438,400.062670,90.405074,18.939863,-9999.000000,6.477507,0.291140,77.420683,140.378397,96.071905,6.755518,0.000000,-9999.000000,0.000000,0.000000,0.000000,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,7.756710,24.000000,0.134441,0.027263,0.395926,-9999.000000,-9999.000000,1.033867
wild_capsicum2.csv,0,1,0,0,1,0,RubiscoRuBp,31.709438,400.062670,90.405074,18.939863,1.339483,4.650823,1.953697,93.915625,107.633049,101.406824,7.309704,0.000000,-0.000001,0.083771,0.000000,0.000000,-0.000509,0.000000,-9999.000000,-9999.000000,31.886371,13.301688,15.584723,0.029535,0.016794,0.421443,-9999.000000,-9999.000000,0.998920
wild_capsicum2.csv,0,1,1,1,1,1,RubiscoRuBp,31.709438,400.062670,90.405074,18.939863,0.634003,1.737425,10.000000,610.000000,312.585791,127.657899,9.991805,0.000000,-0.000001,-0.000001,-0.004140,-0.000002,0.000000,0.000000,-9999.000000,-9999.000000,707.397889,37.603225,9.899170,0.000446,0.001595,0.456589,-9999.000000,-9999.000000,0.792648
wild_Capsicum3.csv,0,0,0,0,1,0,RubiscoRuBp,34.494035,398.943352,90.314751,18.920940,-9999.000000,5.075316,2.155256,63.363221,138.056548,87.968389,5.927758,0.000000,-9999.000000,-0.003027,0.000000,0.000000,-0.017987,0.000000,-9999.000000,-9999.000000,-9999.000000,5.191756,24.000000,0.344914,0.045855,0.164262,-9999.000000,-9999.000000,67.650533
wild_Capsicum3.csv,0,0,1,1,1,1,RubiscoRuBp,34.494035,398.943352,90.314751,18.920940,-9999.000000,5.486967,1.492495,355.035253,1000.000000,86.107101,5.706837,0.000000,-9999.000000,0.000000,0.000000,0.000000,-0.000170,0.000000,-9999.000000,-9999.000000,-9999.000000,4.306179,24.000000,0.009617,0.001124,0.158932,-9999.000000,-9999.000000,65.936324
wild_Capsicum3.csv,0,1,0,0,1,0,RubiscoRuBp,34.494035,398.943352,90.314751,18.920940,0.591941,5.075316,4.580934,141.972628,138.056548,113.976494,6.736317,0.000000,15.399577,3.906879,0.876111,0.251069,-0.224190,-0.427930,-9999.000000,-9999.000000,654.076700,10.269384,6.780427,0.006871,0.008962,0.120297,-9999.000000,-9999.000000,68.272866
wild_Capsicum3.csv,0,1,1,1,1,1,RubiscoRuBp,34.494035,398.943352,90.314751,18.920940,0.481962,1.152095,10.000000,610.000000,508.081537,112.480462,8.542672,0.000000,0.000002,0.000001,-0.001830,-0.000039,0.000000,0.000000,-9999.000000,-9999.000000,1910.065335,14.992582,4.901648,0.001155,0.001563,0.163662,-9999.000000,-9999.000000,65.813119
wild_Capsicum4.csv,0,0,0,0,1,0,RubiscoRuBp,32.166009,400.325203,90.434718,18.946073,-9999.000000,4.718423,0.792693,63.126052,112.164244,88.635776,7.078465,0.000000,-9999.000000,-0.090876,0.000000,0.000000,0.022611,0.000000,-9999.000000,-9999.000000,-9999.000000,7.406472,24.000000,0.362615,0.069759,0.157987,-9999.000000,-9999.000000,3.511349
wild_Capsicum4.csv,0,0,1,1,1,1,RubiscoRuBp,32.166009,400.325203,90.434718,18.946073,-9999.000000,6.989404,0.043088,33.841686,43.226266,94.336051,6.828597,0.000000,-9999.000000,-0.038173,0.000000,0.000000,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,8.575570,24.000000,1.087006,0.231778,0.127897,-9999.000000,-9999.000000,1.749561
wild_Capsicum4.csv,0,1,0,0,1,0,RubiscoRuBp,32.166009,400.325203,90.434718,18.946073,1.025778,4.718423,3.626506,185.369125,112.164244,111.694716,8.023069,0.000000,-0.056486,-0.154552,-0.022287,-0.005716,0.008694,0.010728,-9999.000000,-9999.000000,135.835931,29.782112,9.772014,0.000646,0.001386,0.190154,-9999.000000,-9999.000000,1.781338
wild_Capsicum4.csv,0,1,1,1,1,1,RubiscoRuBp,32.166009,400.325203,90.434718,18.946073,3.193354,6.989404,0.041298,30.499358,29.688661,97.311532,6.828000,0.000000,0.000000,-0.020359,0.000000,0.000000,0.000000,0.000000,-9999.000000,-9999.000000,1.390679,9.055833,18.509234,1.087689,0.313154,0.112399,-9999.000000,-9999.000000,1.731289
wild_Capsicum5.csv,0,0,0,0,1,0,RubiscoRuBp,32.278495,800.080620,90.136452,18.883587,-9999.000000,4.735197,2.375809,95.582881,113.125896,135.455927,9.519851,0.000000,-9999.000000,-0.108750,0.000000,0.000000,0.009620,0.000000,-9999.000000,-9999.000000,-9999.000000,21.715590,32.000000,0.557923,0.240466,0.152067,-9999.000000,-9999.000000,18.521193
wild_Capsicum5.csv,0,0,1,1,1,1,RubiscoRuBp,32.278495,800.080620,90.136452,18.883587,-9999.000000,8.099062,0.000000,610.000000,848.600332,140.997367,8.727914,0.000000,-9999.000000,-0.143867,1.205697,-0.000283,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,24.290145,32.000000,0.006082,0.002942,0.192032,-9999.000000,-9999.000000,16.154748
wild_Capsicum5.csv,0,1,0,0,1,0,RubiscoRuBp,32.278495,800.080620,90.136452,18.883587,1.276209,4.735197,5.485152,206.750036,113.125896,170.204794,10.556298,0.000000,-0.000004,0.160958,0.000000,0.000000,-0.004579,0.000000,-9999.000000,-9999.000000,375.033598,58.774093,10.707192,0.009985,0.026792,0.164206,-9999.000000,-9999.000000,13.065764
wild_Capsicum5.csv,0,1,1,1,1,1,RubiscoRuBp,32.278495,800.080620,90.136452,18.883587,1.069205,3.315576,10.000000,610.000000,275.248979,181.092841,12.061247,0.000000,0.000002,0.000001,-0.002111,-0.000224,0.000000,0.000000,-9999.000000,-9999.000000,760.888151,85.520220,8.231482,0.001243,0.005626,0.175146,-9999.000000,-9999.000000,12.677551
wild_Capsicum6.csv,0,0,0,0,1,0,Rubisco,32.747685,800.231575,90.080820,18.871932,-9999.000000,4.805672,3.245204,88.214867,117.959356,-9999.000000,5.856330,0.000000,-9999.000000,0.000000,0.000000,0.000000,-0.033268,-9999.000000,-9999.000000,-9999.000000,-9999.000000,11.792629,28.000000,0.356407,0.135847,-9999.000000,-9999.000000,-9999.000000,26.469359
wild_Capsicum6.csv,0,0,1,1,1,1,RubiscoRuBp,32.747685,800.231575,90.080820,18.871932,-9999.000000,9.505556,0.000000,610.000000,994.619694,117.398094,4.774595,0.000000,-9999.000000,0.000000,0.037259,-0.000676,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,13.417088,28.000000,0.002198,0.000791,0.049044,-9999.000000,-9999.000000,23.506463
wild_Capsicum6.csv,0,1,0,0,1,0,RubiscoRuBp,32.747685,800.231575,90.080820,18.871932,0.858529,4.805672,9.916749,269.358621,117.959356,200.187378,8.080178,0.000000,-0.000243,-0.100604,-0.000197,-0.005679,0.009232,0.005620,-9999.000000,-9999.000000,797.995993,20.452186,3.049117,0.006750,0.028480,0.010963,-9999.000000,-9999.000000,23.261752
wild_Capsicum6.csv,0,1,1,1,1,1,RubiscoRuBp,32.747685,800.231575,90.080820,18.871932,0.821302,5.156253,9.978409,350.598013,143.258252,221.060436,8.100731,0.000000,-0.109824,-0.257535,-0.000620,-0.009004,0.018846,0.015815,-9999.000000,-9999.000000,984.762911,18.846789,2.453359,0.003274,0.016331,0.006992,-9999.000000,-9999.000000,23.182654
wild_Capsicum7.csv,0,0,0,0,1,0,Rubisco,32.198396,799.319470,90.225448,18.902231,-9999.000000,4.723248,1.992925,84.488960,112.367091,-9999.000000,5.980190,0.000000,-9999.000000,0.000000,0.000000,0.000000,-0.038920,-9999.000000,-9999.000000,-9999.000000,-9999.000000,12.497384,30.000000,0.483307,0.178884,-9999.000000,-9999.000000,-9999.000000,20.332804
wild_Capsicum7.csv,0,0,1,1,1,1,RubiscoRuBp,32.198396,799.319470,90.225448,18.902231,-9999.000000,7.558458,0.000000,610.000000,997.251974,110.572451,5.315881,0.000000,-9999.000000,0.000000,0.031576,-0.000599,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,15.023645,30.000000,0.004403,0.001567,0.069154,-9999.000000,-9999.000000,17.106025
wild_Capsicum7.csv,0,1,0,0,1,0,RubiscoRuBp,32.198396,799.319470,90.225448,18.902231,0.737564,4.723248,9.058735,386.371863,112.367091,260.265931,8.335460,0.000000,-0.000025,0.038628,0.000001,0.000000,-0.000888,0.000000,-9999.000000,-9999.000000,2612.646445,23.893702,1.431409,0.001217,0.012119,0.004617,-9999.000000,-9999.000000,16.898273
wild_Capsicum7.csv,0,1,1,1,1,1,RubiscoRuBp,32.198396,799.319470,90.225448,18.902231,0.798385,3.605213,9.953597,269.244689,98.760470,195.472996,8.633747,0.000000,0.445689,0.249318,0.010371,0.004953,-0.014029,-0.011081,-9999.000000,-9999.000000,1768.704353,29.935719,2.546639,0.005775,0.034908,0.015029,-9999.000000,-9999.000000,16.904248
1 CurveID ChlFlUse? FitGi? FitGamma*? FitKco? FitRd? FitAlpha? LimitCombina MeanTleaf MeanPARi MeanPresAir MeanPO2i gmeso stargamma rdlight vcmax fkco fjelect tpu alpha df_gmeso df_stargamma df_rdlight df_vcmax df_fkco df_fjelect df_tpu df_alpha df2_gmeso df2_stargamma df2_rdlight df2_vcmax df2_fkco df2_fjelect df2_tpu df2_alpha SumSquare
2 NA 0=No1=Yes 0=No1=Yes 0=No1=Yes 0=No1=Yes 0=No1=Yes 0=No1=Yes NA oC umolm-2s-1 kPa kPa umolm-2s-1Pa-1 Pa umolm-2s-1 umolm-2s-1 Pa umolm-2s-1 umolm-2s-1 0-1 umolm-2s-1Pa (umol-2s-1)2Pa-1 umolm-2s-1 umolm-2s-1 (umol-2s-1)2Pa-1 umolm-2s-1 umolm-2s-1 (umol-2s-1)2 Pa^2 (umol-2s-1)2Pa-2 NA NA (umol-2s-1)2Pa-2 NA NA (umolm-2s-1)2 NA
3 wild_capsicum.csv 0 0 0 0 1 0 RubiscoRuBp 33.974989 399.811793 90.365679 18.931610 -9999.000000 4.993954 1.643863 94.115358 131.846966 109.773523 8.180265 0.000000 -9999.000000 -1.230430 0.000000 0.000000 0.004428 0.000000 -9999.000000 -9999.000000 -9999.000000 14.667812 24.000000 0.115769 0.041385 0.407778 -9999.000000 -9999.000000 3.866441
4 wild_capsicum.csv 0 0 1 1 1 1 RubiscoRuBp 33.974989 399.811793 90.365679 18.931610 -9999.000000 7.488471 0.000000 65.827534 85.909434 112.393339 7.632311 0.000000 -9999.000000 -0.121263 0.083547 0.000000 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 12.962859 24.000000 0.170648 0.059120 0.333894 -9999.000000 -9999.000000 2.118036
5 wild_capsicum.csv 0 1 0 0 1 0 RubiscoRuBp 33.974989 399.811793 90.365679 18.931610 1.544352 4.993954 2.863257 159.925336 131.846966 121.672699 8.586730 0.000000 0.000000 0.094379 0.000000 0.000000 -0.000436 0.000000 -9999.000000 -9999.000000 39.650686 22.167322 14.096344 0.010154 0.012213 0.347737 -9999.000000 -9999.000000 1.676630
6 wild_capsicum.csv 0 1 1 1 1 1 RubiscoRuBp 33.974989 399.811793 90.365679 18.931610 0.925675 2.574930 10.000000 610.000000 290.879356 144.358855 10.965644 0.000000 0.000000 0.000000 -0.010457 -0.000015 0.000000 0.000000 -9999.000000 -9999.000000 320.150279 45.190048 9.893208 0.000686 0.002813 0.380307 -9999.000000 -9999.000000 1.456995
7 wild_capsicum2.csv 0 0 0 0 1 0 RubiscoRuBp 31.709438 400.062670 90.405074 18.939863 -9999.000000 4.650823 1.415502 64.317274 107.633049 95.572588 7.130306 0.000000 -9999.000000 -0.404038 0.000000 0.000000 -0.003461 0.000000 -9999.000000 -9999.000000 -9999.000000 8.917394 24.000000 0.243250 0.053029 0.448361 -9999.000000 -9999.000000 1.421347
8 wild_capsicum2.csv 0 0 1 1 1 1 RubiscoRuBp 31.709438 400.062670 90.405074 18.939863 -9999.000000 6.477507 0.291140 77.420683 140.378397 96.071905 6.755518 0.000000 -9999.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 7.756710 24.000000 0.134441 0.027263 0.395926 -9999.000000 -9999.000000 1.033867
9 wild_capsicum2.csv 0 1 0 0 1 0 RubiscoRuBp 31.709438 400.062670 90.405074 18.939863 1.339483 4.650823 1.953697 93.915625 107.633049 101.406824 7.309704 0.000000 -0.000001 0.083771 0.000000 0.000000 -0.000509 0.000000 -9999.000000 -9999.000000 31.886371 13.301688 15.584723 0.029535 0.016794 0.421443 -9999.000000 -9999.000000 0.998920
10 wild_capsicum2.csv 0 1 1 1 1 1 RubiscoRuBp 31.709438 400.062670 90.405074 18.939863 0.634003 1.737425 10.000000 610.000000 312.585791 127.657899 9.991805 0.000000 -0.000001 -0.000001 -0.004140 -0.000002 0.000000 0.000000 -9999.000000 -9999.000000 707.397889 37.603225 9.899170 0.000446 0.001595 0.456589 -9999.000000 -9999.000000 0.792648
11 wild_Capsicum3.csv 0 0 0 0 1 0 RubiscoRuBp 34.494035 398.943352 90.314751 18.920940 -9999.000000 5.075316 2.155256 63.363221 138.056548 87.968389 5.927758 0.000000 -9999.000000 -0.003027 0.000000 0.000000 -0.017987 0.000000 -9999.000000 -9999.000000 -9999.000000 5.191756 24.000000 0.344914 0.045855 0.164262 -9999.000000 -9999.000000 67.650533
12 wild_Capsicum3.csv 0 0 1 1 1 1 RubiscoRuBp 34.494035 398.943352 90.314751 18.920940 -9999.000000 5.486967 1.492495 355.035253 1000.000000 86.107101 5.706837 0.000000 -9999.000000 0.000000 0.000000 0.000000 -0.000170 0.000000 -9999.000000 -9999.000000 -9999.000000 4.306179 24.000000 0.009617 0.001124 0.158932 -9999.000000 -9999.000000 65.936324
13 wild_Capsicum3.csv 0 1 0 0 1 0 RubiscoRuBp 34.494035 398.943352 90.314751 18.920940 0.591941 5.075316 4.580934 141.972628 138.056548 113.976494 6.736317 0.000000 15.399577 3.906879 0.876111 0.251069 -0.224190 -0.427930 -9999.000000 -9999.000000 654.076700 10.269384 6.780427 0.006871 0.008962 0.120297 -9999.000000 -9999.000000 68.272866
14 wild_Capsicum3.csv 0 1 1 1 1 1 RubiscoRuBp 34.494035 398.943352 90.314751 18.920940 0.481962 1.152095 10.000000 610.000000 508.081537 112.480462 8.542672 0.000000 0.000002 0.000001 -0.001830 -0.000039 0.000000 0.000000 -9999.000000 -9999.000000 1910.065335 14.992582 4.901648 0.001155 0.001563 0.163662 -9999.000000 -9999.000000 65.813119
15 wild_Capsicum4.csv 0 0 0 0 1 0 RubiscoRuBp 32.166009 400.325203 90.434718 18.946073 -9999.000000 4.718423 0.792693 63.126052 112.164244 88.635776 7.078465 0.000000 -9999.000000 -0.090876 0.000000 0.000000 0.022611 0.000000 -9999.000000 -9999.000000 -9999.000000 7.406472 24.000000 0.362615 0.069759 0.157987 -9999.000000 -9999.000000 3.511349
16 wild_Capsicum4.csv 0 0 1 1 1 1 RubiscoRuBp 32.166009 400.325203 90.434718 18.946073 -9999.000000 6.989404 0.043088 33.841686 43.226266 94.336051 6.828597 0.000000 -9999.000000 -0.038173 0.000000 0.000000 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 8.575570 24.000000 1.087006 0.231778 0.127897 -9999.000000 -9999.000000 1.749561
17 wild_Capsicum4.csv 0 1 0 0 1 0 RubiscoRuBp 32.166009 400.325203 90.434718 18.946073 1.025778 4.718423 3.626506 185.369125 112.164244 111.694716 8.023069 0.000000 -0.056486 -0.154552 -0.022287 -0.005716 0.008694 0.010728 -9999.000000 -9999.000000 135.835931 29.782112 9.772014 0.000646 0.001386 0.190154 -9999.000000 -9999.000000 1.781338
18 wild_Capsicum4.csv 0 1 1 1 1 1 RubiscoRuBp 32.166009 400.325203 90.434718 18.946073 3.193354 6.989404 0.041298 30.499358 29.688661 97.311532 6.828000 0.000000 0.000000 -0.020359 0.000000 0.000000 0.000000 0.000000 -9999.000000 -9999.000000 1.390679 9.055833 18.509234 1.087689 0.313154 0.112399 -9999.000000 -9999.000000 1.731289
19 wild_Capsicum5.csv 0 0 0 0 1 0 RubiscoRuBp 32.278495 800.080620 90.136452 18.883587 -9999.000000 4.735197 2.375809 95.582881 113.125896 135.455927 9.519851 0.000000 -9999.000000 -0.108750 0.000000 0.000000 0.009620 0.000000 -9999.000000 -9999.000000 -9999.000000 21.715590 32.000000 0.557923 0.240466 0.152067 -9999.000000 -9999.000000 18.521193
20 wild_Capsicum5.csv 0 0 1 1 1 1 RubiscoRuBp 32.278495 800.080620 90.136452 18.883587 -9999.000000 8.099062 0.000000 610.000000 848.600332 140.997367 8.727914 0.000000 -9999.000000 -0.143867 1.205697 -0.000283 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 24.290145 32.000000 0.006082 0.002942 0.192032 -9999.000000 -9999.000000 16.154748
21 wild_Capsicum5.csv 0 1 0 0 1 0 RubiscoRuBp 32.278495 800.080620 90.136452 18.883587 1.276209 4.735197 5.485152 206.750036 113.125896 170.204794 10.556298 0.000000 -0.000004 0.160958 0.000000 0.000000 -0.004579 0.000000 -9999.000000 -9999.000000 375.033598 58.774093 10.707192 0.009985 0.026792 0.164206 -9999.000000 -9999.000000 13.065764
22 wild_Capsicum5.csv 0 1 1 1 1 1 RubiscoRuBp 32.278495 800.080620 90.136452 18.883587 1.069205 3.315576 10.000000 610.000000 275.248979 181.092841 12.061247 0.000000 0.000002 0.000001 -0.002111 -0.000224 0.000000 0.000000 -9999.000000 -9999.000000 760.888151 85.520220 8.231482 0.001243 0.005626 0.175146 -9999.000000 -9999.000000 12.677551
23 wild_Capsicum6.csv 0 0 0 0 1 0 Rubisco 32.747685 800.231575 90.080820 18.871932 -9999.000000 4.805672 3.245204 88.214867 117.959356 -9999.000000 5.856330 0.000000 -9999.000000 0.000000 0.000000 0.000000 -0.033268 -9999.000000 -9999.000000 -9999.000000 -9999.000000 11.792629 28.000000 0.356407 0.135847 -9999.000000 -9999.000000 -9999.000000 26.469359
24 wild_Capsicum6.csv 0 0 1 1 1 1 RubiscoRuBp 32.747685 800.231575 90.080820 18.871932 -9999.000000 9.505556 0.000000 610.000000 994.619694 117.398094 4.774595 0.000000 -9999.000000 0.000000 0.037259 -0.000676 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 13.417088 28.000000 0.002198 0.000791 0.049044 -9999.000000 -9999.000000 23.506463
25 wild_Capsicum6.csv 0 1 0 0 1 0 RubiscoRuBp 32.747685 800.231575 90.080820 18.871932 0.858529 4.805672 9.916749 269.358621 117.959356 200.187378 8.080178 0.000000 -0.000243 -0.100604 -0.000197 -0.005679 0.009232 0.005620 -9999.000000 -9999.000000 797.995993 20.452186 3.049117 0.006750 0.028480 0.010963 -9999.000000 -9999.000000 23.261752
26 wild_Capsicum6.csv 0 1 1 1 1 1 RubiscoRuBp 32.747685 800.231575 90.080820 18.871932 0.821302 5.156253 9.978409 350.598013 143.258252 221.060436 8.100731 0.000000 -0.109824 -0.257535 -0.000620 -0.009004 0.018846 0.015815 -9999.000000 -9999.000000 984.762911 18.846789 2.453359 0.003274 0.016331 0.006992 -9999.000000 -9999.000000 23.182654
27 wild_Capsicum7.csv 0 0 0 0 1 0 Rubisco 32.198396 799.319470 90.225448 18.902231 -9999.000000 4.723248 1.992925 84.488960 112.367091 -9999.000000 5.980190 0.000000 -9999.000000 0.000000 0.000000 0.000000 -0.038920 -9999.000000 -9999.000000 -9999.000000 -9999.000000 12.497384 30.000000 0.483307 0.178884 -9999.000000 -9999.000000 -9999.000000 20.332804
28 wild_Capsicum7.csv 0 0 1 1 1 1 RubiscoRuBp 32.198396 799.319470 90.225448 18.902231 -9999.000000 7.558458 0.000000 610.000000 997.251974 110.572451 5.315881 0.000000 -9999.000000 0.000000 0.031576 -0.000599 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 15.023645 30.000000 0.004403 0.001567 0.069154 -9999.000000 -9999.000000 17.106025
29 wild_Capsicum7.csv 0 1 0 0 1 0 RubiscoRuBp 32.198396 799.319470 90.225448 18.902231 0.737564 4.723248 9.058735 386.371863 112.367091 260.265931 8.335460 0.000000 -0.000025 0.038628 0.000001 0.000000 -0.000888 0.000000 -9999.000000 -9999.000000 2612.646445 23.893702 1.431409 0.001217 0.012119 0.004617 -9999.000000 -9999.000000 16.898273
30 wild_Capsicum7.csv 0 1 1 1 1 1 RubiscoRuBp 32.198396 799.319470 90.225448 18.902231 0.798385 3.605213 9.953597 269.244689 98.760470 195.472996 8.633747 0.000000 0.445689 0.249318 0.010371 0.004953 -0.014029 -0.011081 -9999.000000 -9999.000000 1768.704353 29.935719 2.546639 0.005775 0.034908 0.015029 -9999.000000 -9999.000000 16.904248
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,30 @@
CurveID,ChlFlUse?,FitGi?,FitGamma*?,FitKco?,FitRd?,FitAlpha?,LimitCombina,Vcmax25,Jmax25,Rdlight25,gmeso25,tpu25,gammas*25,fkc25,fko25,alpha,ha_vcmax,hd_vcmax,sv_vcmax,ha_jmax,hd_jmax,sv_jmax,ha_tpu,hd_tpu,sv_tpu,ha_gmeso,hd_gmeso,sv_gmeso,ha_darkresp,ha_stargamma,ha_kc,ha_ko,numrubisco1cur,numrubp1curve,numtpu1curve,SumSquare1curve,gamma25,fkco25,leaftemp,MeanPARi,MeanPresAir,MeanPO2i,gmeso,Gamma*,CalcedGamma,vcmax,fkco,fkco_mod,fjelect,fjmax,tpu,stargamma25_ori,Rdlight,CO2i1Thres25,Anet25_CO2i1,CO2i2Thres25,Anet25_CO2i2,CO2i1Thres,Anet_CO2i1,CO2i2Thres,Anet_CO2i2,AsmptoticAnet,df_gmeso,df_stargamma,df_rdlight,df_vcmax,df_fkco,df_fjelect,df_tpu,df_alpha,df2_gmeso,df2_stargamma,df2_rdlight,df2_vcmax,df2_fkco,df2_fjelect,df2_tpu,df2_alpha,siteID,Latitude,Longitude,Elevation,yearsampled,sampledoy,GrowingSeasonStart,GrowingSeasonEnd,standage,CanopyHeight,LeafAreaIndex,species,avetimeresolution,avetimesampled,SampleHeight,Needleage,specificLAI,nitrogencontent,carboncontent,phosphoruscontent
NA,0=No1=Yes,0=No1=Yes,0=No1=Yes,0=No1=Yes,0=No1=Yes,0=No1=Yes,NA,umolm-2s-1,umolm-2s-1,umolm-2s-1,umolm-2s-1Pa-1,umolm-2s-1,Pa,Pa,Pa,0_1,kJmol-1,kJmol-1,KJmol-1K-1,kJmol-1,kJmol-1,KJmol-1K-1,kJmol-1,kJmol-1,KJmol-1K-1,kJmol-1,kJmol-1,KJmol-1K-1,kJmol-1,kJmol-1,kJmol-1,kJmol-1,howmanypoints,howmanypoints,howmanypoints,NA,Pa,Pa,oC,umolm-2s-1,kPa,kPa,umolm-2s-1Pa-1,Pa,Pa,umolm-2s-1,Pa,Pa,umolm-2s-1,umolm-2s-1,umolm-2s-1,Pa,umolm-2s-1,Pa,umolm-2s-1,Pa,umolm-2s-1,Pa,umolm-2s-1,Pa,umolm-2s-1,umolm-2s-1,umolm-2s-1Pa,(umol-2s-1)2Pa-1,umolm-2s-1,umolm-2s-1,(umol-2s-1)2Pa-1,umolm-2s-1,umolm-2s-1,(umol-2s-1)2,Pa^2,(umol-2s-1)2Pa-2,NA,NA,(umol-2s-1)2Pa-2,NA,NA,(umolm-2s-1)2,NA,DegNorthPositive,DegEastPositive,m,Year,DayofYear,DayofYear,DayofYear,years,m,m2m-2,species,minutes,HourFraction,m,days,cm2g-1,%,%,%
wild_capsicum.csv,0,0,0,0,1,0,RubiscoRuBp,43.571138,104.379299,0.951412,-9999.000000,6.007318,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,7,5,0,3.866441,5.195301,58.335527,33.974989,399.811793,90.365679,18.931610,-9999.000000,4.993954,6.508543,94.115358,131.846966,131.846966,109.773523,174.389570,8.180265,3.743000,1.643863,79.040779,22.930508,25.222606,17.070542,40.171465,17.602587,131.662688,22.896933,22.896933,-9999.000000,-1.230430,0.000000,0.000000,0.004428,0.000000,-9999.000000,-9999.000000,-9999.000000,14.667812,24.000000,0.115769,0.041385,0.407778,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.543939,16.136736,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_capsicum.csv,0,0,1,1,1,1,RubiscoRuBp,30.475160,121.541932,0.000000,-9999.000000,5.604919,5.612656,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,7,5,0,2.118036,7.526855,58.335527,33.974989,399.811793,90.365679,18.931610,-9999.000000,7.488471,8.793539,65.827534,85.909434,131.846966,112.393339,203.063688,7.632311,3.743000,0.000000,545.701816,27.248818,30.704545,16.814756,37.849118,16.148917,106.382777,22.896933,22.896933,-9999.000000,-0.121263,0.083547,0.000000,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,12.962859,24.000000,0.170648,0.059120,0.333894,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.543939,16.136736,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_capsicum.csv,0,1,0,0,1,0,RubiscoRuBp,74.038171,-246.475555,1.657156,0.907334,6.305812,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,6,6,0,1.676630,4.634646,58.335527,33.974989,399.811793,90.365679,18.931610,1.544352,4.993954,5.924452,159.925336,131.846966,131.846966,121.672699,-411.793971,8.586730,3.743000,2.863257,1.916600,-1.657156,21.087345,-100.613660,26.166367,11.632766,102.674818,22.896933,22.896933,0.000000,0.094379,0.000000,0.000000,-0.000436,0.000000,-9999.000000,-9999.000000,39.650686,22.167322,14.096344,0.010154,0.012213,0.347737,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.543939,16.136736,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_capsicum.csv,0,1,1,1,1,1,RubiscoRuBp,282.402311,57.809866,5.787661,0.543851,8.052809,1.929926,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,6,6,0,1.456995,2.181197,58.335527,33.974989,399.811793,90.365679,18.931610,0.925675,2.574930,3.102644,610.000000,290.879356,131.846966,144.358855,96.584646,10.965644,3.743000,10.000000,-8.712077,-5.787661,-8.712077,-5.787661,24.240792,10.573863,106.902970,22.896933,22.896933,0.000000,0.000000,-0.010457,-0.000015,0.000000,0.000000,-9999.000000,-9999.000000,320.150279,45.190048,9.893208,0.000686,0.002813,0.380307,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.543939,16.136736,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_capsicum2.csv,0,0,0,0,1,0,RubiscoRuBp,36.011058,75.272111,0.937660,-9999.000000,5.298120,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,7,5,0,1.421347,5.506694,58.349084,31.709438,400.062670,90.405074,18.939863,-9999.000000,4.650823,6.466611,64.317274,107.633049,107.633049,95.572588,110.792541,7.130306,3.743000,1.415502,92.801844,20.280226,26.056101,14.956699,48.818264,16.741772,123.926869,19.975415,19.975415,-9999.000000,-0.404038,0.000000,0.000000,-0.003461,0.000000,-9999.000000,-9999.000000,-9999.000000,8.917394,24.000000,0.243250,0.053029,0.448361,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicumannuumvar.glabriusculum,1.456061,15.724306,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_capsicum2.csv,0,0,1,1,1,1,RubiscoRuBp,43.347619,75.934701,0.192857,-9999.000000,5.019637,5.213122,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,7,5,0,1.033867,6.588508,58.349084,31.709438,400.062670,90.405074,18.939863,-9999.000000,6.477507,8.321992,77.420683,140.378397,107.633049,96.071905,111.767804,6.755518,3.743000,0.291140,49.120103,17.516992,31.500663,14.866053,44.353912,15.582733,111.459106,19.975415,19.975415,-9999.000000,0.000000,0.000000,0.000000,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,7.756710,24.000000,0.134441,0.027263,0.395926,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicumannuumvar.glabriusculum,1.456061,15.724306,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_capsicum2.csv,0,1,0,0,1,0,RubiscoRuBp,52.583090,84.125109,1.294173,0.875283,5.431420,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,6,6,0,0.998920,4.975102,58.349084,31.709438,400.062670,90.405074,18.939863,1.339483,4.650823,5.920037,93.915625,107.633049,107.633049,101.406824,123.823212,7.309704,3.743000,1.953697,60.483174,18.045684,41.081287,15.000089,37.261591,13.669316,108.959333,19.975415,19.975415,-0.000001,0.083771,0.000000,0.000000,-0.000509,0.000000,-9999.000000,-9999.000000,31.886371,13.301688,15.584723,0.029535,0.016794,0.421443,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicumannuumvar.glabriusculum,1.456061,15.724306,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_capsicum2.csv,0,1,1,1,1,1,RubiscoRuBp,341.537253,24.346983,6.624222,0.414288,7.424335,1.398286,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,6,6,0,0.792648,1.600165,58.349084,31.709438,400.062670,90.405074,18.939863,0.634003,1.737425,2.287359,610.000000,312.585791,107.633049,127.657899,35.836169,9.991805,3.743000,10.000000,-14.591116,-6.624222,32.231803,1.047404,32.780590,12.166708,113.819435,19.975415,19.975415,-0.000001,-0.000001,-0.004140,-0.000002,0.000000,0.000000,-9999.000000,-9999.000000,707.397889,37.603225,9.899170,0.000446,0.001595,0.456589,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicumannuumvar.glabriusculum,1.456061,15.724306,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum3.csv,0,0,0,0,1,0,RubiscoRuBp,28.095051,59.561427,1.209737,-9999.000000,4.382665,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,10,2,0,67.650533,6.080560,58.318001,34.494035,398.943352,90.314751,18.920940,-9999.000000,5.075316,7.509561,63.363221,138.056548,138.056548,87.968389,102.415250,5.927758,3.743000,2.155256,175.687988,19.434193,20.436480,11.938259,57.841703,14.912013,69.408529,15.628017,15.628017,-9999.000000,-0.003027,0.000000,0.000000,-0.017987,0.000000,-9999.000000,-9999.000000,-9999.000000,5.191756,24.000000,0.344914,0.045855,0.164262,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.545455,16.621644,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum3.csv,0,0,1,1,1,1,RubiscoRuBp,157.421501,57.681917,0.837732,-9999.000000,4.219329,4.046588,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,10,2,0,65.936324,4.440678,58.318001,34.494035,398.943352,90.314751,18.920940,-9999.000000,5.486967,8.338642,355.035253,1000.000000,138.056548,86.107101,99.183452,5.706837,3.743000,1.492495,-0.137177,-12.157863,21.373077,11.820254,52.864150,14.483516,69.445706,15.628017,15.628017,-9999.000000,0.000000,0.000000,0.000000,-0.000170,0.000000,-9999.000000,-9999.000000,-9999.000000,4.306179,24.000000,0.009617,0.001124,0.158932,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.545455,16.621644,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum3.csv,0,1,0,0,1,0,RubiscoRuBp,62.950211,143.839321,2.571259,0.342403,4.980470,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,8,4,0,68.272866,4.868263,58.318001,34.494035,398.943352,90.314751,18.920940,0.591941,5.075316,6.249377,141.972628,138.056548,138.056548,113.976494,247.330204,6.736317,3.743000,4.580934,88.029531,18.311371,52.250077,12.370151,39.543398,10.404683,68.615303,15.628017,15.628017,15.399577,3.906879,0.876111,0.251069,-0.224190,-0.427930,-9999.000000,-9999.000000,654.076700,10.269384,6.780427,0.006871,0.008962,0.120297,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.545455,16.621644,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum3.csv,0,1,1,1,1,1,RubiscoRuBp,270.472059,125.419440,5.612960,0.278787,6.315992,0.849660,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,10,2,0,65.813119,1.087851,58.318001,34.494035,398.943352,90.314751,18.920940,0.481962,1.152095,2.018100,610.000000,508.081537,138.056548,112.480462,215.657412,8.542672,3.743000,10.000000,46.466265,11.596442,53.947727,13.335018,51.484385,14.143774,69.121332,15.628017,15.628017,0.000002,0.000001,-0.001830,-0.000039,0.000000,0.000000,-9999.000000,-9999.000000,1910.065335,14.992582,4.901648,0.001155,0.001563,0.163662,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.545455,16.621644,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum4.csv,0,0,0,0,1,0,RubiscoRuBp,34.007771,65.862415,0.510921,-9999.000000,5.221173,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,10,2,0,3.511349,5.542323,58.359285,32.166009,400.325203,90.434718,18.946073,-9999.000000,4.718423,6.577853,63.126052,112.164244,112.164244,88.635776,99.464890,7.078465,3.743000,0.792693,87.654077,19.032692,30.821392,15.152598,46.127989,15.721209,330.194066,20.442702,20.442702,-9999.000000,-0.090876,0.000000,0.000000,0.022611,0.000000,-9999.000000,-9999.000000,-9999.000000,7.406472,24.000000,0.362615,0.069759,0.157987,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.639394,15.321574,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum4.csv,0,0,1,1,1,1,RubiscoRuBp,18.231463,72.362936,0.027772,-9999.000000,5.036867,5.544509,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,10,2,0,1.749561,8.758871,58.359285,32.166009,400.325203,90.434718,18.946073,-9999.000000,6.989404,8.277251,33.841686,43.226266,112.164244,94.336051,109.281924,6.828597,3.743000,0.043088,-219.367804,25.439703,35.207004,15.082828,53.265724,16.186950,145.633523,20.442702,20.442702,-9999.000000,-0.038173,0.000000,0.000000,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,8.575570,24.000000,1.087006,0.231778,0.127897,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.639394,15.321574,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum4.csv,0,1,0,0,1,0,RubiscoRuBp,99.863534,115.386271,2.337423,0.653849,5.917926,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,3,9,0,1.781338,4.431106,58.359285,32.166009,400.325203,90.434718,18.946073,1.025778,4.718423,5.429735,185.369125,112.164244,112.164244,111.694716,174.255419,8.023069,3.743000,3.626506,27.107086,9.707340,46.923532,15.416355,11.318999,2.602056,113.039845,20.442702,20.442702,-0.056486,-0.154552,-0.022287,-0.005716,0.008694,0.010728,-9999.000000,-9999.000000,135.835931,29.782112,9.772014,0.000646,0.001386,0.190154,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.639394,15.321574,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum4.csv,0,1,1,1,1,1,RubiscoRuBp,16.430858,76.322392,0.026618,2.035499,5.036427,5.544509,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,10,2,0,1.731289,9.111079,58.359285,32.166009,400.325203,90.434718,18.946073,3.193354,6.989404,7.973620,30.499358,29.688661,112.164244,97.311532,115.261463,6.828000,3.743000,0.041298,5.531432,-0.026618,40.216648,15.082662,52.975129,16.049410,125.130359,20.442702,20.442702,0.000000,-0.020359,0.000000,0.000000,0.000000,0.000000,-9999.000000,-9999.000000,1.390679,9.055833,18.509234,1.087689,0.313154,0.112399,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.639394,15.321574,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum5.csv,0,0,0,0,1,0,RubiscoRuBp,51.007424,94.233307,1.521029,-9999.000000,7.011814,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,14,2,0,18.521193,5.035271,58.256643,32.278495,800.080620,90.136452,18.883587,-9999.000000,4.735197,6.069600,95.582881,113.125896,113.125896,135.455927,143.212167,9.519851,3.743000,2.375809,92.802850,28.551318,22.155618,19.514413,47.403401,23.029832,81.219442,26.183742,26.183742,-9999.000000,-0.108750,0.000000,0.000000,0.009620,0.000000,-9999.000000,-9999.000000,-9999.000000,21.715590,32.000000,0.557923,0.240466,0.152067,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.666667,16.547743,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum5.csv,0,0,1,1,1,1,RubiscoRuBp,325.524074,98.613004,0.000000,-9999.000000,6.428516,6.402012,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,12,4,0,16.154748,6.580974,58.256643,32.278495,800.080620,90.136452,18.883587,-9999.000000,8.099062,9.490210,610.000000,848.600332,113.125896,140.997367,149.868262,8.727914,3.743000,0.000000,-7.284511,-87.406443,29.604449,19.285548,34.852936,18.472809,78.275472,26.183742,26.183742,-9999.000000,-0.143867,1.205697,-0.000283,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,24.290145,32.000000,0.006082,0.002942,0.192032,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.666667,16.547743,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum5.csv,0,1,0,0,1,0,RubiscoRuBp,110.331334,124.024078,3.511678,0.808672,7.775206,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,9,7,0,13.065764,4.411424,58.256643,32.278495,800.080620,90.136452,18.883587,1.276209,4.735197,5.426322,206.750036,113.125896,113.125896,170.204794,188.487038,10.556298,3.743000,5.485152,54.125214,24.048512,41.868521,19.813940,28.802657,14.563221,66.592099,26.183742,26.183742,-0.000004,0.160958,0.000000,0.000000,-0.004579,0.000000,-9999.000000,-9999.000000,375.033598,58.774093,10.707192,0.009985,0.026792,0.164206,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.666667,16.547743,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum5.csv,0,1,1,1,1,1,RubiscoRuBp,325.524074,135.264059,6.402153,0.677503,8.883672,2.620841,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,9,7,0,12.677551,2.855973,58.256643,32.278495,800.080620,90.136452,18.883587,1.069205,3.315576,3.829584,610.000000,275.248979,113.125896,181.092841,205.569131,12.061247,3.743000,10.000000,-0.651206,-2.692290,43.760703,20.248862,28.335699,14.361777,67.400925,26.183742,26.183742,0.000002,0.000001,-0.002111,-0.000224,0.000000,0.000000,-9999.000000,-9999.000000,760.888151,85.520220,8.231482,0.001243,0.005626,0.175146,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.666667,16.547743,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum6.csv,0,0,0,0,1,0,Rubisco,45.254154,-9999.000000,2.020224,-9999.000000,4.294355,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,14,0,0,26.469359,5.264934,58.237498,32.747685,800.231575,90.080820,18.871932,-9999.000000,4.805672,6.377465,88.214867,117.959356,117.959356,-9999.000000,-9999.000000,5.856330,3.743000,3.245204,28.410037,10.862842,-9999.000000,-9999.000000,35.336221,14.323785,-9999.000000,-9999.000000,14.323785,-9999.000000,0.000000,0.000000,0.000000,-0.033268,-9999.000000,-9999.000000,-9999.000000,-9999.000000,11.792629,28.000000,0.356407,0.135847,-9999.000000,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.928205,17.041336,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum6.csv,0,0,1,1,1,1,RubiscoRuBp,312.929499,78.632867,0.000000,-9999.000000,3.501136,7.403605,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,12,2,0,23.506463,7.589709,58.237498,32.747685,800.231575,90.080820,18.871932,-9999.000000,9.505556,11.136080,610.000000,994.619694,117.959356,117.398094,122.687552,4.774595,3.743000,0.000000,-10.312328,-115.676961,19.782243,10.503408,30.301939,12.377331,36.690018,14.323785,14.323785,-9999.000000,0.000000,0.037259,-0.000676,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,13.417088,28.000000,0.002198,0.000791,0.049044,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.928205,17.041336,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum6.csv,0,1,0,0,1,0,RubiscoRuBp,138.180751,158.289985,6.173435,0.531249,5.925069,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,12,2,0,23.261752,4.359213,58.237498,32.747685,800.231575,90.080820,18.871932,0.858529,4.805672,5.444027,269.358621,117.959356,117.959356,200.187378,246.973199,8.080178,3.743000,9.916749,67.212592,24.373382,31.766578,11.601771,27.865672,10.948005,35.032050,14.323785,14.323785,-0.000243,-0.100604,-0.000197,-0.005679,0.009232,0.005620,-9999.000000,-9999.000000,797.995993,20.452186,3.049117,0.006750,0.028480,0.010963,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.928205,17.041336,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum6.csv,0,1,1,1,1,1,RubiscoRuBp,179.856493,217.046146,6.211820,0.508214,5.940140,4.016058,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,12,2,0,23.182654,4.495108,58.237498,32.747685,800.231575,90.080820,18.871932,0.821302,5.156253,5.727887,350.598013,143.258252,117.959356,221.060436,338.647964,8.100731,3.743000,9.978409,51.926639,19.154133,32.591895,11.608600,27.865672,10.923554,34.737716,14.323785,14.323785,-0.109824,-0.257535,-0.000620,-0.009004,0.018846,0.015815,-9999.000000,-9999.000000,984.762911,18.846789,2.453359,0.003274,0.016331,0.006992,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.928205,17.041336,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum7.csv,0,0,0,0,1,0,Rubisco,45.392493,-9999.000000,1.282030,-9999.000000,4.409166,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,15,0,0,20.332804,5.173180,58.287269,32.198396,799.319470,90.225448,18.902231,-9999.000000,4.723248,6.199442,84.488960,112.367091,112.367091,-9999.000000,-9999.000000,5.980190,3.743000,1.992925,29.252265,11.945470,-9999.000000,-9999.000000,36.289261,15.947644,-9999.000000,-9999.000000,15.947644,-9999.000000,0.000000,0.000000,0.000000,-0.038920,-9999.000000,-9999.000000,-9999.000000,-9999.000000,12.497384,30.000000,0.483307,0.178884,-9999.000000,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.930952,15.912991,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum7.csv,0,0,1,1,1,1,RubiscoRuBp,327.728272,75.822993,0.000000,-9999.000000,3.919375,5.989799,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,13,2,0,17.106025,6.167652,58.287269,32.198396,799.319470,90.225448,18.902231,-9999.000000,7.558458,9.193297,610.000000,997.251974,112.367091,110.572451,114.715775,5.315881,3.743000,0.000000,-7.713849,-88.803034,19.290812,11.758125,31.502727,14.197752,38.478024,15.947644,15.947644,-9999.000000,0.000000,0.031576,-0.000599,0.000000,0.000000,-9999.000000,-9999.000000,-9999.000000,15.023645,30.000000,0.004403,0.001567,0.069154,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.930952,15.912991,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum7.csv,0,1,0,0,1,0,RubiscoRuBp,207.581939,72.450139,5.827399,0.469331,6.145696,3.743000,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,11,4,0,16.898273,4.140013,58.287269,32.198396,799.319470,90.225448,18.902231,0.737564,4.723248,5.134455,386.371863,112.367091,112.367091,260.265931,109.612843,8.335460,3.743000,9.058735,-8.673392,-5.827399,56.334783,12.609690,27.355647,11.771556,35.190343,15.947644,15.947644,-0.000025,0.038628,0.000001,0.000000,-0.000888,0.000000,-9999.000000,-9999.000000,2612.646445,23.893702,1.431409,0.001217,0.012119,0.004617,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.930952,15.912991,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
wild_Capsicum7.csv,0,1,1,1,1,1,RubiscoRuBp,144.654257,153.906920,6.403055,0.508033,6.365622,2.856998,27.238000,16582.000000,0.000000,65.330000,0.000000,0.000000,43.540000,0.000000,0.000000,53.100000,201.800000,0.650000,49.600000,437.400000,1.400000,46.390000,24.460000,80.990000,23.720000,12,3,0,16.904248,3.410923,58.287269,32.198396,799.319470,90.225448,18.902231,0.798385,3.605213,4.124495,269.244689,98.760470,112.367091,195.472996,232.852210,8.633747,3.743000,9.953597,73.957377,26.849248,33.341082,12.693812,29.222751,12.879581,35.777530,15.947644,15.947644,0.445689,0.249318,0.010371,0.004953,-0.014029,-0.011081,-9999.000000,-9999.000000,1768.704353,29.935719,2.546639,0.005775,0.034908,0.015029,-9999.000000,-9999.000000,MOFLUX,29.587500,-110.120000,1000.000000,2012.000000,279.000000,53.000000,300.000000,-9999.000000,0.800000,-9999.000000,Capsicum_annuum_var._glabriusculum,1.930952,15.912991,0.800000,90.000000,-9999.000000,-9999.000000,-9999.000000,-9999.000000
1 CurveID ChlFlUse? FitGi? FitGamma*? FitKco? FitRd? FitAlpha? LimitCombina Vcmax25 Jmax25 Rdlight25 gmeso25 tpu25 gammas*25 fkc25 fko25 alpha ha_vcmax hd_vcmax sv_vcmax ha_jmax hd_jmax sv_jmax ha_tpu hd_tpu sv_tpu ha_gmeso hd_gmeso sv_gmeso ha_darkresp ha_stargamma ha_kc ha_ko numrubisco1cur numrubp1curve numtpu1curve SumSquare1curve gamma25 fkco25 leaftemp MeanPARi MeanPresAir MeanPO2i gmeso Gamma* CalcedGamma vcmax fkco fkco_mod fjelect fjmax tpu stargamma25_ori Rdlight CO2i1Thres25 Anet25_CO2i1 CO2i2Thres25 Anet25_CO2i2 CO2i1Thres Anet_CO2i1 CO2i2Thres Anet_CO2i2 AsmptoticAnet df_gmeso df_stargamma df_rdlight df_vcmax df_fkco df_fjelect df_tpu df_alpha df2_gmeso df2_stargamma df2_rdlight df2_vcmax df2_fkco df2_fjelect df2_tpu df2_alpha siteID Latitude Longitude Elevation yearsampled sampledoy GrowingSeasonStart GrowingSeasonEnd standage CanopyHeight LeafAreaIndex species avetimeresolution avetimesampled SampleHeight Needleage specificLAI nitrogencontent carboncontent phosphoruscontent
2 NA 0=No1=Yes 0=No1=Yes 0=No1=Yes 0=No1=Yes 0=No1=Yes 0=No1=Yes NA umolm-2s-1 umolm-2s-1 umolm-2s-1 umolm-2s-1Pa-1 umolm-2s-1 Pa Pa Pa 0_1 kJmol-1 kJmol-1 KJmol-1K-1 kJmol-1 kJmol-1 KJmol-1K-1 kJmol-1 kJmol-1 KJmol-1K-1 kJmol-1 kJmol-1 KJmol-1K-1 kJmol-1 kJmol-1 kJmol-1 kJmol-1 howmanypoints howmanypoints howmanypoints NA Pa Pa oC umolm-2s-1 kPa kPa umolm-2s-1Pa-1 Pa Pa umolm-2s-1 Pa Pa umolm-2s-1 umolm-2s-1 umolm-2s-1 Pa umolm-2s-1 Pa umolm-2s-1 Pa umolm-2s-1 Pa umolm-2s-1 Pa umolm-2s-1 umolm-2s-1 umolm-2s-1Pa (umol-2s-1)2Pa-1 umolm-2s-1 umolm-2s-1 (umol-2s-1)2Pa-1 umolm-2s-1 umolm-2s-1 (umol-2s-1)2 Pa^2 (umol-2s-1)2Pa-2 NA NA (umol-2s-1)2Pa-2 NA NA (umolm-2s-1)2 NA DegNorthPositive DegEastPositive m Year DayofYear DayofYear DayofYear years m m2m-2 species minutes HourFraction m days cm2g-1 % % %
3 wild_capsicum.csv 0 0 0 0 1 0 RubiscoRuBp 43.571138 104.379299 0.951412 -9999.000000 6.007318 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 7 5 0 3.866441 5.195301 58.335527 33.974989 399.811793 90.365679 18.931610 -9999.000000 4.993954 6.508543 94.115358 131.846966 131.846966 109.773523 174.389570 8.180265 3.743000 1.643863 79.040779 22.930508 25.222606 17.070542 40.171465 17.602587 131.662688 22.896933 22.896933 -9999.000000 -1.230430 0.000000 0.000000 0.004428 0.000000 -9999.000000 -9999.000000 -9999.000000 14.667812 24.000000 0.115769 0.041385 0.407778 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.543939 16.136736 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
4 wild_capsicum.csv 0 0 1 1 1 1 RubiscoRuBp 30.475160 121.541932 0.000000 -9999.000000 5.604919 5.612656 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 7 5 0 2.118036 7.526855 58.335527 33.974989 399.811793 90.365679 18.931610 -9999.000000 7.488471 8.793539 65.827534 85.909434 131.846966 112.393339 203.063688 7.632311 3.743000 0.000000 545.701816 27.248818 30.704545 16.814756 37.849118 16.148917 106.382777 22.896933 22.896933 -9999.000000 -0.121263 0.083547 0.000000 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 12.962859 24.000000 0.170648 0.059120 0.333894 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.543939 16.136736 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
5 wild_capsicum.csv 0 1 0 0 1 0 RubiscoRuBp 74.038171 -246.475555 1.657156 0.907334 6.305812 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 6 6 0 1.676630 4.634646 58.335527 33.974989 399.811793 90.365679 18.931610 1.544352 4.993954 5.924452 159.925336 131.846966 131.846966 121.672699 -411.793971 8.586730 3.743000 2.863257 1.916600 -1.657156 21.087345 -100.613660 26.166367 11.632766 102.674818 22.896933 22.896933 0.000000 0.094379 0.000000 0.000000 -0.000436 0.000000 -9999.000000 -9999.000000 39.650686 22.167322 14.096344 0.010154 0.012213 0.347737 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.543939 16.136736 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
6 wild_capsicum.csv 0 1 1 1 1 1 RubiscoRuBp 282.402311 57.809866 5.787661 0.543851 8.052809 1.929926 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 6 6 0 1.456995 2.181197 58.335527 33.974989 399.811793 90.365679 18.931610 0.925675 2.574930 3.102644 610.000000 290.879356 131.846966 144.358855 96.584646 10.965644 3.743000 10.000000 -8.712077 -5.787661 -8.712077 -5.787661 24.240792 10.573863 106.902970 22.896933 22.896933 0.000000 0.000000 -0.010457 -0.000015 0.000000 0.000000 -9999.000000 -9999.000000 320.150279 45.190048 9.893208 0.000686 0.002813 0.380307 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.543939 16.136736 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
7 wild_capsicum2.csv 0 0 0 0 1 0 RubiscoRuBp 36.011058 75.272111 0.937660 -9999.000000 5.298120 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 7 5 0 1.421347 5.506694 58.349084 31.709438 400.062670 90.405074 18.939863 -9999.000000 4.650823 6.466611 64.317274 107.633049 107.633049 95.572588 110.792541 7.130306 3.743000 1.415502 92.801844 20.280226 26.056101 14.956699 48.818264 16.741772 123.926869 19.975415 19.975415 -9999.000000 -0.404038 0.000000 0.000000 -0.003461 0.000000 -9999.000000 -9999.000000 -9999.000000 8.917394 24.000000 0.243250 0.053029 0.448361 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicumannuumvar.glabriusculum 1.456061 15.724306 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
8 wild_capsicum2.csv 0 0 1 1 1 1 RubiscoRuBp 43.347619 75.934701 0.192857 -9999.000000 5.019637 5.213122 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 7 5 0 1.033867 6.588508 58.349084 31.709438 400.062670 90.405074 18.939863 -9999.000000 6.477507 8.321992 77.420683 140.378397 107.633049 96.071905 111.767804 6.755518 3.743000 0.291140 49.120103 17.516992 31.500663 14.866053 44.353912 15.582733 111.459106 19.975415 19.975415 -9999.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 7.756710 24.000000 0.134441 0.027263 0.395926 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicumannuumvar.glabriusculum 1.456061 15.724306 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
9 wild_capsicum2.csv 0 1 0 0 1 0 RubiscoRuBp 52.583090 84.125109 1.294173 0.875283 5.431420 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 6 6 0 0.998920 4.975102 58.349084 31.709438 400.062670 90.405074 18.939863 1.339483 4.650823 5.920037 93.915625 107.633049 107.633049 101.406824 123.823212 7.309704 3.743000 1.953697 60.483174 18.045684 41.081287 15.000089 37.261591 13.669316 108.959333 19.975415 19.975415 -0.000001 0.083771 0.000000 0.000000 -0.000509 0.000000 -9999.000000 -9999.000000 31.886371 13.301688 15.584723 0.029535 0.016794 0.421443 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicumannuumvar.glabriusculum 1.456061 15.724306 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
10 wild_capsicum2.csv 0 1 1 1 1 1 RubiscoRuBp 341.537253 24.346983 6.624222 0.414288 7.424335 1.398286 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 6 6 0 0.792648 1.600165 58.349084 31.709438 400.062670 90.405074 18.939863 0.634003 1.737425 2.287359 610.000000 312.585791 107.633049 127.657899 35.836169 9.991805 3.743000 10.000000 -14.591116 -6.624222 32.231803 1.047404 32.780590 12.166708 113.819435 19.975415 19.975415 -0.000001 -0.000001 -0.004140 -0.000002 0.000000 0.000000 -9999.000000 -9999.000000 707.397889 37.603225 9.899170 0.000446 0.001595 0.456589 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicumannuumvar.glabriusculum 1.456061 15.724306 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
11 wild_Capsicum3.csv 0 0 0 0 1 0 RubiscoRuBp 28.095051 59.561427 1.209737 -9999.000000 4.382665 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 10 2 0 67.650533 6.080560 58.318001 34.494035 398.943352 90.314751 18.920940 -9999.000000 5.075316 7.509561 63.363221 138.056548 138.056548 87.968389 102.415250 5.927758 3.743000 2.155256 175.687988 19.434193 20.436480 11.938259 57.841703 14.912013 69.408529 15.628017 15.628017 -9999.000000 -0.003027 0.000000 0.000000 -0.017987 0.000000 -9999.000000 -9999.000000 -9999.000000 5.191756 24.000000 0.344914 0.045855 0.164262 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.545455 16.621644 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
12 wild_Capsicum3.csv 0 0 1 1 1 1 RubiscoRuBp 157.421501 57.681917 0.837732 -9999.000000 4.219329 4.046588 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 10 2 0 65.936324 4.440678 58.318001 34.494035 398.943352 90.314751 18.920940 -9999.000000 5.486967 8.338642 355.035253 1000.000000 138.056548 86.107101 99.183452 5.706837 3.743000 1.492495 -0.137177 -12.157863 21.373077 11.820254 52.864150 14.483516 69.445706 15.628017 15.628017 -9999.000000 0.000000 0.000000 0.000000 -0.000170 0.000000 -9999.000000 -9999.000000 -9999.000000 4.306179 24.000000 0.009617 0.001124 0.158932 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.545455 16.621644 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
13 wild_Capsicum3.csv 0 1 0 0 1 0 RubiscoRuBp 62.950211 143.839321 2.571259 0.342403 4.980470 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 8 4 0 68.272866 4.868263 58.318001 34.494035 398.943352 90.314751 18.920940 0.591941 5.075316 6.249377 141.972628 138.056548 138.056548 113.976494 247.330204 6.736317 3.743000 4.580934 88.029531 18.311371 52.250077 12.370151 39.543398 10.404683 68.615303 15.628017 15.628017 15.399577 3.906879 0.876111 0.251069 -0.224190 -0.427930 -9999.000000 -9999.000000 654.076700 10.269384 6.780427 0.006871 0.008962 0.120297 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.545455 16.621644 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
14 wild_Capsicum3.csv 0 1 1 1 1 1 RubiscoRuBp 270.472059 125.419440 5.612960 0.278787 6.315992 0.849660 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 10 2 0 65.813119 1.087851 58.318001 34.494035 398.943352 90.314751 18.920940 0.481962 1.152095 2.018100 610.000000 508.081537 138.056548 112.480462 215.657412 8.542672 3.743000 10.000000 46.466265 11.596442 53.947727 13.335018 51.484385 14.143774 69.121332 15.628017 15.628017 0.000002 0.000001 -0.001830 -0.000039 0.000000 0.000000 -9999.000000 -9999.000000 1910.065335 14.992582 4.901648 0.001155 0.001563 0.163662 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.545455 16.621644 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
15 wild_Capsicum4.csv 0 0 0 0 1 0 RubiscoRuBp 34.007771 65.862415 0.510921 -9999.000000 5.221173 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 10 2 0 3.511349 5.542323 58.359285 32.166009 400.325203 90.434718 18.946073 -9999.000000 4.718423 6.577853 63.126052 112.164244 112.164244 88.635776 99.464890 7.078465 3.743000 0.792693 87.654077 19.032692 30.821392 15.152598 46.127989 15.721209 330.194066 20.442702 20.442702 -9999.000000 -0.090876 0.000000 0.000000 0.022611 0.000000 -9999.000000 -9999.000000 -9999.000000 7.406472 24.000000 0.362615 0.069759 0.157987 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.639394 15.321574 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
16 wild_Capsicum4.csv 0 0 1 1 1 1 RubiscoRuBp 18.231463 72.362936 0.027772 -9999.000000 5.036867 5.544509 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 10 2 0 1.749561 8.758871 58.359285 32.166009 400.325203 90.434718 18.946073 -9999.000000 6.989404 8.277251 33.841686 43.226266 112.164244 94.336051 109.281924 6.828597 3.743000 0.043088 -219.367804 25.439703 35.207004 15.082828 53.265724 16.186950 145.633523 20.442702 20.442702 -9999.000000 -0.038173 0.000000 0.000000 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 8.575570 24.000000 1.087006 0.231778 0.127897 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.639394 15.321574 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
17 wild_Capsicum4.csv 0 1 0 0 1 0 RubiscoRuBp 99.863534 115.386271 2.337423 0.653849 5.917926 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 3 9 0 1.781338 4.431106 58.359285 32.166009 400.325203 90.434718 18.946073 1.025778 4.718423 5.429735 185.369125 112.164244 112.164244 111.694716 174.255419 8.023069 3.743000 3.626506 27.107086 9.707340 46.923532 15.416355 11.318999 2.602056 113.039845 20.442702 20.442702 -0.056486 -0.154552 -0.022287 -0.005716 0.008694 0.010728 -9999.000000 -9999.000000 135.835931 29.782112 9.772014 0.000646 0.001386 0.190154 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.639394 15.321574 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
18 wild_Capsicum4.csv 0 1 1 1 1 1 RubiscoRuBp 16.430858 76.322392 0.026618 2.035499 5.036427 5.544509 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 10 2 0 1.731289 9.111079 58.359285 32.166009 400.325203 90.434718 18.946073 3.193354 6.989404 7.973620 30.499358 29.688661 112.164244 97.311532 115.261463 6.828000 3.743000 0.041298 5.531432 -0.026618 40.216648 15.082662 52.975129 16.049410 125.130359 20.442702 20.442702 0.000000 -0.020359 0.000000 0.000000 0.000000 0.000000 -9999.000000 -9999.000000 1.390679 9.055833 18.509234 1.087689 0.313154 0.112399 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.639394 15.321574 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
19 wild_Capsicum5.csv 0 0 0 0 1 0 RubiscoRuBp 51.007424 94.233307 1.521029 -9999.000000 7.011814 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 14 2 0 18.521193 5.035271 58.256643 32.278495 800.080620 90.136452 18.883587 -9999.000000 4.735197 6.069600 95.582881 113.125896 113.125896 135.455927 143.212167 9.519851 3.743000 2.375809 92.802850 28.551318 22.155618 19.514413 47.403401 23.029832 81.219442 26.183742 26.183742 -9999.000000 -0.108750 0.000000 0.000000 0.009620 0.000000 -9999.000000 -9999.000000 -9999.000000 21.715590 32.000000 0.557923 0.240466 0.152067 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.666667 16.547743 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
20 wild_Capsicum5.csv 0 0 1 1 1 1 RubiscoRuBp 325.524074 98.613004 0.000000 -9999.000000 6.428516 6.402012 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 12 4 0 16.154748 6.580974 58.256643 32.278495 800.080620 90.136452 18.883587 -9999.000000 8.099062 9.490210 610.000000 848.600332 113.125896 140.997367 149.868262 8.727914 3.743000 0.000000 -7.284511 -87.406443 29.604449 19.285548 34.852936 18.472809 78.275472 26.183742 26.183742 -9999.000000 -0.143867 1.205697 -0.000283 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 24.290145 32.000000 0.006082 0.002942 0.192032 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.666667 16.547743 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
21 wild_Capsicum5.csv 0 1 0 0 1 0 RubiscoRuBp 110.331334 124.024078 3.511678 0.808672 7.775206 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 9 7 0 13.065764 4.411424 58.256643 32.278495 800.080620 90.136452 18.883587 1.276209 4.735197 5.426322 206.750036 113.125896 113.125896 170.204794 188.487038 10.556298 3.743000 5.485152 54.125214 24.048512 41.868521 19.813940 28.802657 14.563221 66.592099 26.183742 26.183742 -0.000004 0.160958 0.000000 0.000000 -0.004579 0.000000 -9999.000000 -9999.000000 375.033598 58.774093 10.707192 0.009985 0.026792 0.164206 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.666667 16.547743 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
22 wild_Capsicum5.csv 0 1 1 1 1 1 RubiscoRuBp 325.524074 135.264059 6.402153 0.677503 8.883672 2.620841 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 9 7 0 12.677551 2.855973 58.256643 32.278495 800.080620 90.136452 18.883587 1.069205 3.315576 3.829584 610.000000 275.248979 113.125896 181.092841 205.569131 12.061247 3.743000 10.000000 -0.651206 -2.692290 43.760703 20.248862 28.335699 14.361777 67.400925 26.183742 26.183742 0.000002 0.000001 -0.002111 -0.000224 0.000000 0.000000 -9999.000000 -9999.000000 760.888151 85.520220 8.231482 0.001243 0.005626 0.175146 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.666667 16.547743 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
23 wild_Capsicum6.csv 0 0 0 0 1 0 Rubisco 45.254154 -9999.000000 2.020224 -9999.000000 4.294355 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 14 0 0 26.469359 5.264934 58.237498 32.747685 800.231575 90.080820 18.871932 -9999.000000 4.805672 6.377465 88.214867 117.959356 117.959356 -9999.000000 -9999.000000 5.856330 3.743000 3.245204 28.410037 10.862842 -9999.000000 -9999.000000 35.336221 14.323785 -9999.000000 -9999.000000 14.323785 -9999.000000 0.000000 0.000000 0.000000 -0.033268 -9999.000000 -9999.000000 -9999.000000 -9999.000000 11.792629 28.000000 0.356407 0.135847 -9999.000000 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.928205 17.041336 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
24 wild_Capsicum6.csv 0 0 1 1 1 1 RubiscoRuBp 312.929499 78.632867 0.000000 -9999.000000 3.501136 7.403605 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 12 2 0 23.506463 7.589709 58.237498 32.747685 800.231575 90.080820 18.871932 -9999.000000 9.505556 11.136080 610.000000 994.619694 117.959356 117.398094 122.687552 4.774595 3.743000 0.000000 -10.312328 -115.676961 19.782243 10.503408 30.301939 12.377331 36.690018 14.323785 14.323785 -9999.000000 0.000000 0.037259 -0.000676 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 13.417088 28.000000 0.002198 0.000791 0.049044 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.928205 17.041336 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
25 wild_Capsicum6.csv 0 1 0 0 1 0 RubiscoRuBp 138.180751 158.289985 6.173435 0.531249 5.925069 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 12 2 0 23.261752 4.359213 58.237498 32.747685 800.231575 90.080820 18.871932 0.858529 4.805672 5.444027 269.358621 117.959356 117.959356 200.187378 246.973199 8.080178 3.743000 9.916749 67.212592 24.373382 31.766578 11.601771 27.865672 10.948005 35.032050 14.323785 14.323785 -0.000243 -0.100604 -0.000197 -0.005679 0.009232 0.005620 -9999.000000 -9999.000000 797.995993 20.452186 3.049117 0.006750 0.028480 0.010963 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.928205 17.041336 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
26 wild_Capsicum6.csv 0 1 1 1 1 1 RubiscoRuBp 179.856493 217.046146 6.211820 0.508214 5.940140 4.016058 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 12 2 0 23.182654 4.495108 58.237498 32.747685 800.231575 90.080820 18.871932 0.821302 5.156253 5.727887 350.598013 143.258252 117.959356 221.060436 338.647964 8.100731 3.743000 9.978409 51.926639 19.154133 32.591895 11.608600 27.865672 10.923554 34.737716 14.323785 14.323785 -0.109824 -0.257535 -0.000620 -0.009004 0.018846 0.015815 -9999.000000 -9999.000000 984.762911 18.846789 2.453359 0.003274 0.016331 0.006992 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.928205 17.041336 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
27 wild_Capsicum7.csv 0 0 0 0 1 0 Rubisco 45.392493 -9999.000000 1.282030 -9999.000000 4.409166 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 15 0 0 20.332804 5.173180 58.287269 32.198396 799.319470 90.225448 18.902231 -9999.000000 4.723248 6.199442 84.488960 112.367091 112.367091 -9999.000000 -9999.000000 5.980190 3.743000 1.992925 29.252265 11.945470 -9999.000000 -9999.000000 36.289261 15.947644 -9999.000000 -9999.000000 15.947644 -9999.000000 0.000000 0.000000 0.000000 -0.038920 -9999.000000 -9999.000000 -9999.000000 -9999.000000 12.497384 30.000000 0.483307 0.178884 -9999.000000 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.930952 15.912991 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
28 wild_Capsicum7.csv 0 0 1 1 1 1 RubiscoRuBp 327.728272 75.822993 0.000000 -9999.000000 3.919375 5.989799 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 13 2 0 17.106025 6.167652 58.287269 32.198396 799.319470 90.225448 18.902231 -9999.000000 7.558458 9.193297 610.000000 997.251974 112.367091 110.572451 114.715775 5.315881 3.743000 0.000000 -7.713849 -88.803034 19.290812 11.758125 31.502727 14.197752 38.478024 15.947644 15.947644 -9999.000000 0.000000 0.031576 -0.000599 0.000000 0.000000 -9999.000000 -9999.000000 -9999.000000 15.023645 30.000000 0.004403 0.001567 0.069154 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.930952 15.912991 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
29 wild_Capsicum7.csv 0 1 0 0 1 0 RubiscoRuBp 207.581939 72.450139 5.827399 0.469331 6.145696 3.743000 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 11 4 0 16.898273 4.140013 58.287269 32.198396 799.319470 90.225448 18.902231 0.737564 4.723248 5.134455 386.371863 112.367091 112.367091 260.265931 109.612843 8.335460 3.743000 9.058735 -8.673392 -5.827399 56.334783 12.609690 27.355647 11.771556 35.190343 15.947644 15.947644 -0.000025 0.038628 0.000001 0.000000 -0.000888 0.000000 -9999.000000 -9999.000000 2612.646445 23.893702 1.431409 0.001217 0.012119 0.004617 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.930952 15.912991 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000
30 wild_Capsicum7.csv 0 1 1 1 1 1 RubiscoRuBp 144.654257 153.906920 6.403055 0.508033 6.365622 2.856998 27.238000 16582.000000 0.000000 65.330000 0.000000 0.000000 43.540000 0.000000 0.000000 53.100000 201.800000 0.650000 49.600000 437.400000 1.400000 46.390000 24.460000 80.990000 23.720000 12 3 0 16.904248 3.410923 58.287269 32.198396 799.319470 90.225448 18.902231 0.798385 3.605213 4.124495 269.244689 98.760470 112.367091 195.472996 232.852210 8.633747 3.743000 9.953597 73.957377 26.849248 33.341082 12.693812 29.222751 12.879581 35.777530 15.947644 15.947644 0.445689 0.249318 0.010371 0.004953 -0.014029 -0.011081 -9999.000000 -9999.000000 1768.704353 29.935719 2.546639 0.005775 0.034908 0.015029 -9999.000000 -9999.000000 MOFLUX 29.587500 -110.120000 1000.000000 2012.000000 279.000000 53.000000 300.000000 -9999.000000 0.800000 -9999.000000 Capsicum_annuum_var._glabriusculum 1.930952 15.912991 0.800000 90.000000 -9999.000000 -9999.000000 -9999.000000 -9999.000000