[GRASS-SVN] r73878 - in grass/trunk/imagery/i.atcorr: . sensors_csv

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Dec 27 14:25:32 PST 2018


Author: neteler
Date: 2018-12-27 14:25:32 -0800 (Thu, 27 Dec 2018)
New Revision: 73878

Added:
   grass/trunk/imagery/i.atcorr/sensors_csv/worldview4.csv
Modified:
   grass/trunk/imagery/i.atcorr/geomcond.cpp
   grass/trunk/imagery/i.atcorr/geomcond.h
   grass/trunk/imagery/i.atcorr/i.atcorr.html
   grass/trunk/imagery/i.atcorr/iwave.cpp
   grass/trunk/imagery/i.atcorr/iwave.h
Log:
i.atcorr: Worldview4 filter functions added

Modified: grass/trunk/imagery/i.atcorr/geomcond.cpp
===================================================================
--- grass/trunk/imagery/i.atcorr/geomcond.cpp	2018-12-27 22:16:06 UTC (rev 73877)
+++ grass/trunk/imagery/i.atcorr/geomcond.cpp	2018-12-27 22:25:32 UTC (rev 73878)
@@ -383,6 +383,7 @@
     case 27: /* planetscope0c0d  * enter month,day,hh.ddd,long.,lat. */
     case 28: /* planetscope0e    * enter month,day,hh.ddd,long.,lat. */
     case 29: /* planetscope0f10  * enter month,day,hh.ddd,long.,lat. */
+    case 30: /* worldview4       * enter month,day,hh.ddd,long.,lat. */
    {
 	cin >> month;
 	cin >> jday;
@@ -458,7 +459,8 @@
 	string(" sentinel2b observation      "),
 	string(" planetscope 0c 0d observation"),
 	string(" planetscope 0e observation  "),
-	string(" planetscope 0f 10 observation")
+	string(" planetscope 0f 10 observation"),
+	string(" worldview4 observation      ")
 	};
 
     static const string head(" geometrical conditions identity  ");

Modified: grass/trunk/imagery/i.atcorr/geomcond.h
===================================================================
--- grass/trunk/imagery/i.atcorr/geomcond.h	2018-12-27 22:16:06 UTC (rev 73877)
+++ grass/trunk/imagery/i.atcorr/geomcond.h	2018-12-27 22:25:32 UTC (rev 73878)
@@ -87,6 +87,8 @@
 /*                                                                        */
 /*         29      planetscope0f10   * enter month,day,hh.ddd,long.,lat.  */
 /*                                                                        */
+/*         30      worldview4        * enter month,day,hh.ddd,long.,lat.  */
+/*                                                                        */
 /*     note:       for hrv and tm experiments long. and lat. are the      */
 /*                 coordinates of the scene center.                       */
 /*                 lat. must be > 0 for north lat., < 0 for south lat.    */

Modified: grass/trunk/imagery/i.atcorr/i.atcorr.html
===================================================================
--- grass/trunk/imagery/i.atcorr/i.atcorr.html	2018-12-27 22:16:06 UTC (rev 73877)
+++ grass/trunk/imagery/i.atcorr/i.atcorr.html	2018-12-27 22:25:32 UTC (rev 73878)
@@ -241,11 +241,17 @@
 </tr>
 
 <tr>
-<td>28</td>
+<td>29</td>
 <td><b>PlanetScope 0f 10</b></td>
 <td>enter month,day,hh.ddd,long.,lat. *</td>
 </tr>
 
+<tr>
+<td>30</td>
+<td><b>Worldview4</b></td>
+<td>enter month,day,hh.ddd,long.,lat. *</td>
+</tr>
+
 </table>
 
 <p>
@@ -699,7 +705,7 @@
 <tr><td>151</td><td>Worldview3 Blue band (443nm - 517nm)</td></tr>
 <tr><td>152</td><td>Worldview3 Green band (508nm - 587nm)</td></tr>
 <tr><td>153</td><td>Worldview3 Yellow band (580nm - 630nm)</td></tr>
-<tr><td>154</td><td>Worldview3 Red band 625nm - 697nm)</td></tr>
+<tr><td>154</td><td>Worldview3 Red band (625nm - 697nm)</td></tr>
 <tr><td>155</td><td>Worldview3 Red edge band (698nm - 752nm)</td></tr>
 <tr><td>156</td><td>Worldview3 NIR1 band (760nm - 902nm)</td></tr>
 <tr><td>157</td><td>Worldview3 NIR2 band (855nm - 1042nm)</td></tr>
@@ -755,6 +761,12 @@
 <tr><td>202</td><td>PlanetScope 0f 10 Red band B3 (450nm - 680nm)</td></tr>
 <tr><td>203</td><td>PlanetScope 0f 10 NIR band B4 (760nm - 870nm)</td></tr>
 
+<tr><td>204</td><td><b>Worldview4</b> Pan band (424nm - 842nm)</td></tr>
+<tr><td>205</td><td>Worldview4 Blue band (416nm - 567nm)</td></tr>
+<tr><td>206</td><td>Worldview4 Green band (488nm - 626nm)</td></tr>
+<tr><td>207</td><td>Worldview4 Red band (639nm - 711nm)</td></tr>
+<tr><td>208</td><td>Worldview4 NIR1 band (732nm - 962nm)</td></tr>
+
 </table>
 
 <h2>EXAMPLES</h2>
@@ -1121,6 +1133,9 @@
 <p><em>Sentinel-2B addition 1/2018:</em>
 <br>Stefan Blumentrath, Zofie Cimburova, Norwegian Institute for Nature Research, NINA, Oslo, Norway
 
+<p><em>Worldview4 addition 12/2018:</em>
+<br>Markus Neteler, mundialis.de, Germany
+
 <p>
 <i>Last changed: $Date$</i>
 

Modified: grass/trunk/imagery/i.atcorr/iwave.cpp
===================================================================
--- grass/trunk/imagery/i.atcorr/iwave.cpp	2018-12-27 22:16:06 UTC (rev 73877)
+++ grass/trunk/imagery/i.atcorr/iwave.cpp	2018-12-27 22:25:32 UTC (rev 73878)
@@ -4192,6 +4192,238 @@
     }
 }
 
+/* Following filter function created using create_iwave.py */
+
+void IWave::worldview4(int iwa)
+{
+
+    /* PAN of worldview4 */
+    static const float sr1[300] = {
+        .0006, .0004, .0003, .0003, .0003, .0003, .0002, .0003,
+        .0003, .0006, .0005, .0004, .0005, .0004, .0004, .0004,
+        .0004, .0005, .0004, .0004, .0005, .0006, .0006, .0009,
+        .0010, .0013, .0023, .0026, .0042, .0085, .0106, .0189,
+        .0496, .0763, .1245, .4001, .9077, 1.6745, 27.1900, 66.4800,
+        173.1000, 371.5500, 532.6000, 651.1500, 724.4000, 747.4000, 748.4000, 725.4000,
+        730.9000, 766.6000, 782.6000, 778.3500, 781.3000, 791.5000, 794.5000, 790.3500,
+        789.3000, 791.2000, 793.9000, 797.3000, 801.4000, 806.1500, 806.1000, 801.8500,
+        797.5000, 793.1500, 797.0000, 807.8000, 815.8000, 821.3500, 830.0000, 841.1500,
+        848.7000, 853.2000, 853.5000, 850.4000, 848.3000, 846.9000, 846.0000, 845.6000,
+        849.2000, 855.7000, 867.5000, 883.0000, 894.7000, 903.8000, 909.1000, 911.7500,
+        912.6000, 912.1000, 911.8000, 911.6500, 912.1000, 912.8500, 918.1000, 926.2000,
+        933.2000, 939.6500, 941.0000, 939.4500, 943.6000, 950.9000, 958.8000, 966.8500,
+        967.2000, 963.4500, 958.0000, 951.7500, 954.2000, 961.2000, 972.6000, 986.2000,
+        990.5000, 990.3500, 986.0000, 979.8500, 981.8000, 987.5500, 993.2000, 998.8500,
+        996.0000, 989.3500, 982.8000, 976.3000, 977.5000, 981.8000, 986.7000, 991.7500,
+        990.9000, 987.6500, 979.9000, 970.4000, 951.5000, 929.1500, 929.5000, 938.1500,
+        945.1000, 951.5500, 950.6000, 947.1000, 950.0000, 954.8500, 959.3000, 963.5500,
+        962.8000, 960.5500, 951.6000, 940.6000, 933.8000, 928.1500, 923.7000, 919.7000,
+        917.5000, 915.7500, 911.8000, 907.4000, 899.2000, 890.1000, 882.0000, 874.0500,
+        871.5000, 870.2500, 867.7000, 864.9000, 861.1000, 857.0000, 853.4000, 850.0000,
+        847.5000, 845.2000, 843.2000, 841.1500, 837.6000, 833.7000, 825.7000, 816.4500,
+        797.3000, 770.1500, 589.6000, 379.2500, 227.9000, 93.1300, 47.0400, 11.8300,
+        3.4490, 1.7920, .9647, .5530, .3255, .2005, .1280, .0836,
+        .0555, .0382, .0273, .0196, .0141, .0103, .0079, .0059,
+        .0043, .0033, .0026, .0020, .0016, .0013, .0011, .0009,
+        .0007, .0006, .0005, .0005, .0004, .0004, .0003, .0003,
+        .0003, .0002, .0002, .0001, .0001, .0001, .0000, .0000,
+        .0000, .0000, .0000, .0000, .0000, .0000, .0000, .0000,
+        .0000, .0000, .0000, .0000, .0000, .0000, .0000, .0000,
+        .0000, .0000, .0000, .0000, .0000, .0000, .0000, .0000,
+        .0000, .0000, .0000, .0000, .0000, .0000, .0000, .0000,
+        .0000, .0000, .0000, .0000, .0000, .0000, .0000, .0000,
+        .0000, .0000, .0000, .0000, .0000, .0000, .0001, .0001,
+        .0001, .0001, .0001, .0001, .0001, .0001, .0001, .0001,
+        .0001, .0001, .0001, .0001, .0001, .0001, .0001, .0001,
+        .0001, .0001, .0001, .0002, .0002, .0002, .0002, .0003,
+        .0003, .0004, .0004, .0005
+    };
+	
+    /* BLUE of worldview4 */
+    static const float sr2[300] = {
+        .0002, .0002, .0002, .0002, .0002, .0002, .0002, .0002,
+        .0002, .0002, .0002, .0002, .0002, .0006, .0016, .0037,
+        .0017, .0013, .0017, .0046, .0037, .0021, .0022, .0033,
+        .0046, .0062, .0081, .0178, .0225, .0299, .0488, .1271,
+        .4051, 1.0773, 1.9750, 4.2975, 22.2000, 121.9500, 363.4000, 660.7500,
+        847.6000, 835.0500, 842.5000, 874.7500, 900.6000, 907.2000, 905.2000, 904.5500,
+        921.4000, 927.7500, 936.3000, 943.5500, 944.9000, 937.1500, 943.7000, 949.4500,
+        954.3000, 955.0500, 970.3000, 985.5000, 996.9000, 986.9000, 900.2000, 622.1000,
+        307.2000, 124.7450, 48.3300, 17.3800, 7.9600, 3.9710, 2.1150, 1.1680,
+        .6575, .3779, .2284, .1399, .0863, .0576, .0412, .0330,
+        .0282, .0257, .0240, .0216, .0191, .0165, .0135, .0105,
+        .0083, .0065, .0051, .0042, .0037, .0034, .0031, .0029,
+        .0032, .0038, .0046, .0045, .0037, .0024, .0014, .0008,
+        .0004, .0003, .0003, .0003, .0002, .0002, .0002, .0001,
+        .0002, .0001, .0001, .0001, .0001, .0001, .0001, .0001,
+        .0002, .0003, .0004, .0007, .0014, .0022, .0034, .0052,
+        .0080, .0112, .0137, .0150, .0156, .0174, .0221, .0291,
+        .0321, .0272, .0217, .0202, .0231, .0333, .0578, .1310,
+        .3364, .3719, .1200, .0380, .0169, .0103, .0077, .0067,
+        .0068, .0078, .0092, .0114, .0142, .0180, .0246, .0390,
+        .0713, .1522, .2836, .3465, .2985, .2152, .1397, .0849,
+        .0491, .0273, .0148, .0087, .0052, .0035, .0025, .0023,
+        .0021, .0022, .0025, .0036, .0064, .0149, .0443, .2951,
+        .2662, .0410, .0092, .0041, .0021, .0014, .0010, .0009,
+        .0007, .0009, .0012, .0016, .0022, .0028, .0032, .0029,
+        .0025, .0025, .0032, .0068, .0176, .0320, .0459, .0545,
+        .0478, .0408, .0251, .0137, .0068, .0027, .0010, .0004,
+        .0003, .0002, .0002, .0002, .0002, .0001, .0001, .0001,
+        .0001, .0001, .0002, .0002, .0002, .0003, .0004, .0009,
+        .0016, .0024, .0032, .0036, .0037, .0054, .0100, .0166,
+        .0214, .0198, .0123, .0056, .0020, .0008, .0005, .0004,
+        .0003, .0004, .0004, .0005, .0007, .0012, .0024, .0046,
+        .0078, .0099, .0091, .0062, .0038, .0025, .0019, .0018,
+        .0019, .0022, .0026, .0033, .0038, .0041, .0044, .0037,
+        .0029, .0023, .0018, .0016, .0014, .0015, .0016, .0016,
+        .0017, .0023, .0029, .0038, .0052, .0060, .0055, .0051,
+        .0042, .0034, .0031, .0027, .0026, .0023, .0024, .0025,
+        .0031, .0037, .0037, .0063
+    };
+	
+    /* GREEN of worldview4 */
+    static const float sr3[300] = {
+        .0000, .0001, .0001, .0001, .0000, .0001, .0001, .0001,
+        .0001, .0001, .0001, .0004, .0004, .0003, .0002, .0001,
+        .0001, .0002, .0001, .0002, .0002, .0001, .0001, .0002,
+        .0002, .0001, .0001, .0001, .0002, .0002, .0001, .0002,
+        .0002, .0002, .0002, .0002, .0002, .0003, .0002, .0002,
+        .0002, .0004, .0003, .0002, .0003, .0005, .0007, .0005,
+        .0005, .0006, .0010, .0023, .0041, .0050, .0063, .0107,
+        .0250, .0816, .2668, .7958, 2.2440, 15.6995, 107.2000, 531.2000,
+        808.4000, 840.0000, 844.1000, 845.3500, 850.0000, 852.9500, 870.1000, 900.4000,
+        911.8000, 902.2500, 899.4000, 912.4500, 914.1000, 897.8500, 888.5000, 899.7000,
+        913.9000, 924.8000, 939.1000, 955.9000, 967.8000, 978.0500, 991.5000, 999.8500,
+        997.7000, 995.7000, 969.6000, 779.7000, 445.3000, 185.9500, 62.1200, 21.0900,
+        6.2660, 3.0140, 1.5690, .8639, .4572, .2479, .1353, .0793,
+        .0499, .0342, .0255, .0205, .0171, .0142, .0113, .0085,
+        .0061, .0044, .0033, .0025, .0020, .0018, .0016, .0016,
+        .0015, .0015, .0014, .0012, .0010, .0008, .0006, .0005,
+        .0005, .0005, .0004, .0004, .0005, .0005, .0006, .0006,
+        .0007, .0007, .0009, .0009, .0010, .0012, .0011, .0009,
+        .0005, .0002, .0001, .0001, .0001, .0000, .0000, .0001,
+        .0001, .0000, .0000, .0001, .0000, .0000, .0000, .0001,
+        .0002, .0007, .0010, .0006, .0006, .0005, .0005, .0005,
+        .0005, .0004, .0009, .0019, .0027, .0010, .0006, .0003,
+        .0003, .0003, .0004, .0004, .0003, .0002, .0004, .0021,
+        .0015, .0005, .0003, .0002, .0001, .0002, .0003, .0004,
+        .0002, .0004, .0013, .0064, .0010, .0001, .0003, .0058,
+        .0086, .0150, .0020, .0105, .0061, .0074, .0068, .0044,
+        .0059, .0029, .0039, .0026, .0022, .0033, .0022, .0020,
+        .0020, .0008, .0021, .0025, .0017, .0010, .0025, .0021,
+        .0017, .0017, .0013, .0013, .0014, .0025, .0017, .0016,
+        .0018, .0017, .0017, .0016, .0010, .0011, .0013, .0006,
+        .0006, .0006, .0008, .0006, .0005, .0005, .0006, .0004,
+        .0004, .0004, .0003, .0003, .0002, .0003, .0002, .0003,
+        .0003, .0002, .0002, .0002, .0003, .0002, .0003, .0003,
+        .0003, .0004, .0004, .0004, .0005, .0006, .0006, .0006,
+        .0006, .0006, .0005, .0005, .0005, .0005, .0005, .0005,
+        .0006, .0006, .0008, .0009, .0012, .0016, .0021, .0028,
+        .0036, .0047, .0058, .0070, .0084, .0101, .0116, .0133,
+        .0149, .0168, .0191, .0215
+    };
+	
+    /* RED of worldview4 */
+    static const float sr4[285] = {
+        .0000, .0001, .0383, .7053, .0358, .0092, .0032, .0001,
+        .0001, .0000, .0000, .0000, .0000, .0001, .0000, .0000,
+        .0000, .0000, .0001, .0107, .0254, .0006, .0275, .0105,
+        .0027, .0177, .0003, .0003, .0003, .0064, .0008, .0007,
+        .0220, .0008, .0036, .1027, .0042, .0000, .0001, .0000,
+        .0000, .0000, .0000, .0000, .0001, .0000, .0000, .0001,
+        .0000, .0000, .0006, .0010, .0001, .0002, .0006, .0001,
+        .0002, .0008, .0004, .0002, .0007, .0005, .0001, .0004,
+        .0010, .0005, .0009, .0031, .0013, .0010, .0023, .0020,
+        .0013, .0011, .0002, .0001, .0000, .0000, .0000, .0000,
+        .0000, .0000, .0000, .0000, .0000, .0000, .0001, .0000,
+        .0001, .0001, .0001, .0001, .0002, .0002, .0002, .0003,
+        .0005, .0008, .0015, .0032, .0082, .0227, .0774, .2953,
+        1.5805, 14.3900, 141.0950, 563.0000, 897.4000, 931.3000, 927.6000, 934.5000,
+        966.0000, 996.2000, 997.9000, 998.8000, 996.3500, 983.4000, 960.7500, 934.0000,
+        900.5500, 478.4000, 98.1600, 12.3400, 2.4640, .6180, .2024, .0744,
+        .0321, .0150, .0079, .0044, .0027, .0018, .0012, .0009,
+        .0007, .0006, .0005, .0004, .0003, .0003, .0003, .0003,
+        .0003, .0003, .0003, .0003, .0003, .0003, .0004, .0004,
+        .0003, .0004, .0005, .0005, .0004, .0004, .0006, .0009,
+        .0012, .0009, .0008, .0012, .0017, .0039, .0110, .0339,
+        .0443, .0386, .0332, .0425, .0740, .0506, .0118, .0045,
+        .0023, .0019, .0016, .0035, .0065, .0041, .0023, .0018,
+        .0029, .0066, .0064, .0040, .0023, .0037, .0056, .0063,
+        .0031, .0030, .0020, .0046, .0040, .0022, .0021, .0035,
+        .0023, .0020, .0012, .0024, .0016, .0021, .0019, .0019,
+        .0017, .0020, .0018, .0019, .0011, .0010, .0010, .0008,
+        .0007, .0008, .0003, .0009, .0005, .0004, .0003, .0003,
+        .0002, .0004, .0002, .0001, .0002, .0001, .0001, .0002,
+        .0002, .0001, .0001, .0002, .0001, .0001, .0002, .0002,
+        .0002, .0002, .0003, .0003, .0004, .0005, .0007, .0008,
+        .0008, .0009, .0009, .0009, .0009, .0008, .0007, .0007,
+        .0006, .0006, .0004, .0004, .0003, .0003, .0003, .0002,
+        .0002, .0002, .0002, .0001, .0001, .0001, .0001, .0001,
+        .0001, .0001, .0001, .0001, .0001, .0001, .0001, .0001,
+        .0001, .0001, .0001, .0002, .0002
+    };
+	
+    /* NIR of worldview4 */
+    static const float sr5[253] = {
+        .0000, .0001, .0003, .0000, .0000, .0004, .0002, .0000,
+        .0001, .0000, .0000, .0001, .0000, .0001, .0001, .0001,
+        .0038, .0035, .0005, .0001, .0002, .0010, .0020, .0008,
+        .0002, .0002, .0005, .0051, .0042, .0007, .0005, .0046,
+        .0185, .0029, .0158, .0197, .0007, .0011, .0030, .0000,
+        .0000, .0000, .0000, .0001, .0000, .0001, .0001, .0000,
+        .0000, .0001, .0000, .0000, .0000, .0001, .0001, .0000,
+        .0001, .0000, .0001, .0005, .0001, .0000, .0000, .0002,
+        .0005, .0003, .0003, .0002, .0000, .0001, .0002, .0007,
+        .0006, .0004, .0003, .0004, .0004, .0006, .0008, .0010,
+        .0018, .0006, .0001, .0001, .0002, .0002, .0001, .0000,
+        .0000, .0001, .0001, .0000, .0000, .0001, .0001, .0003,
+        .0004, .0004, .0004, .0003, .0003, .0003, .0003, .0004,
+        .0003, .0002, .0001, .0001, .0002, .0002, .0002, .0002,
+        .0002, .0002, .0002, .0002, .0003, .0002, .0002, .0002,
+        .0002, .0002, .0004, .0007, .0008, .0008, .0007, .0008,
+        .0010, .0014, .0022, .0035, .0054, .0068, .0077, .0089,
+        .0112, .0155, .0241, .0386, .0645, .0989, .1433, .2049,
+        .3111, .5073, .8975, 1.6600, 3.2385, 6.2560, 12.6250, 30.0100,
+        72.9400, 169.0000, 385.7500, 711.4000, 944.5000, 998.7000, 955.8500, 902.2000,
+        862.8500, 834.8000, 808.6000, 810.3000, 820.4000, 829.6000, 839.5500, 850.1000,
+        860.4000, 871.8000, 885.0500, 883.9000, 879.0000, 874.4000, 868.7000, 861.7000,
+        854.7500, 848.5000, 844.5500, 839.5000, 831.0000, 818.1000, 801.0000, 782.2000,
+        765.1000, 750.5000, 737.1000, 722.9000, 706.3500, 687.6000, 667.6500, 649.4000,
+        632.6500, 616.7000, 601.4500, 585.3000, 569.0000, 554.6000, 542.6500, 533.4000,
+        526.2000, 519.7000, 513.0000, 505.9000, 498.9000, 491.3000, 483.5000, 476.1000,
+        470.8500, 464.8000, 439.0000, 361.6000, 229.5500, 114.5000, 48.9100, 20.0800,
+        9.9340, 5.4760, 3.5535, 2.3530, 1.4815, .6544, .3131, .1551,
+        .0848, .0475, .0282, .0174, .0105, .0068, .0048, .0033,
+        .0023, .0016, .0011, .0008, .0007, .0003, .0003, .0004,
+        .0004, .0003, .0002, .0001, .0001, .0001, .0001, .0002,
+        .0001, .0000, .0001, .0001, .0001
+    };
+	
+    static const float wli[5] = {0.3500, 0.3500, 0.3500, 0.3875, 0.3925};
+    static const float wls[5] = {1.1000, 1.1000, 1.1000, 1.1000, 1.0250};
+
+    ffu.wlinf = (float)wli[iwa-1];
+    ffu.wlsup = (float)wls[iwa-1];
+
+    int i;
+    for(i = 0; i < 1501; i++) ffu.s[i] = 0;
+
+    switch(iwa)
+    {
+    case 1: for(i = 0; i < 300; i++)  ffu.s[40+i] = sr1[i];
+        break;
+    case 2: for(i = 0; i < 300; i++)  ffu.s[40+i] = sr2[i];
+        break;
+    case 3: for(i = 0; i < 300; i++)  ffu.s[40+i] = sr3[i];
+        break;
+    case 4: for(i = 0; i < 285; i++)  ffu.s[55+i] = sr4[i];
+        break;
+    case 5: for(i = 0; i < 253; i++)  ffu.s[57+i] = sr5[i];
+        break;
+    }
+}
+
+
 void IWave::sentinel2a(int iwa)
 {
 
@@ -4948,6 +5180,7 @@
 	else if(iwave <= 195)   planetscope0c0d(iwave - 191);
 	else if(iwave <= 199)   planetscope0e(iwave - 195);
 	else if(iwave <= 203)   planetscope0f10(iwave - 199);
+	else if(iwave <= 208)   worldview4(iwave - 203);
 	else G_warning(_("Unsupported iwave value: %d"), iwave);
 
 	if (iwave > 1) {
@@ -5082,7 +5315,9 @@
 	string(" sentinel2b swir b11"), string(" sentinel2b swir b12"),
 	string(" planetscope 0c 0d blue"), string(" planetscope 0c 0d green"), string(" planetscope 0c 0d red"), string(" planetscope 0c 0d nir"),
 	string(" planetscope 0e blue"), string(" planetscope 0e green"), string(" planetscope 0e red"), string(" planetscope 0e nir"),
-	string(" planetscope 0f 10 blue"), string(" planetscope 0f 10 green"), string(" planetscope 0f 10 red"), string(" planetscope 0f 10 nir")
+	string(" planetscope 0f 10 blue"), string(" planetscope 0f 10 green"), string(" planetscope 0f 10 red"), string(" planetscope 0f 10 nir"),
+	string(" worldview 4 pan"), string(" worldview 4 blue "),  string(" worldview 4 green"),
+	string(" worldview 4 red"), string(" worldview 4 nir")
     };
 
 

Modified: grass/trunk/imagery/i.atcorr/iwave.h
===================================================================
--- grass/trunk/imagery/i.atcorr/iwave.h	2018-12-27 22:16:06 UTC (rev 73877)
+++ grass/trunk/imagery/i.atcorr/iwave.h	2018-12-27 22:25:32 UTC (rev 73878)
@@ -88,6 +88,7 @@
 	void planetscope0c0d(int iwa);
 	void planetscope0e(int iwa);
 	void planetscope0f10(int iwa);
+	void worldview4(int iwa);
 
 public:
 	/* To compute the equivalent wavelength needed for the calculation of the

Added: grass/trunk/imagery/i.atcorr/sensors_csv/worldview4.csv
===================================================================
--- grass/trunk/imagery/i.atcorr/sensors_csv/worldview4.csv	                        (rev 0)
+++ grass/trunk/imagery/i.atcorr/sensors_csv/worldview4.csv	2018-12-27 22:25:32 UTC (rev 73878)
@@ -0,0 +1,752 @@
+WL [nm],PAN,BLUE,GREEN,RED,NIR
+350,0.0005763,0.0002041,4.875E-05,1.512E-05,3.665E-05
+351,0.0004987,0.000182,5.628E-05,3.296E-06,1.106E-05
+352,0.000362,0.0002298,8.398E-05,1.222E-05,9E-08
+353,0.0003961,0.0002442,0.000134,3.152E-05,2.271E-05
+354,0.000378,0.000266,0.0001115,2.537E-05,2.483E-05
+355,0.0003285,0.0002239,0.0001372,4.284E-05,1.483E-05
+356,0.0003645,0.0002141,0.0001522,3.764E-05,8.605E-05
+357,0.0003052,0.0001671,8.973E-05,3.008E-05,6.903E-05
+358,0.0003436,0.000167,0.0001529,5.742E-05,1.369E-05
+359,0.0002813,0.0002169,0.0001073,2.382E-05,8.1E-08
+360,0.0003017,0.0001915,4.747E-05,6.547E-06,7.9E-08
+361,0.0003071,0.000182,7.254E-05,4.676E-05,1.05E-05
+362,0.0002567,0.000186,5.336E-05,1.497E-05,3.48E-06
+363,0.0002572,0.0001608,0.0001145,8.012E-06,4.852E-05
+364,0.0002708,0.0001622,9.259E-05,2.563E-06,4.623E-05
+365,0.0002499,0.0001711,0.0001393,8.906E-06,6.937E-05
+366,0.0002406,0.000159,0.0001176,2.83E-05,3.696E-05
+367,0.0002769,0.0001737,0.0001267,3.441E-05,4.125E-05
+368,0.0002528,0.0001564,0.0001711,5.53E-05,3.808E-05
+369,0.0002713,0.0001642,0.0001415,2.811E-05,5.036E-05
+370,0.000327,0.0001616,0.0001068,1.394E-05,1.877E-05
+371,0.0004073,0.0001113,7.349E-05,2.914E-06,1.241E-05
+372,0.0005164,0.0001617,8.547E-05,2.188E-06,5.617E-05
+373,0.0006137,0.0001674,6.938E-05,2.384E-05,3.669E-05
+374,0.0005822,0.0001746,8.83E-05,4.011E-05,1.334E-05
+375,0.0005223,0.0001886,0.0001043,3.152E-05,4.617E-05
+376,0.0004653,0.0001701,0.0001697,9.412E-06,7.985E-05
+377,0.0004137,0.0001571,0.0002888,9.462E-06,2.474E-05
+378,0.0004205,0.0001539,0.0004122,2.179E-05,1.752E-06
+379,0.0004419,0.0001727,0.0003659,3.81E-05,2.379E-05
+380,0.0005028,0.0001889,0.0004177,2.575E-05,4.583E-05
+381,0.0004549,0.0002813,0.0003655,2.112E-05,7.997E-05
+382,0.0004082,0.0005018,0.000295,1.624E-05,6.461E-05
+383,0.0004032,0.0007179,0.0003196,2.895E-06,5.081E-05
+384,0.0003919,0.001094,0.0002688,1.429E-05,4.483E-05
+385,0.0004073,0.00164,0.0001902,1.173E-05,4.514E-05
+386,0.0004362,0.002709,0.0002132,5.508E-05,3.442E-05
+387,0.0004382,0.003805,0.000174,3.934E-05,1.412E-05
+388,0.0004367,0.003553,0.0001191,4.348E-05,1.236E-05
+389,0.0004127,0.002381,0.0001468,5.262E-05,3.607E-05
+390,0.0004081,0.001701,0.0001291,5.433E-05,5.109E-05
+391,0.000445,0.001586,0.0001356,0.0001901,4.873E-05
+392,0.000448,0.001325,0.0001886,0.0004255,2.738E-05
+393,0.0004719,0.001244,0.0001655,0.07616,3.261E-05
+394,0.0004668,0.001393,0.0001463,0.4573,6.506E-05
+395,0.0004213,0.001676,0.0001058,0.7053,0.0001435
+396,0.0004369,0.002547,0.0001214,0.4187,0.0001562
+397,0.0004346,0.004162,0.0001435,0.06873,0.0002942
+398,0.0004564,0.005046,0.000165,0.002863,0.0002385
+399,0.0005391,0.004822,0.0001621,0.002984,5.791E-05
+400,0.0005371,0.003714,0.0001899,0.009154,4.22E-06
+401,0.0006008,0.002457,0.0001612,0.01131,7.746E-06
+402,0.0005514,0.001957,0.0001176,0.005694,2.662E-06
+403,0.0005719,0.002148,0.0001277,0.0007261,1.925E-06
+404,0.0005871,0.002273,0.0001407,8.689E-05,0.000122
+405,0.0006339,0.002173,0.0001196,9.672E-05,0.0003919
+406,0.0007759,0.00227,0.0001362,0.0001265,0.0006979
+407,0.0008652,0.002953,0.0001568,0.0001561,0.0004272
+408,0.001015,0.003738,0.0001524,8.241E-05,6.767E-05
+409,0.0009758,0.00419,0.0001614,4.543E-05,2.682E-06
+410,0.0009639,0.004605,0.0001836,3.659E-05,9.3E-08
+411,0.0009636,0.005137,0.0001377,2.983E-05,2.724E-05
+412,0.001171,0.005965,0.0001547,2.603E-05,5.409E-05
+413,0.001523,0.006515,0.0001123,2.272E-05,8.163E-05
+414,0.001961,0.006963,7.873E-05,4.431E-06,4.114E-05
+415,0.002289,0.008126,0.0001186,1.392E-05,8.894E-06
+416,0.002439,0.01101,0.0001347,3.149E-05,7.17E-07
+417,0.002521,0.01569,0.0001032,2.024E-05,2.287E-05
+418,0.002651,0.02,0.0001917,2.444E-05,7.556E-06
+419,0.003198,0.0218,0.0001758,5.577E-05,6.6E-07
+420,0.004174,0.02245,0.0001535,6.194E-05,0.0001335
+421,0.005807,0.02381,0.0001402,6.694E-05,4.757E-05
+422,0.007841,0.02739,0.0001913,4.701E-05,3.909E-05
+423,0.00923,0.03238,0.0001934,2.042E-05,2.807E-05
+424,0.01003,0.03836,0.0001607,1.454E-05,1.689E-05
+425,0.01056,0.04884,0.0001393,1.77E-05,0.0001203
+426,0.01199,0.06749,0.0001681,2.867E-05,6.464E-05
+427,0.0153,0.09963,0.0001585,1.827E-05,0.0001178
+428,0.02254,0.1546,0.0001624,8.908E-06,5.969E-05
+429,0.03454,0.2484,0.0001736,2.645E-05,4.891E-05
+430,0.04962,0.4051,0.0001747,2.052E-05,8.498E-05
+431,0.06355,0.6316,0.0001926,3.839E-05,6.492E-05
+432,0.07264,0.9175,0.0002212,8.995E-05,0.001926
+433,0.07993,1.237,0.000211,0.000198,0.005688
+434,0.09349,1.567,0.0001636,0.002758,0.00696
+435,0.1245,1.975,0.0001686,0.01066,0.003462
+436,0.1887,2.556,0.0001207,0.02567,0.0008983
+437,0.3089,3.471,0.0001512,0.03198,0.0005841
+438,0.4913,5.124,0.0001723,0.01875,0.0003187
+439,0.7087,8.142,0.0002105,0.00474,0.0002103
+440,0.9077,22.2,0.0002021,0.0006286,0.0001013
+441,1.104,46.69,0.0002731,0.000771,3.905E-05
+442,1.392,96.2,0.0002333,0.01673,0.0001223
+443,1.957,147.7,0.0002731,0.03827,0.0002112
+444,11.62,254.1,0.0002767,0.03285,0.0003739
+445,27.19,363.4,0.0002327,0.01049,0.0009809
+446,48.5,484.6,0.00018,0.0005606,0.001336
+447,60.29,606.3,0.0002104,0.0004416,0.001834
+448,72.67,715.2,0.0002026,0.004894,0.002209
+449,93.75,823.6,0.0002299,0.01479,0.001626
+450,173.1,847.6,0.0002037,0.01773,0.0008271
+451,252.5,868.6,0.0003173,0.007718,0.0003815
+452,331.9,846.7,0.0004248,0.0004897,0.0001742
+453,411.2,823.4,0.0004155,7.506E-05,0.0001785
+454,485.1,832.5,0.0003887,0.0001114,0.0001527
+455,532.6,842.5,0.000336,0.0003095,0.0002007
+456,580,854.8,0.0002614,0.000356,0.0003836
+457,627.4,867.1,0.0002455,0.000274,0.0003164
+458,674.9,882.4,0.0002215,0.0004148,0.0007192
+459,715.2,897.6,0.0002303,0.003515,0.002223
+460,724.4,900.6,0.000297,0.00639,0.005117
+461,733.6,903.4,0.0003012,0.004423,0.006967
+462,742.8,905.9,0.0004279,0.001319,0.00571
+463,752,908.5,0.0005486,0.0003048,0.002776
+464,757.6,906.9,0.0006123,0.0003256,0.001323
+465,748.4,905.2,0.0006596,0.0006955,0.0007154
+466,739.2,902.4,0.0006253,0.004499,0.000551
+467,730,899.7,0.000533,0.01842,0.0004366
+468,720.8,909.4,0.0005044,0.02557,0.0006495
+469,716.7,919,0.0004728,0.01203,0.00126
+470,730.9,921.4,0.0004719,0.000828,0.004618
+471,745.2,923.8,0.000487,0.0002332,0.01377
+472,759.5,926.4,0.0005671,0.0004469,0.02261
+473,773.7,929.1,0.0006254,0.006767,0.01448
+474,784.3,932.7,0.0007106,0.05723,0.005835
+475,782.6,936.3,0.001014,0.1027,0.002927
+476,780.9,938.9,0.001382,0.0605,0.003298
+477,779.2,941.5,0.001903,0.008281,0.007885
+478,777.5,945.6,0.002642,8.214E-05,0.02363
+479,777.2,949.4,0.003387,4.439E-05,0.03289
+480,781.3,944.9,0.004052,1.578E-05,0.01972
+481,785.4,940.6,0.0045,3.17E-05,0.004252
+482,789.5,938.2,0.004777,6.194E-05,0.000854
+483,793.5,936.1,0.005161,5.188E-05,0.0004738
+484,796.1,940,0.00556,8.098E-05,0.0003834
+485,794.5,943.7,0.006303,4.585E-05,0.001122
+486,792.8,945.7,0.00735,1.51E-05,0.003275
+487,791.2,947.8,0.009154,2.402E-05,0.004051
+488,789.5,951.1,0.01215,4.196E-05,0.001929
+489,788.5,954.1,0.01701,2.387E-05,5.439E-05
+490,789.3,954.3,0.02497,3.457E-05,5.064E-06
+491,790,954.5,0.03846,5.21E-05,1.06E-07
+492,790.8,954.7,0.06204,3.689E-05,1.4E-06
+493,791.6,955.4,0.1011,3.233E-05,2.081E-05
+494,792.5,962.9,0.1662,3.185E-05,4.456E-05
+495,793.9,970.3,0.2668,4.175E-05,3.442E-05
+496,795.2,976.7,0.4175,6.276E-05,0.0001043
+497,796.6,983.1,0.6382,5.597E-05,2.828E-05
+498,798,987.9,0.9534,4.524E-05,1.882E-05
+499,799.5,992.6,1.441,3.764E-05,3.073E-05
+500,801.4,996.9,2.244,4.171E-05,0.00014
+501,803.3,1000,3.67,2.564E-05,3.487E-05
+502,805.2,992.2,8.529,2.424E-05,4.234E-05
+503,807.1,981.6,22.87,2.185E-05,5.019E-05
+504,807.9,944,59.49,2.76E-05,2.774E-05
+505,806.1,900.2,107.2,5.895E-05,0.0001234
+506,804.4,798.7,273.8,4.311E-05,0.0001923
+507,802.7,693,441.7,4.732E-05,9.588E-05
+508,801,551.2,620.7,3.575E-05,0.000145
+509,799.2,413.3,783,4.184E-05,0.0001158
+510,797.5,307.2,808.4,4.535E-05,2.463E-05
+511,795.7,206.8,831.5,5.214E-05,6.188E-05
+512,794,150.9,837.4,0.000183,1.137E-05
+513,792.3,98.59,842.6,0.00101,3.007E-05
+514,792.6,72.58,843.5,0.001581,2.81E-05
+515,797,48.33,844.1,0.001019,6.742E-05
+516,801.3,32.88,843.9,0.0002984,9.494E-05
+517,805.6,20.12,844,7.033E-05,6.226E-05
+518,810,14.64,846.7,3.697E-05,3.379E-05
+519,813.5,10.69,849.2,4.792E-05,6.146E-05
+520,815.8,7.96,850,0.0002443,3.089E-05
+521,818,5.932,850.8,0.0006264,3.316E-05
+522,820.2,4.522,851.9,0.0007716,4.541E-05
+523,822.5,3.42,854,0.0003948,1.8E-05
+524,825.5,2.695,861.6,0.0001245,4.621E-05
+525,830,2.115,870.1,5.879E-05,6.455E-05
+526,834.5,1.657,883.2,7.452E-05,5.291E-05
+527,838.9,1.306,895.8,0.0001233,0.0001277
+528,843.4,1.03,905,0.0002314,0.0001421
+529,846.9,0.8183,912.6,0.0004709,0.0001028
+530,848.7,0.6575,911.8,0.0008374,2.259E-05
+531,850.5,0.5301,910.1,0.0008244,5.754E-05
+532,852.3,0.4251,904.6,0.0005364,0.000121
+533,854.1,0.3307,899.9,0.0002513,2.77E-05
+534,854.7,0.2723,899.1,0.0001484,0.0001128
+535,853.5,0.2284,899.4,0.000169,1.26E-07
+536,852.2,0.1873,904.9,0.0002405,6.084E-06
+537,851,0.154,910.2,0.0005062,5.419E-05
+538,849.8,0.1258,914.7,0.0008476,0.0001589
+539,848.8,0.1038,917.7,0.0008892,0.0002586
+540,848.3,0.08633,914.1,0.000527,0.000458
+541,847.7,0.07216,909.6,0.0002345,0.0004386
+542,847.2,0.06198,901.5,0.0001524,0.0001288
+543,846.6,0.05331,894.2,0.0001412,7.469E-05
+544,846.2,0.04668,890.6,0.0001906,4.213E-05
+545,846,0.04121,888.5,0.0004092,2.015E-05
+546,845.8,0.03735,892.2,0.0007653,3.424E-05
+547,845.7,0.03427,896.5,0.001052,2.781E-05
+548,845.5,0.03172,902.9,0.001025,5.227E-05
+549,846.5,0.02984,909,0.0006975,0.0001344
+550,849.2,0.02822,913.9,0.0004687,0.0002446
+551,851.8,0.02705,918.6,0.0004878,0.0003937
+552,854.4,0.02613,922.6,0.000674,0.0004809
+553,857,0.02528,927,0.001104,0.0005272
+554,861.3,0.02458,932.9,0.002053,0.0003538
+555,867.5,0.02403,939.1,0.003055,0.0002759
+556,873.7,0.02307,946.3,0.003058,0.0002741
+557,879.9,0.0221,953.1,0.00174,0.0002875
+558,886.1,0.02109,958.7,0.0009353,0.0002664
+559,891.1,0.02006,963.9,0.0008621,0.0002251
+560,894.7,0.01906,967.8,0.001046,0.0001684
+561,898.3,0.01806,971.8,0.001454,9.696E-05
+562,902,0.01703,975.8,0.002096,5.885E-05
+563,905.6,0.01596,980.3,0.002589,3.355E-05
+564,908,0.01463,986,0.002725,9.43E-05
+565,909.1,0.01354,991.5,0.002011,0.0001279
+566,910.1,0.01221,996.1,0.001266,0.0002167
+567,911.2,0.0111,999.7,0.001109,0.0002221
+568,912.3,0.009968,1000,0.001428,0.0002429
+569,912.7,0.009031,999.7,0.001587,0.0004491
+570,912.6,0.008251,997.7,0.001092,0.0006577
+571,912.4,0.007551,996.3,0.0005279,0.0006147
+572,912.2,0.006825,996.5,0.0002588,0.0006668
+573,912,0.006219,994.9,0.0001459,0.0005553
+574,911.9,0.00562,988.5,8.739E-05,0.0004554
+575,911.8,0.005115,969.6,6.557E-05,0.0004351
+576,911.8,0.004702,916.8,3.062E-05,0.0003832
+577,911.7,0.004304,843.5,2.829E-05,0.0003603
+578,911.6,0.004105,715.9,1.682E-05,0.0003286
+579,911.8,0.00391,584.9,2.344E-05,0.0004602
+580,912.1,0.003729,445.3,3.409E-05,0.0004486
+581,912.4,0.003628,318.8,2.079E-05,0.0003847
+582,912.7,0.003468,225.7,3.387E-05,0.0004537
+583,913,0.003338,146.2,4.472E-05,0.0004094
+584,914.9,0.003229,100.2,2.231E-05,0.0004136
+585,918.1,0.003082,62.12,2.619E-05,0.0005789
+586,921.4,0.002985,41.16,2.997E-05,0.0006199
+587,924.6,0.002927,26.28,1.091E-05,0.0007042
+588,927.8,0.002962,15.9,1.392E-05,0.0008292
+589,930.7,0.003111,10.83,2.12E-05,0.0008428
+590,933.2,0.003245,6.266,3.99E-05,0.0009509
+591,935.8,0.003406,4.583,3.959E-05,0.001246
+592,938.4,0.00366,3.431,2.668E-05,0.001798
+593,940.9,0.003983,2.597,3.221E-05,0.001706
+594,941.6,0.004283,2.004,4.45E-05,0.001152
+595,941,0.004557,1.569,3.661E-05,0.0005925
+596,940.4,0.004791,1.246,5.448E-05,0.0002528
+597,939.8,0.004619,0.9713,5.531E-05,8.496E-05
+598,939.1,0.004417,0.7564,1.53E-05,0.0001311
+599,940.6,0.004249,0.5885,2.168E-05,0.0001256
+600,943.6,0.003732,0.4572,3.663E-05,0.0001131
+601,946.5,0.003127,0.3567,7.102E-05,0.0001981
+602,949.4,0.002601,0.2783,6.087E-05,0.0002274
+603,952.4,0.002137,0.2174,4.42E-05,0.0001787
+604,955.5,0.001725,0.1708,5.569E-05,0.0001738
+605,958.8,0.001363,0.1353,4.285E-05,0.0001559
+606,962,0.001052,0.1079,2.902E-05,0.0001029
+607,965.2,0.0008512,0.08731,4.491E-05,6.781E-05
+608,968.5,0.0006743,0.07138,6.409E-05,4.041E-05
+609,968.8,0.0005342,0.05908,7.138E-05,4.705E-06
+610,967.2,0.0004439,0.04988,8.287E-05,1.35E-07
+611,965.7,0.0003825,0.0422,8.998E-05,1.615E-05
+612,964.2,0.0003529,0.0364,8.211E-05,2.88E-05
+613,962.7,0.0003371,0.03192,8.815E-05,6.249E-05
+614,960.5,0.0003214,0.02822,9.407E-05,0.0001339
+615,958,0.0003055,0.02551,0.000125,7.428E-05
+616,955.5,0.0002954,0.02324,0.000129,9.257E-05
+617,953,0.000279,0.02127,0.0001384,7.493E-05
+618,950.5,0.0002631,0.01983,0.0001726,3.836E-05
+619,951.5,0.0002311,0.01837,0.0001659,3.6E-05
+620,954.2,0.0002102,0.01715,0.0001772,2.618E-05
+621,957,0.0002007,0.01597,0.0002048,3.909E-05
+622,959.8,0.0001825,0.01473,0.0002226,2.227E-05
+623,962.6,0.000178,0.01376,0.0002102,3.495E-05
+624,967.1,0.0001717,0.01257,0.0002549,8.576E-05
+625,972.6,0.0001565,0.01131,0.0003233,0.0001176
+626,978,0.0001523,0.01018,0.000388,0.0001088
+627,983.5,0.0001506,0.009007,0.0004417,0.0001236
+628,988.9,0.0001471,0.007912,0.0005139,9.684E-05
+629,990.6,0.0001606,0.006999,0.0006413,0.0001467
+630,990.5,0.000162,0.006105,0.0008025,0.0002549
+631,990.4,0.0001544,0.005347,0.0009951,0.0002888
+632,990.4,0.0001492,0.004665,0.001318,0.0003587
+633,990.3,0.0001393,0.004149,0.001755,0.0005075
+634,988.5,0.0001239,0.003704,0.002348,0.0005214
+635,986,0.0001104,0.003268,0.003224,0.0004436
+636,983.6,0.0001025,0.002929,0.004577,0.0004269
+637,981.1,9.745E-05,0.002661,0.006624,0.000442
+638,978.6,9.475E-05,0.002393,0.009688,0.0003747
+639,979.5,9.326E-05,0.002188,0.01462,0.000368
+640,981.8,8.483E-05,0.002026,0.02271,0.0002915
+641,984.1,7.842E-05,0.001914,0.03589,0.0002236
+642,986.4,8.676E-05,0.001837,0.058,0.0002604
+643,988.7,0.0001051,0.001749,0.09683,0.0002878
+644,990.9,0.0001075,0.001692,0.1665,0.0002559
+645,993.2,0.0001096,0.00163,0.2953,0.0002869
+646,995.5,0.0001371,0.001572,0.5443,0.0003073
+647,997.7,0.0001474,0.001554,1.049,0.0002993
+648,1000,0.0001437,0.001573,2.112,0.0003735
+649,998.6,0.0001637,0.001546,4.508,0.0004337
+650,996,0.0001873,0.001516,14.39,0.0003522
+651,993.3,0.0002066,0.00156,42.22,0.0002779
+652,990.7,0.0002357,0.001527,87.59,0.0002957
+653,988,0.0002726,0.001456,194.6,0.000255
+654,985.4,0.0003225,0.001433,375.8,0.0001782
+655,982.8,0.0004029,0.001397,563,0.0002179
+656,980.2,0.0005162,0.001336,757.3,0.000229
+657,977.6,0.0006483,0.00127,878.6,0.0001248
+658,975,0.0008405,0.001187,916.2,0.0001286
+659,975.7,0.001084,0.001109,934.5,0.0001427
+660,977.5,0.001355,0.001034,931.3,0.0001238
+661,979.2,0.001674,0.0009302,928.9,0.0001472
+662,980.9,0.002034,0.0008244,927.6,0.0001697
+663,982.7,0.002409,0.0007764,927.6,0.0001956
+664,984.6,0.002845,0.0007222,929,0.0002079
+665,986.7,0.003355,0.0006195,934.5,0.0002203
+666,988.7,0.003962,0.0005479,944.2,0.0002205
+667,990.7,0.004701,0.0005036,957.5,0.0002201
+668,992.8,0.005601,0.0004557,974.5,0.0002718
+669,992.2,0.006708,0.0004524,987.4,0.000257
+670,990.9,0.007972,0.0004645,996.2,0.0001704
+671,989.6,0.009288,0.0004834,999.8,0.0001625
+672,988.3,0.0106,0.0004882,998.2,0.0001522
+673,987,0.01183,0.0004343,997.6,0.0001707
+674,983.7,0.01287,0.0004038,998,0.0002872
+675,979.9,0.01368,0.0004098,998.8,0.0002379
+676,976.1,0.01437,0.0004101,1000,0.0001502
+677,972.3,0.01491,0.000427,998.4,0.0002291
+678,968.5,0.01513,0.0004309,994.3,0.0001762
+679,960.5,0.01534,0.0004391,989.3,0.0001262
+680,951.5,0.01563,0.000451,983.4,0.0002351
+681,942.6,0.01601,0.0004965,975.9,0.00027
+682,933.6,0.01679,0.000491,966.9,0.0002557
+683,924.7,0.01806,0.0004843,954.6,0.0002785
+684,926.1,0.01985,0.0005538,939.2,0.0003211
+685,929.5,0.0221,0.0005767,934,0.0002443
+686,933,0.02474,0.0005628,937.6,0.0002106
+687,936.4,0.02774,0.0005625,919.2,0.0002595
+688,939.9,0.03038,0.0005725,881.9,0.000193
+689,942.6,0.03194,0.0006168,728.9,0.0001873
+690,945.1,0.03209,0.0006575,478.4,0.0002075
+691,947.7,0.03089,0.0006931,285,9.612E-05
+692,950.3,0.02854,0.0007014,138.6,0.0001652
+693,952.8,0.02592,0.0007447,57.72,0.000171
+694,952,0.0235,0.0008178,28.31,0.0001146
+695,950.6,0.02166,0.0008561,12.34,0.0001581
+696,949.2,0.02057,0.0009215,5.959,0.0002201
+697,947.8,0.02009,0.0009215,3.153,0.0003574
+698,946.4,0.02032,0.0009652,1.775,0.0004576
+699,948,0.02135,0.001054,1.026,0.0005188
+700,950,0.02309,0.001046,0.618,0.0006665
+701,951.9,0.02599,0.001096,0.382,0.0007277
+702,953.9,0.03031,0.001148,0.244,0.0007806
+703,955.8,0.03633,0.001163,0.1607,0.0008869
+704,957.6,0.04499,0.00118,0.1082,0.0008032
+705,959.3,0.05776,0.001115,0.07441,0.0007777
+706,961,0.07685,0.001098,0.0521,0.0008426
+707,962.7,0.107,0.001005,0.03719,0.0007668
+708,964.4,0.155,0.0008834,0.02711,0.0007073
+709,963.7,0.2319,0.0006839,0.02006,0.0007875
+710,962.8,0.3364,0.0004978,0.01502,0.0008463
+711,961.9,0.4209,0.0003492,0.01149,0.0008519
+712,961,0.4193,0.0002284,0.008914,0.0009938
+713,960.1,0.3244,0.0002008,0.006982,0.001103
+714,956,0.2059,0.0001443,0.005522,0.001234
+715,951.6,0.12,9.456E-05,0.004428,0.001408
+716,947.2,0.07135,6.549E-05,0.00357,0.001671
+717,942.8,0.04524,7.304E-05,0.002905,0.002133
+718,938.4,0.03069,8.104E-05,0.002461,0.002322
+719,936,0.02231,8.352E-05,0.002165,0.002832
+720,933.8,0.01693,8.268E-05,0.001844,0.003457
+721,931.5,0.01338,6.627E-05,0.001527,0.00414
+722,929.3,0.01108,3.291E-05,0.001286,0.00503
+723,927,0.009603,3.721E-05,0.001081,0.005823
+724,925.4,0.008489,4.163E-05,0.0009257,0.00632
+725,923.7,0.007657,3.99E-05,0.0008721,0.006802
+726,922.1,0.007123,9.461E-05,0.0007727,0.007152
+727,920.5,0.006727,0.0001425,0.0007316,0.007527
+728,918.9,0.006601,8.148E-05,0.0007068,0.007964
+729,918.2,0.006589,3.911E-05,0.0006091,0.008377
+730,917.5,0.00676,7.193E-05,0.0005522,0.008939
+731,916.8,0.007111,5.097E-05,0.0004926,0.009897
+732,916.1,0.007554,3.01E-05,0.0004704,0.01069
+733,915.4,0.008086,1.098E-05,0.0004532,0.01177
+734,913.6,0.008723,1.082E-05,0.0003847,0.01349
+735,911.8,0.009225,3.776E-05,0.0003967,0.01549
+736,910.1,0.00998,4.141E-05,0.0003459,0.0182
+737,908.3,0.01095,6.255E-05,0.0003145,0.02165
+738,906.5,0.01186,5.208E-05,0.000337,0.02656
+739,902.8,0.01284,4.108E-05,0.0003444,0.03213
+740,899.2,0.01418,3.582E-05,0.000299,0.03865
+741,895.6,0.01553,3.601E-05,0.0003156,0.04751
+742,891.9,0.01701,2.543E-05,0.0003185,0.05848
+743,888.3,0.01893,6.421E-06,0.0003032,0.07047
+744,885.1,0.02127,3.36E-05,0.000307,0.08313
+745,882,0.02458,3.647E-05,0.0002695,0.09892
+746,878.8,0.02888,0.0001638,0.0003206,0.1148
+747,875.6,0.0347,0.000111,0.0002954,0.1332
+748,872.5,0.04337,8.864E-05,0.000257,0.1534
+749,872,0.05484,0.0001647,0.0003521,0.1776
+750,871.5,0.0713,0.0002429,0.0002619,0.2049
+751,871,0.0954,0.0005116,0.0002611,0.2397
+752,870.5,0.1292,0.0007255,0.000297,0.2837
+753,870,0.1752,0.000771,0.0002687,0.3385
+754,868.9,0.229,0.001096,0.0002743,0.4107
+755,867.7,0.2836,0.0009725,0.0002814,0.5073
+756,866.6,0.325,0.0008581,0.0002955,0.6273
+757,865.5,0.3472,0.0006117,0.0003053,0.7881
+758,864.3,0.3457,0.0005233,0.0003499,1.007
+759,862.7,0.3275,0.0006706,0.0003297,1.286
+760,861.1,0.2985,0.0005799,0.0002588,1.66
+761,859.4,0.2664,0.0005553,0.0002781,2.154
+762,857.8,0.2319,0.0006072,0.0003785,2.811
+763,856.2,0.1986,0.0003645,0.0003242,3.666
+764,854.8,0.1681,0.0005203,0.0003111,4.773
+765,853.4,0.1397,0.0004957,0.0003706,6.256
+766,852.1,0.1145,0.0004896,0.0002949,8.231
+767,850.7,0.09366,0.0005599,0.0003171,10.84
+768,849.3,0.07618,0.0003452,0.0002684,14.41
+769,848.4,0.06153,0.000387,0.0003497,19.35
+770,847.5,0.04912,0.0004673,0.0004288,30.01
+771,846.6,0.03869,0.0004196,0.0004774,46.02
+772,845.7,0.03068,0.0004178,0.0005176,60.18
+773,844.7,0.02394,0.0004228,0.0004514,85.7
+774,844,0.01889,0.0005726,0.0005781,115.2
+775,843.2,0.0148,0.0009153,0.000528,169
+776,842.4,0.01196,0.001066,0.0005116,230.9
+777,841.6,0.009615,0.00161,0.0003847,330.1
+778,840.7,0.007775,0.002093,0.0004144,441.4
+779,839.2,0.006134,0.002926,0.0004309,573.2
+780,837.6,0.005171,0.002748,0.000385,711.4
+781,836.1,0.004379,0.001943,0.0004334,820.6
+782,834.6,0.003737,0.001385,0.000564,920.7
+783,832.8,0.003272,0.0006302,0.000617,968.3
+784,829.3,0.002686,0.00051,0.0009029,1000
+785,825.7,0.002482,0.0006082,0.0008791,998.7
+786,822.1,0.002221,0.0004652,0.001104,987.8
+787,818.6,0.002332,0.0002737,0.001282,967.4
+788,814.3,0.002172,0.0002775,0.001202,944.3
+789,805.8,0.002039,0.0004258,0.0009826,923
+790,797.3,0.002089,0.0002594,0.0009175,902.2
+791,788.9,0.002072,0.0002643,0.0007809,885.2
+792,780.4,0.002201,0.0003328,0.0007632,869.1
+793,759.9,0.002222,0.0003618,0.000799,856.6
+794,674.8,0.00248,0.0003618,0.001027,845
+795,589.6,0.002541,0.0003771,0.001166,834.8
+796,504.5,0.00284,0.0002281,0.001228,824.9
+797,419.3,0.00326,0.0002991,0.001593,814.1
+798,339.2,0.004009,0.0004391,0.001785,803.1
+799,283.5,0.004986,0.0003215,0.002685,805.1
+800,227.9,0.006418,0.0002622,0.003861,810.3
+801,172.3,0.008413,0.000113,0.005295,814.5
+802,116.6,0.01184,6.954E-05,0.008641,818.6
+803,69.66,0.018,0.0002804,0.0134,822.2
+804,60.86,0.02764,0.0004605,0.02477,825.7
+805,47.04,0.04434,0.0003562,0.03387,829.6
+806,34.39,0.08816,0.001117,0.04392,833.4
+807,15.13,0.2123,0.002108,0.04554,837.5
+808,8.53,0.3778,0.002061,0.04311,841.6
+809,4.607,0.4081,0.001575,0.04271,845.8
+810,3.449,0.2662,0.001467,0.03855,850.1
+811,2.627,0.1287,0.000657,0.03414,854.1
+812,2.022,0.05525,0.0007444,0.03407,858.2
+813,1.562,0.02675,0.0002874,0.0323,862.6
+814,1.218,0.01488,0.0002276,0.03575,867
+815,0.9647,0.009179,0.0002906,0.04251,871.8
+816,0.766,0.00625,0.0003197,0.04988,876.6
+817,0.6124,0.004584,0.0001291,0.06865,882.2
+818,0.4935,0.003619,0.0003615,0.07941,887.9
+819,0.3989,0.002672,0.0001819,0.07437,886.5
+820,0.3255,0.002091,0.0001433,0.05062,883.9
+821,0.2654,0.001751,1.965E-05,0.02725,881.8
+822,0.2197,0.001513,0.0001623,0.01545,879.9
+823,0.1813,0.001362,0.0001487,0.008178,878.1
+824,0.1528,0.001027,8.687E-05,0.005711,876.3
+825,0.128,0.0009656,0.0002512,0.004494,874.4
+826,0.1074,0.001067,0.0005019,0.003124,872.4
+827,0.09051,0.0007752,0.0004514,0.002719,870
+828,0.0767,0.001014,0.0003087,0.001877,867.4
+829,0.06493,0.0007846,0.0001689,0.002048,864.6
+830,0.05547,0.0006771,0.0001588,0.001874,861.7
+831,0.04806,0.001043,0.0004495,0.0015,858.9
+832,0.0409,0.00077,0.0003555,0.00154,856.1
+833,0.03543,0.001077,0.0003688,0.00175,853.4
+834,0.03103,0.001024,0.0005664,0.002645,850.7
+835,0.02731,0.001246,0.001296,0.003462,848.5
+836,0.02324,0.001323,0.004244,0.00476,846.3
+837,0.02089,0.001427,0.007241,0.006142,845.1
+838,0.01833,0.00169,0.005497,0.006792,844
+839,0.01553,0.001746,0.002681,0.005792,841.8
+840,0.0141,0.00218,0.001035,0.004118,839.5
+841,0.01286,0.002592,0.0002525,0.003641,836.4
+842,0.01097,0.00268,0.0001977,0.002352,833.2
+843,0.009728,0.002969,8.567E-05,0.002284,828.8
+844,0.008805,0.002974,0.000171,0.00235,824.3
+845,0.007881,0.003236,0.0003305,0.001825,818.1
+846,0.006667,0.0036,0.0002107,0.002062,811.8
+847,0.006438,0.003064,0.0001483,0.002279,804.6
+848,0.005352,0.002751,0.01139,0.003478,797.4
+849,0.004781,0.002652,0.005679,0.001973,789.8
+850,0.004321,0.002518,0.008616,0.006579,782.2
+851,0.00387,0.002542,0.01256,0.01239,775.1
+852,0.003466,0.002428,0.01814,0.008401,768.1
+853,0.003139,0.002609,0.01186,0.004451,762.1
+854,0.002845,0.002772,0.01315,0.003696,756.1
+855,0.002577,0.003213,0.00197,0.004037,750.5
+856,0.002343,0.003959,0.005537,0.0005436,744.9
+857,0.002067,0.005412,0.01041,0.00385,739.7
+858,0.001922,0.008246,0.01058,0.0008437,734.5
+859,0.00176,0.01253,0.005156,0.003458,728.7
+860,0.001605,0.01763,0.00608,0.003709,722.9
+861,0.00147,0.02339,0.01085,0.007335,716.4
+862,0.001321,0.0292,0.006868,0.005466,709.9
+863,0.001258,0.03483,0.00801,0.005805,702.8
+864,0.001174,0.0375,0.00388,0.007097,695.6
+865,0.001052,0.04585,0.006774,0.006327,687.6
+866,0.0009993,0.05037,0.003611,0.002392,679.5
+867,0.0009242,0.05392,0.007705,0.003824,671.6
+868,0.0008475,0.05503,0.001194,0.002434,663.7
+869,0.0007709,0.05389,0.005511,0.001647,656.6
+870,0.0007402,0.04775,0.0059,0.002986,649.4
+871,0.0006836,0.04761,0.002354,0.006222,642.7
+872,0.0006658,0.04329,0.002589,0.001745,635.9
+873,0.0005916,0.03837,0.003258,0.00231,629.4
+874,0.0005646,0.02836,0.00359,0.004625,622.9
+875,0.0005246,0.02514,0.003921,0.00462,616.7
+876,0.0004909,0.01984,0.002707,0.002431,610.6
+877,0.0004757,0.01682,0.001538,0.004264,604.5
+878,0.0004332,0.01065,0.003593,0.003648,598.4
+879,0.0004468,0.00928,0.001084,0.002604,591.8
+880,0.0003995,0.006809,0.002229,0.002152,585.3
+881,0.0004078,0.004828,0.0005095,0.0008221,578.6
+882,0.000382,0.003057,0.003186,0.002168,572
+883,0.0003516,0.002247,0.003453,0.002107,566
+884,0.000338,0.001466,0.001642,0.003444,560.1
+885,0.0003421,0.0009657,0.002159,0.003501,554.6
+886,0.0003125,0.0006519,0.002859,0.001401,549.1
+887,0.0002999,0.0004659,0.00217,0.002713,544.8
+888,0.0002874,0.0003691,0.001793,0.001951,540.5
+889,0.0002731,0.0002998,0.000363,0.001343,537
+890,0.000263,0.0002703,0.002037,0.002013,533.4
+891,0.0002733,0.0002402,0.001345,0.003137,530.4
+892,0.0002194,0.0002245,0.0003298,0.0017,527.5
+893,0.0002126,0.0002047,0.001242,0.0006715,524.9
+894,0.0002021,0.0001954,0.002002,0.001459,522.3
+895,0.0002117,0.0001884,0.00211,0.002423,519.7
+896,0.0001778,0.0001652,0.003402,0.001544,517.1
+897,0.0001566,0.0001795,0.002894,0.00183,514.4
+898,0.0001238,0.0001583,0.002086,0.001456,511.6
+899,0.0001269,0.0001475,0.002352,0.002061,508.8
+900,0.000124,0.0001629,0.001745,0.00206,505.9
+901,0.0001008,0.0001602,0.0005626,0.001609,503.2
+902,0.0001012,0.0001526,0.0006287,0.002241,500.4
+903,0.0001029,0.0001446,0.001397,0.001473,497.4
+904,9.616E-05,0.00015,0.0008717,0.001456,494.4
+905,4.663E-05,0.0001386,0.002529,0.001911,491.3
+906,5.417E-05,0.0001411,0.001497,0.002303,488.3
+907,4.34E-05,0.0001514,0.002763,0.001417,485.1
+908,2.613E-05,0.0001317,0.001535,0.00197,481.9
+909,2.831E-05,0.0001346,0.0008955,0.001589,479
+910,3.4E-05,0.0001455,0.001676,0.00198,476.1
+911,1.928E-05,0.0001443,0.002682,0.001714,473.9
+912,1.465E-05,0.0001415,0.00145,0.001978,471.7
+913,1.882E-05,0.0001562,0.00192,0.001645,470
+914,1.729E-05,0.0001688,0.001438,0.001542,468.2
+915,3.195E-05,0.0001588,0.00132,0.001915,464.8
+916,9.915E-06,0.0001702,0.001313,0.001175,460.4
+917,1.906E-05,0.000178,0.0006713,0.0009074,446.8
+918,1.748E-05,0.0001802,0.001982,0.001219,431.2
+919,2.043E-05,0.0001915,0.001055,0.002177,397.4
+920,1.113E-05,0.0002026,0.001392,0.0009925,361.6
+921,2.284E-05,0.0002326,0.001421,0.0007506,308.8
+922,9.156E-06,0.000264,0.002358,0.0009761,256.1
+923,1.801E-05,0.0002972,0.002726,0.0009969,203
+924,1.443E-05,0.0003637,0.002159,0.0009439,151.8
+925,4.659E-06,0.0004491,0.001688,0.0007809,114.5
+926,1.511E-05,0.0005781,0.0009886,0.0008909,79.19
+927,2.282E-05,0.0007532,0.001565,0.0006816,58.57
+928,1.845E-05,0.0009905,0.001629,0.0006906,39.25
+929,3.258E-06,0.001278,0.001529,0.0006808,29.34
+930,1.385E-05,0.001592,0.001799,0.0008346,20.08
+931,3.602E-06,0.001924,0.001683,0.0005282,15.44
+932,1.138E-05,0.002285,0.001796,0.0001364,11.09
+933,2.557E-06,0.002615,0.001682,0.0003636,8.778
+934,5.864E-06,0.002935,0.001593,0.0005013,6.622
+935,9.616E-06,0.003221,0.001687,0.00087,5.476
+936,9.783E-06,0.003412,0.00149,0.0005527,4.409
+937,1.454E-05,0.003536,0.001577,0.0004852,3.832
+938,1.077E-05,0.003608,0.001562,0.0005348,3.275
+939,9.985E-06,0.003644,0.0008056,0.0002063,2.832
+940,2.161E-05,0.003732,0.001005,0.0003754,2.353
+941,1.345E-05,0.004025,0.001055,0.0004111,2.116
+942,3.99E-06,0.004768,0.001168,0.000326,1.729
+943,1.82E-05,0.005998,0.0009933,0.0003288,1.234
+944,7.372E-06,0.007694,0.0009237,0.0002072,0.8944
+945,1.058E-05,0.01002,0.001271,0.0003239,0.6544
+946,4.09E-06,0.01269,0.0006107,0.0001083,0.4804
+947,8.545E-06,0.0154,0.000448,0.0001313,0.3579
+948,5.632E-06,0.01782,0.0008133,0.0001751,0.2683
+949,8.257E-06,0.01979,0.0006772,0.0002567,0.2019
+950,6.149E-06,0.02139,0.0005916,0.0003809,0.1551
+951,1.606E-05,0.02205,0.0006277,0.0003108,0.1219
+952,3.396E-06,0.02103,0.0005739,0.0003047,0.09502
+953,1.335E-05,0.01857,0.0006003,8.116E-05,0.07466
+954,8.465E-06,0.0155,0.0005705,8.111E-05,0.05971
+955,1.626E-05,0.01235,0.0008017,0.0001457,0.04746
+956,1.601E-05,0.009327,0.0007656,0.0001663,0.03776
+957,3.656E-06,0.006644,0.0006045,0.0003075,0.03085
+958,1.643E-05,0.004467,0.0005444,0.0001347,0.02553
+959,2.757E-06,0.00298,0.0006039,0.0002582,0.02082
+960,8.155E-06,0.001966,0.0005022,0.0001101,0.01737
+961,9.836E-06,0.001274,0.0003509,7.207E-05,0.01406
+962,1.311E-05,0.0008639,0.0005233,0.0001356,0.01145
+963,6.009E-06,0.0006587,0.0005073,0.0001218,0.009525
+964,9.212E-06,0.0005483,0.0004327,0.0001251,0.008151
+965,7.1E-06,0.0004778,0.0006479,0.0001577,0.006842
+966,4.194E-06,0.0004279,0.0005276,0.0001437,0.005926
+967,1.111E-05,0.0003976,0.0004402,0.0001558,0.005168
+968,8.171E-06,0.0003746,0.000272,0.0001489,0.004484
+969,4.779E-06,0.0003587,0.000235,0.0001454,0.003926
+970,7.445E-06,0.0003496,0.0003518,0.0001035,0.003285
+971,7.094E-06,0.000347,0.0003132,8.876E-05,0.002871
+972,1.018E-05,0.0003491,0.0004249,6.461E-05,0.002554
+973,1.045E-05,0.0003566,0.0003699,0.000103,0.001964
+974,1.024E-05,0.0003685,0.0003954,0.0002141,0.001657
+975,1.203E-05,0.000389,0.0003176,0.0001662,0.001587
+976,8.533E-06,0.0004148,0.0003537,0.0001288,0.001342
+977,7.723E-06,0.0004517,0.000418,7.556E-05,0.001153
+978,8.538E-06,0.0005018,0.0002513,0.0001286,0.001107
+979,5.338E-06,0.0005737,0.0002589,0.0001921,0.001015
+980,6.466E-06,0.0006753,0.0002443,0.0001363,0.0007689
+981,8.806E-06,0.0008197,0.0003007,0.0001779,0.0006303
+982,1.203E-05,0.001036,0.0003254,0.0002022,0.0008322
+983,1.109E-05,0.00135,0.0002482,0.0001543,0.0006446
+984,9.165E-06,0.001789,0.0002154,0.0001353,0.0005714
+985,9.117E-06,0.002389,0.0002266,0.0001797,0.0003359
+986,8.552E-06,0.00312,0.0003506,0.000237,0.0003987
+987,1.046E-05,0.00406,0.0003747,0.0002397,0.0004003
+988,1.32E-05,0.005187,0.0002293,0.000217,0.0002669
+989,9.63E-06,0.006435,0.0002092,0.0002533,0.0004502
+990,7.848E-06,0.007766,0.0002621,0.0002133,0.0003618
+991,8.461E-06,0.008952,0.0002634,0.0002334,0.0002288
+992,1.217E-05,0.009755,0.0001972,0.0002767,0.0003572
+993,7.962E-06,0.01012,0.0002161,0.0002912,0.0004052
+994,1.035E-05,0.009848,0.0002246,0.0003632,0.0001967
+995,1.169E-05,0.009091,0.0002149,0.0002901,0.0002865
+996,1.239E-05,0.008034,0.0001693,0.0003503,0.000349
+997,1.174E-05,0.006824,0.0001671,0.0003739,0.0001908
+998,8.128E-06,0.005636,0.0002212,0.0004775,0.0001895
+999,1.385E-05,0.004633,0.0002332,0.0005472,0.0001194
+1000,1.045E-05,0.003834,0.0002522,0.0005176,5.437E-05
+1001,1.136E-05,0.003162,0.0002247,0.000554,0.0002089
+1002,1.384E-05,0.002695,0.0001692,0.0006029,0.0001952
+1003,1.211E-05,0.002342,0.0002665,0.0007323,7.937E-05
+1004,1.056E-05,0.002101,0.0002982,0.0007991,0.0001646
+1005,1.627E-05,0.001942,0.0003068,0.000787,9.693E-05
+1006,1.392E-05,0.001858,0.0003683,0.0007046,0.0001506
+1007,1.596E-05,0.001806,0.0003724,0.0007593,0.0001116
+1008,1.595E-05,0.001801,0.0003243,0.0008643,0.0001198
+1009,1.553E-05,0.001824,0.0002956,0.0008704,0.0001379
+1010,1.645E-05,0.001873,0.0002913,0.0009237,0.0002011
+1011,2.194E-05,0.001961,0.0003742,0.0009389,0.0002185
+1012,2.141E-05,0.002086,0.0004574,0.0008614,0.0001495
+1013,2.095E-05,0.002241,0.0003745,0.0008766,8.174E-05
+1014,2.425E-05,0.00241,0.0003926,0.0009465,0.0001175
+1015,2.399E-05,0.00263,0.0004343,0.0009246,4.271E-05
+1016,2.664E-05,0.002876,0.0004535,0.0007967,5.71E-05
+1017,2.932E-05,0.003147,0.0004398,0.0007976,0.0001021
+1018,2.949E-05,0.003427,0.0004478,0.0009116,8.026E-05
+1019,3.219E-05,0.00371,0.0005162,0.0008905,6.825E-05
+1020,3.646E-05,0.003812,0.0005321,0.000811,5.585E-05
+1021,4.633E-05,0.004198,0.0005523,0.0007774,8.404E-05
+1022,4.666E-05,0.004045,0.0005783,0.0007426,0.0001578
+1023,5.218E-05,0.004174,0.0005971,0.0007154,9.433E-05
+1024,5.963E-05,0.00447,0.0005743,0.0006839,9.296E-05
+1025,6.438E-05,0.004408,0.0005715,0.0006813,2.595E-05
+1026,7.542E-05,0.00423,0.0005701,0.0006497,6.218E-05
+1027,8.12E-05,0.003978,0.0005924,0.000606,5.518E-05
+1028,8.567E-05,0.003435,0.0006075,0.0006364,3.293E-05
+1029,9.164E-05,0.003168,0.0005881,0.0005973,3.589E-05
+1030,9.557E-05,0.002904,0.0005899,0.0005609,6.657E-05
+1031,9.473E-05,0.002631,0.0005462,0.0005379,5.297E-05
+1032,9.548E-05,0.00238,0.0005559,0.0004166,6.627E-05
+1033,9.587E-05,0.002176,0.0005474,0.0003793,6.003E-05
+1034,9.335E-05,0.001989,0.000533,0.0004123,5.909E-05
+1035,9.252E-05,0.001841,0.0005437,0.0003954,8.615E-05
+1036,9.327E-05,0.001716,0.0005401,0.0003641,5.687E-05
+1037,9.297E-05,0.001604,0.0005162,0.000338,4.413E-05
+1038,9.171E-05,0.001512,0.0004924,0.0002823,6.413E-05
+1039,9.166E-05,0.001461,0.0004885,0.0002786,4.264E-05
+1040,9.221E-05,0.001429,0.0004894,0.0002977,5.689E-05
+1041,9.016E-05,0.001404,0.0004749,0.0002773,7.502E-05
+1042,8.883E-05,0.001514,0.0004735,0.0002794,5.949E-05
+1043,8.981E-05,0.001463,0.0004777,0.0002562,3.77E-05
+1044,8.986E-05,0.00154,0.0004874,0.0002322,2.775E-05
+1045,8.784E-05,0.001569,0.0004841,0.0002235,1.775E-05
+1046,8.903E-05,0.001496,0.0004858,0.0001957,5.34E-06
+1047,8.878E-05,0.001569,0.0005187,0.0001839,1.701E-05
+1048,8.901E-05,0.001646,0.0005307,0.0001923,2.766E-05
+1049,8.924E-05,0.001745,0.0005519,0.0001809,1.268E-05
+1050,8.832E-05,0.001677,0.0005749,0.0001752,9.72E-06
+1051,8.915E-05,0.001803,0.0005912,0.0001692,2.6E-05
+1052,8.814E-05,0.00216,0.0006278,0.0001514,2.61E-05
+1053,9.037E-05,0.002382,0.0006713,0.0001507,1.586E-05
+1054,8.95E-05,0.002635,0.000714,0.0001083,2.35E-05
+1055,9.187E-05,0.002914,0.0007565,0.0001056,2.758E-05
+1056,9.302E-05,0.002932,0.0008154,0.0001337,2.175E-05
+1057,9.334E-05,0.003257,0.0008865,0.0001285,3.728E-05
+1058,9.344E-05,0.004376,0.0009654,0.0001429,2.386E-05
+1059,9.481E-05,0.004789,0.001071,0.0001452,9.062E-06
+1060,9.551E-05,0.005176,0.001186,0.0001443,2.036E-05
+1061,9.647E-05,0.005561,0.001315,0.0001396,1.942E-05
+1062,9.716E-05,0.005856,0.001469,0.0001273,7.087E-06
+1063,9.94E-05,0.006065,0.00165,0.0001232,9.219E-06
+1064,0.0001008,0.005616,0.001847,0.0001304,1.854E-05
+1065,0.0001019,0.005477,0.002063,0.0001291,2.618E-05
+1066,0.0001035,0.005259,0.00231,0.0001178,1.602E-05
+1067,0.0001054,0.005042,0.002606,0.000112,1.263E-05
+1068,0.0001083,0.005203,0.002926,0.0001159,1.571E-05
+1069,0.0001112,0.004884,0.003264,0.000121,8.123E-06
+1070,0.0001144,0.004169,0.003631,0.0001185,8.744E-06
+1071,0.000118,0.003837,0.00404,0.0001142,1.38E-05
+1072,0.0001229,0.003542,0.004452,0.0001114,1.024E-05
+1073,0.0001276,0.003273,0.004878,0.0001087,1.626E-05
+1074,0.0001338,0.003326,0.005347,9.36E-05,2.457E-05
+1075,0.0001392,0.003125,0.005823,9.206E-05,2.217E-05
+1076,0.0001459,0.002953,0.006309,8.103E-05,1.218E-05
+1077,0.0001522,0.002791,0.0068,7.592E-05,5.492E-06
+1078,0.0001597,0.002674,0.007295,7.955E-05,7.701E-06
+1079,0.000168,0.002613,0.00781,8.065E-05,9.238E-06
+1080,0.0001752,0.002564,0.008387,8.298E-05,4.761E-06
+1081,0.000184,0.002533,0.009053,8.379E-05,4.41E-06
+1082,0.0001936,0.002292,0.009732,8.642E-05,1.295E-05
+1083,0.0002049,0.00227,0.01038,8.665E-05,1.358E-05
+1084,0.0002161,0.002381,0.011,9.01E-05,8.355E-06
+1085,0.0002299,0.002428,0.01163,9.154E-05,6.406E-06
+1086,0.000242,0.002501,0.01234,9.216E-05,2.986E-06
+1087,0.0002571,0.002592,0.01302,9.94E-05,2.777E-06
+1088,0.0002745,0.002461,0.01361,8.995E-05,9.885E-06
+1089,0.0002919,0.00262,0.01425,9.53E-05,9.04E-06
+1090,0.0003111,0.00306,0.01495,0.0001331,3.994E-06
+1091,0.0003316,0.003258,0.01568,0.0001464,5.908E-06
+1092,0.0003565,0.003507,0.01642,0.0001434,7.987E-06
+1093,0.0003832,0.003809,0.01713,0.0001561,1.323E-05
+1094,0.0004136,0.003375,0.01803,0.0001642,1.319E-05
+1095,0.000446,0.003706,0.01907,0.0001763,9.997E-06
+1096,0.0004834,0.005534,0.02008,0.0001642,9.565E-06
+1097,0.000523,0.006136,0.0212,0.0001755,7.08E-06
+1098,0.000523,0.006445,0.02176,0.0001787,4.927E-06
+1099,0.000523,0.006445,0.02176,0.0001787,4.927E-06
+1100,0.000523,0.006445,0.02176,0.0001787,4.927E-06



More information about the grass-commit mailing list