Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • orekit/rugged
  • sdinot/rugged
  • yzokras/rugged
  • youngcle/rugged-mod
4 results
Show changes
Showing
with 3806 additions and 158 deletions
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.raster;
import org.hipparchus.exception.LocalizedCoreFormats;
import org.hipparchus.exception.MathIllegalArgumentException;
import org.hipparchus.random.RandomGenerator;
import org.hipparchus.random.Well19937a;
import org.hipparchus.util.ArithmeticUtils;
import org.hipparchus.util.FastMath;
public class RandomLandscapeUpdater implements TileUpdater {
private double size;
private int n;
private double[][] heightMap;
/**
* @param baseH elevation of the base of DEM; unit = m
* @param initialScale
* @param reductionFactor for smoothing for low value (0.1) or not (0.5 for instance) the landscape
* @param seed
* @param size size in latitude / size in longitude (rad)
* @param n number of latitude / number of longitude
*/
public RandomLandscapeUpdater(double baseH, double initialScale, double reductionFactor,
long seed, double size, int n) {
if (!ArithmeticUtils.isPowerOfTwo(n - 1)) {
throw new MathIllegalArgumentException(LocalizedCoreFormats.SIMPLE_MESSAGE,
"tile size must be a power of two plus one");
}
this.size = size;
this.n = n;
// as we want to use this for testing and comparison purposes,
// and as we don't control when tiles are generated, we generate
// only ONCE a height map with continuity at the edges, and
// reuse this single height map for ALL generated tiles
heightMap = new double[n][n];
RandomGenerator random = new Well19937a(seed);
// initialize corners in diamond-square algorithm
heightMap[0][0] = baseH;
heightMap[0][n - 1] = baseH;
heightMap[n - 1][0] = baseH;
heightMap[n - 1][n - 1] = baseH;
double scale = initialScale;
for (int span = n - 1; span > 1; span = span / 2) {
// perform squares step
for (int i = span / 2; i < n; i += span) {
for (int j = span / 2; j < n; j += span) {
double middleH = mean(i - span / 2, j - span / 2,
i - span / 2, j + span / 2,
i + span / 2, j - span / 2,
i + span / 2, j + span / 2) +
scale * (random.nextDouble() - 0.5);
heightMap[i][j] = middleH;
}
}
// perform diamonds step
boolean flipFlop = false;
for (int i = 0; i < n - 1; i += span / 2) {
for (int j = flipFlop ? 0 : span / 2; j < n - 1; j += span) {
double middleH = mean(i - span / 2, j,
i + span / 2, j,
i, j - span / 2,
i, j + span / 2) +
scale * (random.nextDouble() - 0.5);
heightMap[i][j] = middleH;
if (i == 0) {
heightMap[n - 1][j] = middleH;
}
if (j == 0) {
heightMap[i][n - 1] = middleH;
}
}
flipFlop = !flipFlop;
}
// reduce scale
scale *= reductionFactor;
}
}
@Override
public void updateTile(double latitude, double longitude, UpdatableTile tile) {
double step = size / (n - 1);
double minLatitude = size * FastMath.floor(latitude / size);
double minLongitude = size * FastMath.floor(longitude / size);
tile.setGeometry(minLatitude, minLongitude, step, step, n, n);
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
tile.setElevation(i, j, heightMap[i][j]);
}
}
}
private double mean(int i1, int j1, int i2, int j2, int i3, int j3, int i4, int j4) {
return (heightMap[(i1 + n) % n][(j1 + n) % n] +
heightMap[(i2 + n) % n][(j2 + n) % n] +
heightMap[(i3 + n) % n][(j3 + n) % n] +
heightMap[(i4 + n) % n][(j4 + n) % n]) / 4;
}
}
/* Copyright 2013-2014 CS Systèmes d'Information
* Licensed to CS Systèmes d'Information (CS) under one or more
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
......@@ -14,19 +14,18 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.core.raster;
package org.orekit.rugged.raster;
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
import org.apache.commons.math3.util.FastMath;
import org.hipparchus.geometry.euclidean.threed.Vector3D;
import org.hipparchus.util.FastMath;
import org.hipparchus.util.MathUtils;
import org.junit.Assert;
import org.junit.Test;
import org.orekit.bodies.GeodeticPoint;
import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.api.RuggedMessages;
import org.orekit.rugged.core.raster.SimpleTile;
import org.orekit.rugged.core.raster.SimpleTileFactory;
import org.orekit.rugged.core.raster.Tile;
import org.orekit.rugged.core.raster.Tile.Location;
import org.orekit.rugged.errors.RuggedException;
import org.orekit.rugged.errors.RuggedMessages;
import org.orekit.rugged.raster.Tile.Location;
import org.orekit.rugged.utils.NormalizedGeodeticPoint;
public class SimpleTileTest {
......@@ -65,7 +64,7 @@ public class SimpleTileTest {
}
@Test
public void testUpdate() throws RuggedException {
public void testUpdate() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(1.0, 2.0, 0.1, 0.2, 100, 200);
......@@ -89,7 +88,7 @@ public class SimpleTileTest {
Assert.assertEquals(Location.WEST, tile.getLocation( 6.0, 1.0));
Assert.assertEquals(Location.NORTH_WEST, tile.getLocation(12.0, 1.0));
Assert.assertEquals(Location.SOUTH, tile.getLocation( 0.0, 22.0));
Assert.assertEquals(Location.IN_TILE, tile.getLocation( 6.0, 22.0));
Assert.assertEquals(Location.HAS_INTERPOLATION_NEIGHBORS, tile.getLocation( 6.0, 22.0));
Assert.assertEquals(Location.NORTH, tile.getLocation(12.0, 22.0));
Assert.assertEquals(Location.SOUTH_EAST, tile.getLocation( 0.0, 43.0));
Assert.assertEquals(Location.EAST, tile.getLocation( 6.0, 43.0));
......@@ -103,7 +102,7 @@ public class SimpleTileTest {
}
@Test
public void testOutOfBoundsIndices() throws RuggedException {
public void testOutOfBoundsIndices() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(1.0, 2.0, 0.1, 0.2, 100, 200);
......@@ -115,6 +114,42 @@ public class SimpleTileTest {
checkOutOfBound( 50, 200, tile);
}
@Test
public void testIndexShift() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(1.0, 2.0, 0.1, 0.2, 100, 200);
tile.setElevation(50, 100, 1000.0);
tile.tileUpdateCompleted();
// indices correspond to cells centers
double latCenterColumn50 = tile.getLatitudeAtIndex(50);
double latCenterColumn51 = tile.getLatitudeAtIndex(51);
double lonCenterRow23 = tile.getLongitudeAtIndex(23);
double lonCenterRow24 = tile.getLongitudeAtIndex(24);
// getLatitudeIndex shift indices 1/2 cell, so that
// the specified latitude is always between index and index+1
// so despite latWestColumn51 is very close to column 51 center,
// getLatitudeIndex should return 50
double latWestColumn51 = 0.001 * latCenterColumn50 + 0.999 * latCenterColumn51;
int retrievedLatIndex = tile.getFloorLatitudeIndex(latWestColumn51);
Assert.assertEquals(50, retrievedLatIndex);
Assert.assertTrue(tile.getLatitudeAtIndex(retrievedLatIndex) < latWestColumn51);
Assert.assertTrue(latWestColumn51 < tile.getLatitudeAtIndex(retrievedLatIndex + 1));
// getLongitudeIndex shift indices 1/2 cell, so that
// the specified longitude is always between index and index+1
// so despite lonSouthRow24 is very close to row 24 center,
// getLongitudeIndex should return 23
double lonSouthRow24 = 0.001 * lonCenterRow23 + 0.999 * lonCenterRow24;
int retrievedLonIndex = tile.getFloorLongitudeIndex(lonSouthRow24);
Assert.assertEquals(23, retrievedLonIndex);
Assert.assertTrue(tile.getLongitudeAtIndex(retrievedLonIndex) < lonSouthRow24);
Assert.assertTrue(lonSouthRow24 < tile.getLongitudeAtIndex(retrievedLonIndex + 1));
}
private void checkOutOfBound(int i, int j, Tile tile) {
try {
tile.setElevation(i, j, 1000.0);
......@@ -128,7 +163,7 @@ public class SimpleTileTest {
}
@Test
public void testInterpolation() throws RuggedException {
public void testInterpolation() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 1.0, 1.0, 50, 50);
tile.setElevation(20, 14, 91.0);
......@@ -137,12 +172,13 @@ public class SimpleTileTest {
tile.setElevation(21, 15, 95.0);
tile.tileUpdateCompleted();
Assert.assertEquals(150.5, tile.interpolateElevation(20.0, 14.5), 1.0e-10);
Assert.assertEquals(128.5, tile.interpolateElevation(21.0, 14.5), 1.0e-10);
Assert.assertEquals(128.5, tile.interpolateElevation(FastMath.nextDown(21.0), 14.5), 1.0e-10);
Assert.assertTrue(Double.isNaN(tile.interpolateElevation(FastMath.nextUp(21.0), 14.5)));
Assert.assertEquals(146.1, tile.interpolateElevation(20.2, 14.5), 1.0e-10);
}
@Test
public void testInterpolationWithinTolerance() throws RuggedException {
public void testInterpolationWithinTolerance() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 1.0, 1.0, 2, 2);
tile.setElevation(0, 0, 91.0);
......@@ -150,7 +186,7 @@ public class SimpleTileTest {
tile.setElevation(1, 0, 162.0);
tile.setElevation(1, 1, 95.0);
tile.tileUpdateCompleted();
// the following points are 1/16 pixel out of tile
// the following points are 1/16 cell out of tile
Assert.assertEquals(151.875, tile.interpolateElevation(-0.0625, 0.5), 1.0e-10);
Assert.assertEquals(127.125, tile.interpolateElevation( 1.0625, 0.5), 1.0e-10);
Assert.assertEquals(124.875, tile.interpolateElevation( 0.5, -0.0625), 1.0e-10);
......@@ -158,7 +194,7 @@ public class SimpleTileTest {
}
@Test
public void testInterpolationOutOfTolerance() throws RuggedException {
public void testInterpolationOutOfTolerance() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 1.0, 1.0, 2, 2);
tile.setElevation(0, 0, 91.0);
......@@ -166,7 +202,7 @@ public class SimpleTileTest {
tile.setElevation(1, 0, 162.0);
tile.setElevation(1, 1, 95.0);
tile.tileUpdateCompleted();
// the following points are 3/16 pixel out of tile
// the following points are 3/16 cell out of tile
checkOutOfBound(-0.1875, 0.5, tile);
checkOutOfBound( 1.1875, 0.5, tile);
checkOutOfBound( 0.5, -0.1875, tile);
......@@ -174,7 +210,35 @@ public class SimpleTileTest {
}
@Test
public void testPixelIntersection() throws RuggedException {
public void testCellIntersection() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 0.025, 0.025, 50, 50);
tile.setElevation(20, 14, 91.0);
tile.setElevation(20, 15, 210.0);
tile.setElevation(21, 14, 162.0);
tile.setElevation(21, 15, 95.0);
tile.tileUpdateCompleted();
NormalizedGeodeticPoint gpA = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(20) + 0.1 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.2 * tile.getLongitudeStep(),
300.0, tile.getLongitudeAtIndex(14));
NormalizedGeodeticPoint gpB = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(20) + 0.7 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.9 * tile.getLongitudeStep(),
10.0, tile.getLongitudeAtIndex(14));
NormalizedGeodeticPoint gpIAB = tile.cellIntersection(gpA, los(gpA, gpB), 20, 14);
checkInLine(gpA, gpB, gpIAB);
checkOnTile(tile, gpIAB);
NormalizedGeodeticPoint gpIBA = tile.cellIntersection(gpB, los(gpB, gpA), 20, 14);
checkInLine(gpA, gpB, gpIBA);
checkOnTile(tile, gpIBA);
Assert.assertEquals(gpIAB.getLatitude(), gpIBA.getLatitude(), 1.0e-10);
Assert.assertEquals(gpIAB.getLongitude(), gpIBA.getLongitude(), 1.0e-10);
Assert.assertEquals(gpIAB.getAltitude(), gpIBA.getAltitude(), 1.0e-10);
}
@Test
public void testCellIntersection2PiWrapping() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 0.025, 0.025, 50, 50);
tile.setElevation(20, 14, 91.0);
......@@ -182,16 +246,16 @@ public class SimpleTileTest {
tile.setElevation(21, 14, 162.0);
tile.setElevation(21, 15, 95.0);
tile.tileUpdateCompleted();
GeodeticPoint gpA = new GeodeticPoint(tile.getLatitudeAtIndex(20) + 0.1 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.2 * tile.getLongitudeStep(),
300.0);
GeodeticPoint gpB = new GeodeticPoint(tile.getLatitudeAtIndex(20) + 0.7 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.9 * tile.getLongitudeStep(),
10.0);
GeodeticPoint gpIAB = tile.pixelIntersection(gpA, los(gpA, gpB), 20, 14);
NormalizedGeodeticPoint gpA = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(20) + 0.1 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.2 * tile.getLongitudeStep(),
300.0, +4 * FastMath.PI);
NormalizedGeodeticPoint gpB = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(20) + 0.7 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.9 * tile.getLongitudeStep(),
10.0, +4 * FastMath.PI);
NormalizedGeodeticPoint gpIAB = tile.cellIntersection(gpA, los(gpA, gpB), 20, 14);
checkInLine(gpA, gpB, gpIAB);
checkOnTile(tile, gpIAB);
GeodeticPoint gpIBA = tile.pixelIntersection(gpB, los(gpB, gpA), 20, 14);
NormalizedGeodeticPoint gpIBA = tile.cellIntersection(gpB, los(gpB, gpA), 20, 14);
checkInLine(gpA, gpB, gpIBA);
checkOnTile(tile, gpIBA);
......@@ -202,7 +266,7 @@ public class SimpleTileTest {
}
@Test
public void testPixelIntersection2Solutions() throws RuggedException {
public void testCellIntersection2Solutions() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 0.025, 0.025, 50, 50);
tile.setElevation(20, 14, 91.0);
......@@ -210,19 +274,19 @@ public class SimpleTileTest {
tile.setElevation(21, 14, 162.0);
tile.setElevation(21, 15, 95.0);
tile.tileUpdateCompleted();
GeodeticPoint gpA = new GeodeticPoint(tile.getLatitudeAtIndex(20) + 0.1 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.2 * tile.getLongitudeStep(),
120.0);
GeodeticPoint gpB = new GeodeticPoint(tile.getLatitudeAtIndex(20) + 0.7 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.9 * tile.getLongitudeStep(),
130.0);
NormalizedGeodeticPoint gpA = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(20) + 0.1 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.2 * tile.getLongitudeStep(),
120.0, tile.getLongitudeAtIndex(14));
NormalizedGeodeticPoint gpB = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(20) + 0.7 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.9 * tile.getLongitudeStep(),
130.0, tile.getLongitudeAtIndex(14));
// the line from gpA to gpB should traverse the DEM twice within the tile
// we use the points in the two different orders to retrieve both solutions
GeodeticPoint gpIAB = tile.pixelIntersection(gpA, los(gpA, gpB), 20, 14);
NormalizedGeodeticPoint gpIAB = tile.cellIntersection(gpA, los(gpA, gpB), 20, 14);
checkInLine(gpA, gpB, gpIAB);
checkOnTile(tile, gpIAB);
GeodeticPoint gpIBA = tile.pixelIntersection(gpB, los(gpB, gpA), 20, 14);
NormalizedGeodeticPoint gpIBA = tile.cellIntersection(gpB, los(gpB, gpA), 20, 14);
checkInLine(gpA, gpB, gpIBA);
checkOnTile(tile, gpIBA);
......@@ -233,7 +297,7 @@ public class SimpleTileTest {
}
@Test
public void testPixelIntersectionNoSolutions() throws RuggedException {
public void testCellIntersectionNoSolutions() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 0.025, 0.025, 50, 50);
tile.setElevation(20, 14, 91.0);
......@@ -241,19 +305,19 @@ public class SimpleTileTest {
tile.setElevation(21, 14, 162.0);
tile.setElevation(21, 15, 95.0);
tile.tileUpdateCompleted();
GeodeticPoint gpA = new GeodeticPoint(tile.getLatitudeAtIndex(20) + 0.1 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.2 * tile.getLongitudeStep(),
180.0);
GeodeticPoint gpB = new GeodeticPoint(tile.getLatitudeAtIndex(20) + 0.7 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.9 * tile.getLongitudeStep(),
190.0);
NormalizedGeodeticPoint gpA = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(20) + 0.1 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.2 * tile.getLongitudeStep(),
180.0, tile.getLongitudeAtIndex(14));
NormalizedGeodeticPoint gpB = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(20) + 0.7 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(14) + 0.9 * tile.getLongitudeStep(),
190.0, tile.getLongitudeAtIndex(14));
Assert.assertNull(tile.pixelIntersection(gpA, los(gpA, gpB), 20, 14));
Assert.assertNull(tile.cellIntersection(gpA, los(gpA, gpB), 20, 14));
}
@Test
public void testPixelIntersectionLinearOnly() throws RuggedException {
public void testCellIntersectionLinearOnly() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 0.025, 0.025, 50, 50);
tile.setElevation(0, 0, 30.0);
......@@ -261,17 +325,17 @@ public class SimpleTileTest {
tile.setElevation(1, 0, 40.0);
tile.setElevation(1, 1, 40.0);
tile.tileUpdateCompleted();
GeodeticPoint gpA = new GeodeticPoint(tile.getLatitudeAtIndex(0) + 0.25 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
50.0);
GeodeticPoint gpB = new GeodeticPoint(tile.getLatitudeAtIndex(0) + 0.75 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
20.0);
GeodeticPoint gpIAB = tile.pixelIntersection(gpA, los(gpA, gpB), 0, 0);
NormalizedGeodeticPoint gpA = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(0) + 0.25 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
50.0, tile.getLongitudeAtIndex(0));
NormalizedGeodeticPoint gpB = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(0) + 0.75 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
20.0, tile.getLongitudeAtIndex(0));
NormalizedGeodeticPoint gpIAB = tile.cellIntersection(gpA, los(gpA, gpB), 0, 0);
checkInLine(gpA, gpB, gpIAB);
checkOnTile(tile, gpIAB);
GeodeticPoint gpIBA = tile.pixelIntersection(gpB, los(gpB, gpA), 0, 0);
NormalizedGeodeticPoint gpIBA = tile.cellIntersection(gpB, los(gpB, gpA), 0, 0);
checkInLine(gpA, gpB, gpIBA);
checkOnTile(tile, gpIBA);
......@@ -282,7 +346,7 @@ public class SimpleTileTest {
}
@Test
public void testPixelIntersectionLinearIntersectionOutside() throws RuggedException {
public void testCellIntersectionLinearIntersectionOutside() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 0.025, 0.025, 50, 50);
tile.setElevation(0, 0, 30.0);
......@@ -290,19 +354,19 @@ public class SimpleTileTest {
tile.setElevation(1, 0, 40.0);
tile.setElevation(1, 1, 40.0);
tile.tileUpdateCompleted();
GeodeticPoint gpA = new GeodeticPoint(tile.getLatitudeAtIndex(0) + 0.25 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
45.0);
GeodeticPoint gpB = new GeodeticPoint(tile.getLatitudeAtIndex(0) + 0.75 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
55.0);
NormalizedGeodeticPoint gpA = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(0) + 0.25 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
45.0, tile.getLongitudeAtIndex(0));
NormalizedGeodeticPoint gpB = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(0) + 0.75 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
55.0, tile.getLongitudeAtIndex(0));
Assert.assertNull(tile.pixelIntersection(gpA, los(gpA, gpB), 0, 0));
Assert.assertNull(tile.cellIntersection(gpA, los(gpA, gpB), 0, 0));
}
@Test
public void testPixelIntersectionLinearNoIntersection() throws RuggedException {
public void testCellIntersectionLinearNoIntersection() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 0.025, 0.025, 50, 50);
tile.setElevation(0, 0, 30.0);
......@@ -310,19 +374,19 @@ public class SimpleTileTest {
tile.setElevation(1, 0, 40.0);
tile.setElevation(1, 1, 40.0);
tile.tileUpdateCompleted();
GeodeticPoint gpA = new GeodeticPoint(tile.getLatitudeAtIndex(0) + 0.25 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
45.0);
GeodeticPoint gpB = new GeodeticPoint(tile.getLatitudeAtIndex(0) + 0.75 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
50.0);
NormalizedGeodeticPoint gpA = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(0) + 0.25 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
45.0, tile.getLongitudeAtIndex(0));
NormalizedGeodeticPoint gpB = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(0) + 0.75 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
50.0, tile.getLongitudeAtIndex(0));
Assert.assertNull(tile.pixelIntersection(gpA, los(gpA, gpB), 0, 0));
Assert.assertNull(tile.cellIntersection(gpA, los(gpA, gpB), 0, 0));
}
@Test
public void testPixelIntersectionConstant0() throws RuggedException {
public void testCellIntersectionConstant0() {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 0.025, 0.025, 50, 50);
tile.setElevation(0, 0, 30.0);
......@@ -330,17 +394,17 @@ public class SimpleTileTest {
tile.setElevation(1, 0, 40.0);
tile.setElevation(1, 1, 40.0);
tile.tileUpdateCompleted();
GeodeticPoint gpA = new GeodeticPoint(tile.getLatitudeAtIndex(0) + 0.25 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
32.5);
GeodeticPoint gpB = new GeodeticPoint(tile.getLatitudeAtIndex(0) + 0.75 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
37.5);
GeodeticPoint gpIAB = tile.pixelIntersection(gpA, los(gpA, gpB), 0, 0);
NormalizedGeodeticPoint gpA = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(0) + 0.25 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
32.5, tile.getLongitudeAtIndex(0));
NormalizedGeodeticPoint gpB = new NormalizedGeodeticPoint(tile.getLatitudeAtIndex(0) + 0.75 * tile.getLatitudeStep(),
tile.getLongitudeAtIndex(0) + 0.50 * tile.getLongitudeStep(),
37.5, tile.getLongitudeAtIndex(0));
NormalizedGeodeticPoint gpIAB = tile.cellIntersection(gpA, los(gpA, gpB), 0, 0);
checkInLine(gpA, gpB, gpIAB);
checkOnTile(tile, gpIAB);
GeodeticPoint gpIBA = tile.pixelIntersection(gpB, los(gpB, gpA), 0, 0);
NormalizedGeodeticPoint gpIBA = tile.cellIntersection(gpB, los(gpB, gpA), 0, 0);
checkInLine(gpA, gpB, gpIBA);
checkOnTile(tile, gpIBA);
......@@ -398,16 +462,14 @@ public class SimpleTileTest {
1.0e-10);
Assert.assertEquals(gpI.getLongitude(),
gpA.getLongitude() * (1 - t) + gpB.getLongitude() * t,
MathUtils.normalizeAngle(gpA.getLongitude() * (1 - t) + gpB.getLongitude() * t, gpI.getLongitude()),
1.0e-10);
}
private void checkOnTile(Tile tile, GeodeticPoint gpI)
throws RuggedException {
private void checkOnTile(Tile tile, GeodeticPoint gpI) {
Assert.assertEquals(gpI.getAltitude(),
tile.interpolateElevation(gpI.getLatitude(), gpI.getLongitude()),
1.0e-10);
}
}
/* Copyright 2013-2014 CS Systèmes d'Information
* Licensed to CS Systèmes d'Information (CS) under one or more
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
......@@ -14,21 +14,18 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.core.raster;
package org.orekit.rugged.raster;
import org.apache.commons.math3.random.RandomGenerator;
import org.apache.commons.math3.random.Well19937a;
import org.apache.commons.math3.util.FastMath;
import org.hipparchus.random.RandomGenerator;
import org.hipparchus.random.Well19937a;
import org.hipparchus.util.FastMath;
import org.junit.Assert;
import org.junit.Test;
import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.core.raster.SimpleTile;
import org.orekit.rugged.core.raster.TilesCache;
public class TilesCacheTest {
@Test
public void testSingleTile() throws RuggedException {
public void testSingleTile() {
CountingFactory factory = new CountingFactory();
TilesCache<SimpleTile> cache = new TilesCache<SimpleTile>(factory,
new CheckedPatternElevationUpdater(FastMath.toRadians(3.0), 11, 10.0, 20.0), 1000);
......@@ -43,7 +40,7 @@ public class TilesCacheTest {
}
@Test
public void testEviction() throws RuggedException {
public void testEviction() {
CountingFactory factory = new CountingFactory();
TilesCache<SimpleTile> cache = new TilesCache<SimpleTile>(factory,
new CheckedPatternElevationUpdater(FastMath.toRadians(1.0), 11, 10.0, 20.0), 12);
......@@ -65,6 +62,13 @@ public class TilesCacheTest {
}
Assert.assertEquals(12, factory.getCount());
// ensure the (0.0, 0.0) tile is the least recently used one
for (int i = 0; i < 4; ++i) {
for (int j = 0; j < 3; ++j) {
cache.getTile(FastMath.toRadians(0.5 + j), FastMath.toRadians(0.5 + i));
}
}
// ask for one point outside of the covered area, to evict the (0.0, 0.0) tile
cache.getTile(FastMath.toRadians(20.5), FastMath.toRadians(30.5));
Assert.assertEquals(13, factory.getCount());
......@@ -77,7 +81,7 @@ public class TilesCacheTest {
cache.getTile(FastMath.toRadians(20.5), FastMath.toRadians(30.5));
Assert.assertEquals(14, factory.getCount());
// evict all the tiles, goind to a completely different zone
// evict all the tiles, going to a completely different zone
for (int i = 0; i < 4; ++i) {
for (int j = 0; j < 3; ++j) {
cache.getTile(FastMath.toRadians(40.5 + i), FastMath.toRadians(90.5 + j));
......@@ -88,7 +92,7 @@ public class TilesCacheTest {
}
@Test
public void testExactEnd() throws RuggedException {
public void testExactEnd() {
CountingFactory factory = new CountingFactory();
TilesCache<SimpleTile> cache =
new TilesCache<SimpleTile>(factory,
......@@ -104,7 +108,7 @@ public class TilesCacheTest {
Assert.assertEquals(10.0, regularTile.getMinElevation(), 1.0e-10);
Assert.assertEquals(20.0, regularTile.getMaxElevation(), 1.0e-10);
SimpleTile tileAtEnd = cache.getTile(0.250, 0.625);
SimpleTile tileAtEnd = cache.getTile(0.234375, 0.609375);
Assert.assertEquals(1, factory.getCount());
Assert.assertEquals(0.125, tileAtEnd.getMinimumLatitude(), 1.0e-10);
Assert.assertEquals(0.5, tileAtEnd.getMinimumLongitude(), 1.0e-10);
......@@ -116,7 +120,7 @@ public class TilesCacheTest {
}
@Test
public void testNonContiguousFill() throws RuggedException {
public void testNonContiguousFill() {
CountingFactory factory = new CountingFactory();
TilesCache<SimpleTile> cache =
new TilesCache<SimpleTile>(factory,
......
/* Copyright 2013-2014 CS Systèmes d'Information
* Licensed to CS Systèmes d'Information (CS) under one or more
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
......@@ -14,13 +14,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.core.raster;
package org.orekit.rugged.raster;
import org.apache.commons.math3.util.FastMath;
import org.hipparchus.util.FastMath;
import org.orekit.bodies.GeodeticPoint;
import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.api.TileUpdater;
import org.orekit.rugged.api.UpdatableTile;
import org.orekit.utils.Constants;
public class VolcanicConeElevationUpdater implements TileUpdater {
......@@ -40,25 +37,24 @@ public class VolcanicConeElevationUpdater implements TileUpdater {
this.n = n;
}
public void updateTile(double latitude, double longitude, UpdatableTile tile)
throws RuggedException {
public void updateTile(double latitude, double longitude, UpdatableTile tile) {
double step = size / (n - 1);
double minLatitude = size * FastMath.floor(latitude / size);
double minLongitude = size * FastMath.floor(longitude / size);
double sinSlope = FastMath.sin(slope);
tile.setGeometry(minLatitude, minLongitude, step, step, n, n);
for (int i = 0; i < n; ++i) {
double pixelLatitude = minLatitude + i * step;
double cellLatitude = minLatitude + i * step;
for (int j = 0; j < n; ++j) {
double pixelLongitude = minLongitude + j * step;
double cellLongitude = minLongitude + j * step;
double distance = Constants.WGS84_EARTH_EQUATORIAL_RADIUS *
FastMath.hypot(pixelLatitude - summit.getLatitude(),
pixelLongitude - summit.getLongitude());
FastMath.hypot(cellLatitude - summit.getLatitude(),
cellLongitude - summit.getLongitude());
double altitude = FastMath.max(summit.getAltitude() - distance * sinSlope,
base);
tile.setElevation(i, j, altitude);
}
}
}
}
package org.orekit.rugged.refraction;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.File;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Stream;
import org.hipparchus.analysis.differentiation.Derivative;
import org.hipparchus.geometry.euclidean.threed.FieldVector3D;
import org.hipparchus.geometry.euclidean.threed.Rotation;
import org.hipparchus.geometry.euclidean.threed.RotationConvention;
import org.hipparchus.geometry.euclidean.threed.Vector3D;
import org.hipparchus.util.FastMath;
import org.junit.Assert;
import org.junit.Test;
import org.orekit.bodies.BodyShape;
import org.orekit.bodies.GeodeticPoint;
import org.orekit.data.DataContext;
import org.orekit.data.DirectoryCrawler;
import org.orekit.frames.Frame;
import org.orekit.frames.FramesFactory;
import org.orekit.models.earth.ReferenceEllipsoid;
import org.orekit.orbits.Orbit;
import org.orekit.rugged.TestUtils;
import org.orekit.rugged.api.AlgorithmId;
import org.orekit.rugged.api.BodyRotatingFrameId;
import org.orekit.rugged.api.EllipsoidId;
import org.orekit.rugged.api.InertialFrameId;
import org.orekit.rugged.api.Rugged;
import org.orekit.rugged.api.RuggedBuilder;
import org.orekit.rugged.errors.RuggedException;
import org.orekit.rugged.errors.RuggedMessages;
import org.orekit.rugged.linesensor.LineDatation;
import org.orekit.rugged.linesensor.LineSensor;
import org.orekit.rugged.linesensor.LinearLineDatation;
import org.orekit.rugged.linesensor.SensorPixel;
import org.orekit.rugged.los.LOSBuilder;
import org.orekit.rugged.los.TimeDependentLOS;
import org.orekit.rugged.raster.RandomLandscapeUpdater;
import org.orekit.rugged.raster.TileUpdater;
import org.orekit.rugged.utils.DerivativeGenerator;
import org.orekit.rugged.utils.GeodeticUtilities;
import org.orekit.time.AbsoluteDate;
import org.orekit.time.TimeScalesFactory;
import org.orekit.utils.AngularDerivativesFilter;
import org.orekit.utils.CartesianDerivativesFilter;
import org.orekit.utils.Constants;
import org.orekit.utils.IERSConventions;
import org.orekit.utils.ParameterDriver;
import org.orekit.utils.TimeStampedAngularCoordinates;
import org.orekit.utils.TimeStampedPVCoordinates;
public class AtmosphericRefractionTest {
@Test
public void testAtmosphericRefractionCorrection() throws URISyntaxException {
String sensorName = "line";
int dimension = 4000;
RuggedBuilder builder = initRuggedForAtmosphericTests(dimension, sensorName);
// Build Rugged without atmospheric refraction model
Rugged ruggedWithout = builder.build();
// Defines atmospheric refraction model (with the default multi layers model)
AtmosphericRefraction atmosphericRefraction = new MultiLayerModel(ruggedWithout.getEllipsoid());
int pixelStep = 100;
int lineStep = 100;
atmosphericRefraction.setGridSteps(pixelStep, lineStep);
// Build Rugged with atmospheric refraction model
builder.setRefractionCorrection(atmosphericRefraction);
Rugged ruggedWith = builder.build();
// For test coverage
assertTrue(ruggedWith.getRefractionCorrection().getClass().isInstance(new MultiLayerModel(ruggedWith.getEllipsoid())));
LineSensor lineSensor = ruggedWithout.getLineSensor(sensorName);
int minLine = (int) FastMath.floor(lineSensor.getLine(ruggedWithout.getMinDate()));
int maxLine = (int) FastMath.ceil(lineSensor.getLine(ruggedWithout.getMaxDate()));
final double pixelThreshold = 1.e-3;
final double lineThreshold = 1.e-2;
final double epsilonPixel = pixelThreshold;
final double epsilonLine = lineThreshold;
double earthRadius = ruggedWithout.getEllipsoid().getEquatorialRadius();
// Direct loc on a line WITHOUT and WITH atmospheric correction
// ============================================================
double chosenLine = 200.;
GeodeticPoint[] gpWithoutAtmosphericRefractionCorrection = ruggedWithout.directLocation(sensorName, chosenLine);
GeodeticPoint[] gpWithAtmosphericRefractionCorrection = ruggedWith.directLocation(sensorName, chosenLine);
// Check the shift on the ground due to atmospheric correction
for (int i = 0; i < gpWithAtmosphericRefractionCorrection.length; i++) {
double currentRadius = earthRadius + (gpWithAtmosphericRefractionCorrection[i].getAltitude()+ gpWithoutAtmosphericRefractionCorrection[i].getAltitude())/2.;
double distance = GeodeticUtilities.computeDistanceInMeter(currentRadius, gpWithAtmosphericRefractionCorrection[i], gpWithoutAtmosphericRefractionCorrection[i]);
// Check if the distance is not 0 and < 2m
Assert.assertTrue(distance > 0.0);
Assert.assertTrue(distance < 2.);
}
// Inverse loc WITH atmospheric correction
// ==========================================================================
for (int i = 0; i < gpWithAtmosphericRefractionCorrection.length; i++) {
// to check if we go back to the initial point when taking the geodetic point with atmospheric correction
GeodeticPoint gpWith = gpWithAtmosphericRefractionCorrection[i];
SensorPixel sensorPixelReverseWith = ruggedWith.inverseLocation(sensorName, gpWith, minLine, maxLine);
if (sensorPixelReverseWith != null) {
assertEquals(i, sensorPixelReverseWith.getPixelNumber(), epsilonPixel);
assertEquals(chosenLine, sensorPixelReverseWith.getLineNumber(), epsilonLine);
} else {
fail("Inverse location failed for pixel " + i + " with atmospheric refraction correction for geodetic point computed with" );
}
} // end loop on pixel i
// For test coverage
double dummyLat = gpWithAtmosphericRefractionCorrection[0].getLatitude() + FastMath.PI/4.;
double dummyLon = gpWithAtmosphericRefractionCorrection[0].getLongitude() - FastMath.PI/4.;
GeodeticPoint dummyGP = new GeodeticPoint(dummyLat, dummyLon, 0.);
try {
ruggedWith.inverseLocation(sensorName, dummyGP, minLine, maxLine);
Assert.fail("an exeption should have been thrown");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.SENSOR_PIXEL_NOT_FOUND_IN_RANGE_LINES, re.getSpecifier());
}
try {
ruggedWith.inverseLocation(sensorName,
gpWithAtmosphericRefractionCorrection[0],
210, maxLine);
Assert.fail("an exeption should have been thrown");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.SENSOR_PIXEL_NOT_FOUND_IN_RANGE_LINES, re.getSpecifier());
}
try {
ruggedWith.inverseLocation(sensorName,
gpWithAtmosphericRefractionCorrection[0],
minLine, 190);
Assert.fail("an exeption should have been thrown");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.SENSOR_PIXEL_NOT_FOUND_IN_RANGE_LINES, re.getSpecifier());
}
}
private RuggedBuilder initRuggedForAtmosphericTests(final int dimension, final String sensorName) throws URISyntaxException {
String path = getClass().getClassLoader().getResource("orekit-data").toURI().getPath();
DataContext.getDefault().getDataProvidersManager().addProvider(new DirectoryCrawler(new File(path)));
final BodyShape earth = TestUtils.createEarth();
final Orbit orbit = TestUtils.createOrbit(Constants.EIGEN5C_EARTH_MU);
// one line sensor
// position: 1.5m in front (+X) and 20 cm above (-Z) of the S/C center of mass
// los: swath in the (YZ) plane, looking at 5° roll, 2.6" per pixel
Vector3D position = new Vector3D(1.5, 0, -0.2);
TimeDependentLOS los = TestUtils.createLOSPerfectLine(new Rotation(Vector3D.PLUS_I,
FastMath.toRadians(5.0),
RotationConvention.VECTOR_OPERATOR).applyTo(Vector3D.PLUS_K),
Vector3D.PLUS_I,
FastMath.toRadians((dimension/2.) * 2.6 / 3600.0), dimension).build();
// With the orbit (795km), the size of the pixel on the ground is around : 10m
// linear datation model: at reference time we get the middle line, and the rate is one line every 1.5ms
AbsoluteDate crossing = new AbsoluteDate("2012-01-01T12:30:00.000", TimeScalesFactory.getUTC());
LineDatation lineDatation = new LinearLineDatation(crossing, dimension / 2, 1.0 / 1.5e-3);
int firstLine = 0;
int lastLine = dimension;
LineSensor lineSensor = new LineSensor(sensorName, lineDatation, position, los);
AbsoluteDate minDate = lineSensor.getDate(firstLine).shiftedBy(-1.0);
AbsoluteDate maxDate = lineSensor.getDate(lastLine).shiftedBy(+1.0);
TileUpdater updater = new RandomLandscapeUpdater(800.0, 9000.0, 0.1, 0xf0a401650191f9f6l, FastMath.toRadians(2.0), 257);
RuggedBuilder builder = new RuggedBuilder().
setDigitalElevationModel(updater, 8).
setAlgorithm(AlgorithmId.DUVENHAGE).
setEllipsoid(EllipsoidId.WGS84, BodyRotatingFrameId.ITRF).
setTimeSpan(minDate, maxDate, 0.001, 5.0).
setTrajectory(InertialFrameId.EME2000,
TestUtils.orbitToPV(orbit, earth, minDate.shiftedBy(-1.0), maxDate.shiftedBy(+1.0), 0.25),
8, CartesianDerivativesFilter.USE_PV,
TestUtils.orbitToQ(orbit, earth, minDate.shiftedBy(-1.0), maxDate.shiftedBy(+1.0), 0.25),
2, AngularDerivativesFilter.USE_R).
setLightTimeCorrection(false).
setAberrationOfLightCorrection(false).
addLineSensor(lineSensor);
return builder;
}
/**
* Test for issue #391
*/
@Test
public void testInverseLocationMargin() throws URISyntaxException {
String path = getClass().getClassLoader().getResource("orekit-data").toURI().getPath();
DataContext.getDefault().getDataProvidersManager().addProvider(new DirectoryCrawler(new File(path)));
RuggedBuilder builder = new RuggedBuilder();
Frame ecf = FramesFactory.getITRF(IERSConventions.IERS_2010, true);
builder.setEllipsoid(ReferenceEllipsoid.getWgs84(ecf));
MultiLayerModel atmosphere = new MultiLayerModel(builder.getEllipsoid());
builder.setRefractionCorrection(atmosphere);
builder.setLightTimeCorrection(true);
builder.setAberrationOfLightCorrection(true);
builder.setAlgorithm(AlgorithmId.IGNORE_DEM_USE_ELLIPSOID);
AbsoluteDate start = AbsoluteDate.ARBITRARY_EPOCH;
AbsoluteDate end = start.shiftedBy(10);
AbsoluteDate middle = start.shiftedBy(end.durationFrom(start) / 2);
builder.setTimeSpan(start, end, 1e-3, 1e-3);
final double h = 500e3;
Vector3D p = new Vector3D(6378137 + h, 0, 0);
Vector3D v = Vector3D.ZERO;
List<TimeStampedPVCoordinates> pvs = Arrays.asList(
new TimeStampedPVCoordinates(start, p, v),
new TimeStampedPVCoordinates(end, p, v));
Rotation rotation = new Rotation(Vector3D.MINUS_I, Vector3D.MINUS_K, Vector3D.PLUS_K, Vector3D.PLUS_I);
TimeStampedAngularCoordinates attitude =
new TimeStampedAngularCoordinates(
middle, rotation,
Vector3D.PLUS_I.scalarMultiply(0.1), Vector3D.ZERO);
List<TimeStampedAngularCoordinates> attitudes = Arrays.asList(
attitude.shiftedBy(start.durationFrom(attitude.getDate())),
attitude,
attitude.shiftedBy(end.durationFrom(attitude.getDate())));
builder.setTrajectory(ecf,
pvs, 2, CartesianDerivativesFilter.USE_P,
attitudes, 2, AngularDerivativesFilter.USE_R);
final double iFov = 1e-6;
TimeDependentLOS los = new TimeDependentLOS() {
@Override
public int getNbPixels() {
return 1000;
}
@Override
public Vector3D getLOS(int index, AbsoluteDate date) {
// simplistic pinhole camera, assumes small angle
final double center = getNbPixels() / 2.0;
final double x = (index - center);
final double los = x * iFov;
return new Vector3D(los, 0, 1);
}
@Override
public <T extends Derivative<T>> FieldVector3D<T> getLOSDerivatives(
int index,
AbsoluteDate date,
DerivativeGenerator<T> generator) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public Stream<ParameterDriver> getParametersDrivers() {
return Stream.empty();
}
};
LineSensor sensor = new LineSensor("sensor",
new LinearLineDatation(middle, 0, 1000),
Vector3D.ZERO,
los);
builder.addLineSensor(sensor);
Rugged ruggedWithDefaultMargin = builder.build();
GeodeticPoint point = ruggedWithDefaultMargin.directLocation(sensor.getName(), 1000)[500];
try {
final int maxLine = 4999; // works with 4980, fails with 4999
ruggedWithDefaultMargin.inverseLocation(sensor.getName(), point, 0, maxLine);
Assert.fail("An exception should have been thrown");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.SENSOR_PIXEL_NOT_FOUND_IN_PIXELS_LINE,re.getSpecifier());
}
// Check the default margin is equal to the used one
Assert.assertEquals(builder.getRefractionCorrection().getComputationParameters().getDefaultInverseLocMargin(),
builder.getRefractionCorrection().getComputationParameters().getInverseLocMargin(),
1.0e-10);
// Change the margin to an admissible one for this case
builder.getRefractionCorrection().setInverseLocMargin(0.81);
Rugged ruggedWithCustomMargin = builder.build();
point = ruggedWithCustomMargin.directLocation(sensor.getName(), 1000)[500];
final int maxLine = 4999; // works with a margin > 0.803
SensorPixel pixel = ruggedWithCustomMargin.inverseLocation(sensor.getName(), point, 0, maxLine);
Assert.assertTrue(pixel != null);
}
@Test
public void testBadConfig() {
int dimension = 400;
TimeDependentLOS los = new LOSBuilder(new ArrayList<Vector3D>(dimension)).build();
LineSensor lineSensor = new LineSensor("line", null, Vector3D.ZERO, los);
// Defines atmospheric refraction model (with the default multi layers model)
AtmosphericRefraction atmosphericRefraction = new MultiLayerModel(null);
// Check the context
atmosphericRefraction.setGridSteps(100, 100);
atmosphericRefraction.configureCorrectionGrid(lineSensor, 0, 300);
assertFalse(atmosphericRefraction.isSameContext("otherSensor", 0, 300));
assertFalse(atmosphericRefraction.isSameContext("line", 42, 300));
assertFalse(atmosphericRefraction.isSameContext("line", 0, 42));
// Check the test of validity of min / max line vs line step
try {
atmosphericRefraction.setGridSteps(100, 100);
atmosphericRefraction.configureCorrectionGrid(lineSensor, 0, 100);
Assert.fail("An exception should have been thrown");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.INVALID_RANGE_FOR_LINES,re.getSpecifier());
}
// Bad pixel step
try {
atmosphericRefraction.setGridSteps(-5, 100);
atmosphericRefraction.configureCorrectionGrid(lineSensor, 0, 100);
Assert.fail("An exception should have been thrown");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.INVALID_STEP,re.getSpecifier());
}
// Bad line step
try {
atmosphericRefraction.setGridSteps(10, -42);
atmosphericRefraction.configureCorrectionGrid(lineSensor, 0, 100);
Assert.fail("An exception should have been thrown");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.INVALID_STEP,re.getSpecifier());
}
}
}
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.refraction;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.hipparchus.analysis.UnivariateFunction;
import org.hipparchus.geometry.euclidean.threed.Rotation;
import org.hipparchus.geometry.euclidean.threed.RotationConvention;
import org.hipparchus.geometry.euclidean.threed.Vector3D;
import org.hipparchus.util.FastMath;
import org.junit.Assert;
import org.junit.Test;
import org.orekit.rugged.errors.RuggedException;
import org.orekit.rugged.errors.RuggedMessages;
import org.orekit.rugged.intersection.AbstractAlgorithmTest;
import org.orekit.rugged.intersection.IntersectionAlgorithm;
import org.orekit.rugged.intersection.duvenhage.DuvenhageAlgorithm;
import org.orekit.rugged.raster.TileUpdater;
import org.orekit.rugged.utils.NormalizedGeodeticPoint;
public class MultiLayerModelTest extends AbstractAlgorithmTest {
@Test
public void testAlmostNadir() {
setUpMayonVolcanoContext();
final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
final Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
final Vector3D los = new Vector3D( 0.5127552821932051, -0.8254313129088879, -0.2361041470463311);
final NormalizedGeodeticPoint rawIntersection =
algorithm.refineIntersection(earth, position, los,
algorithm.intersection(earth, position, los));
MultiLayerModel model = new MultiLayerModel(earth);
NormalizedGeodeticPoint correctedIntersection = model.applyCorrection(position, los, rawIntersection, algorithm);
double distance = Vector3D.distance(earth.transform(rawIntersection), earth.transform(correctedIntersection));
// this is almost a Nadir observation (LOS deviates between 1.4 and 1.6 degrees from vertical)
// so the refraction correction is small
Assert.assertEquals(0.0553796, distance, 1.0e-6);
}
@Test
public void testNoOpRefraction() {
setUpMayonVolcanoContext();
final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
final Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
final Vector3D los = los(position, FastMath.toRadians(50.0));
final NormalizedGeodeticPoint rawIntersection = algorithm.refineIntersection(earth, position, los,
algorithm.intersection(earth, position, los));
MultiLayerModel model = new MultiLayerModel(earth);
NormalizedGeodeticPoint correctedIntersection = model.applyCorrection(position, los, rawIntersection, algorithm);
double distance = Vector3D.distance(earth.transform(rawIntersection), earth.transform(correctedIntersection));
// a test with indices all set to 1.0 - correction must be zero
final int numberOfLayers = 16;
List<ConstantRefractionLayer> refractionLayers = new ArrayList<ConstantRefractionLayer>(numberOfLayers);
for(int i = numberOfLayers - 1; i >= 0; i--) {
refractionLayers.add(new ConstantRefractionLayer(i * 1.0e4, 1.0));
}
model = new MultiLayerModel(earth, refractionLayers);
correctedIntersection = model.applyCorrection(position, los, rawIntersection, algorithm);
distance = Vector3D.distance(earth.transform(rawIntersection), earth.transform(correctedIntersection));
Assert.assertEquals(0.0, distance, 1.7e-9);
}
@Test
public void testReversedAtmosphere()
throws IllegalArgumentException, IllegalAccessException, NoSuchFieldException, SecurityException {
setUpMayonVolcanoContext();
final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
final Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
final Vector3D los = los(position, FastMath.toRadians(50.0));
final NormalizedGeodeticPoint rawIntersection = algorithm.refineIntersection(earth, position, los,
algorithm.intersection(earth, position, los));
MultiLayerModel baseModel = new MultiLayerModel(earth);
NormalizedGeodeticPoint correctedIntersection = baseModel.applyCorrection(position, los, rawIntersection, algorithm);
// an intentionally flawed atmosphere with refractive indices decreasing with altitude,
// that should exhibit a LOS bending upwards
Field refractionLayersField = MultiLayerModel.class.getDeclaredField("refractionLayers");
refractionLayersField.setAccessible(true);
@SuppressWarnings("unchecked")
List<ConstantRefractionLayer> baseRefractionLayers =
(List<ConstantRefractionLayer>) refractionLayersField.get(baseModel);
List<ConstantRefractionLayer> denserRefractionLayers = new ArrayList<>();
for (final ConstantRefractionLayer layer : baseRefractionLayers) {
denserRefractionLayers.add(new ConstantRefractionLayer(layer.getLowestAltitude(),
1.0 / layer.getRefractiveIndex()));
}
MultiLayerModel reversedModel = new MultiLayerModel(earth, denserRefractionLayers);
NormalizedGeodeticPoint reversedIntersection = reversedModel.applyCorrection(position, los, rawIntersection, algorithm);
double anglePosRawIntersection = Vector3D.angle(position, earth.transform(rawIntersection));
double anglePosCorrectedIntersection = Vector3D.angle(position, earth.transform(correctedIntersection));
double anglePosReversedIntersection = Vector3D.angle(position, earth.transform(reversedIntersection));
// with regular atmosphere, the ray bends downwards,
// so the ground point is closer to the sub-satellite point than the raw intersection
Assert.assertTrue(anglePosCorrectedIntersection < anglePosRawIntersection);
// with reversed atmosphere, the ray bends upwards,
// so the ground point is farther from the sub-satellite point than the raw intersection
Assert.assertTrue(anglePosReversedIntersection > anglePosRawIntersection);
// the points are almost aligned (for distances around 20m, Earth curvature is small enough)
double dRawCorrected = Vector3D.distance(earth.transform(rawIntersection), earth.transform(correctedIntersection));
double dRawReversed = Vector3D.distance(earth.transform(rawIntersection), earth.transform(reversedIntersection));
double dReversedCorrected = Vector3D.distance(earth.transform(reversedIntersection), earth.transform(correctedIntersection));
Assert.assertEquals(dRawCorrected + dRawReversed, dReversedCorrected, 1.0e-12 * dReversedCorrected);
}
@Test
public void testTwoAtmospheres()
throws IllegalArgumentException, IllegalAccessException, NoSuchFieldException, SecurityException {
setUpMayonVolcanoContext();
final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
final Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
final Vector3D los = los(position, FastMath.toRadians(50.0));
final NormalizedGeodeticPoint rawIntersection = algorithm.refineIntersection(earth, position, los,
algorithm.intersection(earth, position, los));
// a comparison between two atmospheres, one more dense than the other and showing correction
// is more important with high indices
MultiLayerModel baseModel = new MultiLayerModel(earth);
Field refractionLayersField = MultiLayerModel.class.getDeclaredField("refractionLayers");
refractionLayersField.setAccessible(true);
@SuppressWarnings("unchecked")
List<ConstantRefractionLayer> baseRefractionLayers =
(List<ConstantRefractionLayer>) refractionLayersField.get(baseModel);
List<ConstantRefractionLayer> denserRefractionLayers = new ArrayList<>();
double previousBaseN = 1.0;
double previousDenserN = 1.0;
double factor = 1.00001;
for (final ConstantRefractionLayer layer : baseRefractionLayers) {
final double currentBaseN = layer.getRefractiveIndex();
final double baseRatio = currentBaseN / previousBaseN;
final double currentDenserN = previousDenserN * factor * baseRatio;
denserRefractionLayers.add(new ConstantRefractionLayer(layer.getLowestAltitude(),
currentDenserN));
previousBaseN = currentBaseN;
previousDenserN = currentDenserN;
}
MultiLayerModel denserModel = new MultiLayerModel(earth, denserRefractionLayers);
NormalizedGeodeticPoint baseIntersection = baseModel.applyCorrection(position, los, rawIntersection, algorithm);
NormalizedGeodeticPoint denserIntersection = denserModel.applyCorrection(position, los, rawIntersection, algorithm);
double baseDistance = Vector3D.distance(earth.transform(rawIntersection),
earth.transform(baseIntersection));
double denserDistance = Vector3D.distance(earth.transform(rawIntersection),
earth.transform(denserIntersection));
Assert.assertTrue(denserDistance > baseDistance);
}
@Test
public void testMissingLayers() {
setUpMayonVolcanoContext();
final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
final Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
final Vector3D los = los(position, FastMath.toRadians(50.0));
final NormalizedGeodeticPoint rawIntersection = algorithm.refineIntersection(earth, position, los,
algorithm.intersection(earth, position, los));
final double h = rawIntersection.getAltitude();
MultiLayerModel model = new MultiLayerModel(earth,
Collections.singletonList(new ConstantRefractionLayer(h + 100.0,
1.5)));
try {
model.applyCorrection(position, los, rawIntersection, algorithm);
Assert.fail("an exception should have been thrown");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.NO_LAYER_DATA, re.getSpecifier());
Assert.assertEquals(h, ((Double) re.getParts()[0]).doubleValue(), 1.0e-6);
Assert.assertEquals(h + 100.0, ((Double) re.getParts()[1]).doubleValue(), 1.0e-6);
}
}
@Test
public void testLayersBelowDEM() {
setUpMayonVolcanoContext();
final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
final Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
final Vector3D los = los(position, FastMath.toRadians(50.0));
final NormalizedGeodeticPoint rawIntersection = algorithm.refineIntersection(earth, position, los,
algorithm.intersection(earth, position, los));
MultiLayerModel model = new MultiLayerModel(earth,
Collections.singletonList(new ConstantRefractionLayer(rawIntersection.getAltitude() - 100.0,
1.5)));
NormalizedGeodeticPoint correctedIntersection = model.applyCorrection(position, los, rawIntersection, algorithm);
double distance = Vector3D.distance(earth.transform(rawIntersection), earth.transform(correctedIntersection));
Assert.assertEquals(0.0, distance, 1.3e-9);
}
@Test
public void testDivingAngleChange() {
setUpMayonVolcanoContext();
final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
final Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
AtmosphericRefraction model = new MultiLayerModel(earth);
// deviation should increase from 0 to about 17m
// as the angle between los and nadir increases from 0 to 50 degrees
// the reference model below has been obtained by fitting the test results themselves
// it is NOT considered a full featured model, it's just a helper function for this specific test
UnivariateFunction reference = alpha -> 1.17936 * FastMath.tan((2.94613 - 1.40162 * alpha) * alpha);
for (double alpha = 0; alpha < FastMath.toRadians(50.0); alpha += 0.1) {
final Vector3D rotatingLos = los(position, alpha);
final NormalizedGeodeticPoint rawIntersection = algorithm.refineIntersection(earth, position, rotatingLos,
algorithm.intersection(earth, position, rotatingLos));
final NormalizedGeodeticPoint correctedIntersection = model.applyCorrection(position, rotatingLos, rawIntersection, algorithm);
final double distance = Vector3D.distance(earth.transform(rawIntersection),
earth.transform(correctedIntersection));
Assert.assertEquals(reference.value(alpha), distance, 0.12);
}
}
private Vector3D los(final Vector3D position, final double angleFromNadir) {
final Vector3D nadir = earth.transform(position, earth.getBodyFrame(), null).getNadir();
final Rotation losRotation = new Rotation(nadir.orthogonal(), angleFromNadir,
RotationConvention.VECTOR_OPERATOR);
return losRotation.applyTo(nadir);
}
@Override
protected IntersectionAlgorithm createAlgorithm(TileUpdater updater, int maxCachedTiles) {
return new DuvenhageAlgorithm(updater, maxCachedTiles, false);
}
}
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.utils;
import org.hipparchus.exception.LocalizedCoreFormats;
import org.junit.Assert;
import org.junit.Test;
import org.orekit.errors.OrekitException;
import org.orekit.time.AbsoluteDate;
public class AbsoluteDateForVectorisationTest {
@Test
public void testShiftedBySeveralTimeShiftOneDate() {
AbsoluteDate date1 = new AbsoluteDate();
AbsoluteDate[] dates = new AbsoluteDate[] {date1};
double[] dts = new double[] {10.0, 20.0, 30.0};
AbsoluteDateArrayHandling datesForVect = new AbsoluteDateArrayHandling(dates);
AbsoluteDate[][] datesShifted = datesForVect.multipleShiftedBy(dts);
Assert.assertEquals(datesShifted[0][0].durationFrom(date1.shiftedBy(10)), 0.0, 1e-5);
Assert.assertEquals(datesShifted[0][1].durationFrom(date1.shiftedBy(20)), 0.0, 1e-5);
}
@Test
public void testShiftedByCorrespondingTimeShift() {
AbsoluteDate date1 = new AbsoluteDate();
AbsoluteDate date2 = date1.shiftedBy(10000);
AbsoluteDate date3 = date1.shiftedBy(20000);
AbsoluteDate[] dates = new AbsoluteDate[] {date1, date2, date3};
double[] dts = new double[] {10.0, 20.0, 30.0};
AbsoluteDateArrayHandling datesForVect = new AbsoluteDateArrayHandling(dates);
AbsoluteDate[] datesShifted = datesForVect.shiftedBy(dts);
Assert.assertEquals(datesShifted[0].durationFrom(date1.shiftedBy(10)), 0.0, 1e-5);
Assert.assertEquals(datesShifted[1].durationFrom(date1.shiftedBy(10020)), 0.0, 1e-5);
Assert.assertEquals(datesShifted[2].durationFrom(date1.shiftedBy(20030)), 0.0, 1e-5);
}
@Test
public void testShiftedBySeveralTimeShiftSeveralDates() {
AbsoluteDate date1 = new AbsoluteDate();
AbsoluteDate date2 = date1.shiftedBy(10000);
AbsoluteDate[] dates = new AbsoluteDate[] {date1, date2};
double[] dts = new double[] {10.0, 20.0, 30.0};
AbsoluteDateArrayHandling datesForVect = new AbsoluteDateArrayHandling(dates);
AbsoluteDate[][] datesShifted = datesForVect.multipleShiftedBy(dts);
Assert.assertEquals(datesShifted[0][0].durationFrom(date1.shiftedBy(10)), 0.0, 1e-5);
Assert.assertEquals(datesShifted[0][1].durationFrom(date1.shiftedBy(20)), 0.0, 1e-5);
Assert.assertEquals(datesShifted[1][1].durationFrom(date2.shiftedBy(20)), 0.0, 1e-5);
Assert.assertEquals(datesShifted[1][2].durationFrom(date2.shiftedBy(30)), 0.0, 1e-5);
}
@Test
public void testDurationFromSeveralDates() {
AbsoluteDate date1 = new AbsoluteDate();
AbsoluteDate date2 = date1.shiftedBy(10000);
AbsoluteDate date3 = date1.shiftedBy(20000);
AbsoluteDate date4 = date1.shiftedBy(100000);
AbsoluteDate[] dates = new AbsoluteDate[] {date1, date2, date3};
AbsoluteDate[] datesComputeDuration = new AbsoluteDate[] {date4, date1};
AbsoluteDateArrayHandling datesForVect = new AbsoluteDateArrayHandling(dates);
double[][] datesDurations = datesForVect.multipleDurationFrom(datesComputeDuration);
Assert.assertEquals(datesDurations[0][0], date1.durationFrom(date4), 1e-5);
Assert.assertEquals(datesDurations[0][1], date1.durationFrom(date1), 1e-5);
Assert.assertEquals(datesDurations[1][0], date2.durationFrom(date4), 1e-5);
Assert.assertEquals(datesDurations[1][1], date2.durationFrom(date1), 1e-5);
Assert.assertEquals(datesDurations[2][0], date3.durationFrom(date4), 1e-5);
Assert.assertEquals(datesDurations[2][1], date3.durationFrom(date1), 1e-5);
}
@Test
public void testDurationFromCorrespondingDates() {
AbsoluteDate date1 = new AbsoluteDate();
AbsoluteDate date2 = date1.shiftedBy(10000);
AbsoluteDate date3 = date1.shiftedBy(20000);
AbsoluteDate date4 = date1.shiftedBy(100000);
AbsoluteDate[] dates = new AbsoluteDate[] {date1, date2, date3};
AbsoluteDate[] datesComputeDuration = new AbsoluteDate[] {date4, date1, date2};
AbsoluteDateArrayHandling datesForVect = new AbsoluteDateArrayHandling(dates);
double[] datesDurations = datesForVect.durationFrom(datesComputeDuration);
Assert.assertEquals(datesDurations[0], date1.durationFrom(date4), 1e-5);
Assert.assertEquals(datesDurations[1], date2.durationFrom(date1), 1e-5);
Assert.assertEquals(datesDurations[2], date3.durationFrom(date2), 1e-5);
}
@Test
public void testExceptionDimensions() {
AbsoluteDate date1 = new AbsoluteDate();
AbsoluteDate date2 = date1.shiftedBy(10000);
AbsoluteDate date3 = date1.shiftedBy(20000);
AbsoluteDate date4 = date1.shiftedBy(100000);
AbsoluteDate[] dates = new AbsoluteDate[] {date1, date2, date3};
AbsoluteDate[] datesComputeDuration = new AbsoluteDate[] {date4, date1};
AbsoluteDateArrayHandling datesForVect = new AbsoluteDateArrayHandling(dates);
try {
datesForVect.durationFrom(datesComputeDuration);
Assert.fail("an exception should have been thrown");
} catch (OrekitException oe) {
Assert.assertEquals(LocalizedCoreFormats.DIMENSIONS_MISMATCH, oe.getSpecifier());
}
}
}
package org.orekit.rugged.utils;
import org.junit.Test;
import org.orekit.rugged.adjustment.OptimizerId;
import org.orekit.rugged.api.BodyRotatingFrameId;
import org.orekit.rugged.api.EllipsoidId;
import org.orekit.rugged.api.InertialFrameId;
/** Tests to obtain 100% of coverage for enum class with jacoco tool.
* Even though one use each enumerate of an enum class,
* there is no way to obtain a full 100% coverage of the class
* unless ... to perform a simple test like
* TheEnumClass.valueOf(TheEnumClass.OneEnumValue..toString());
* @author Guylaine Prat
*/
public class EnumeratesTest {
@Test
public void testEnumOptimizerId() {
// Test to have 100% coverage of enum class
OptimizerId.valueOf(OptimizerId.LEVENBERG_MARQUADT.toString());
}
@Test
public void testBodyRotatingFrameId() {
// Test to have 100% coverage of enum class
BodyRotatingFrameId.valueOf(BodyRotatingFrameId.ITRF.toString());
}
@Test
public void testEllipsoidId() {
// Test to have 100% coverage of enum class
EllipsoidId.valueOf(EllipsoidId.IERS2003.toString());
}
@Test
public void testInertialFrameId() {
// Test to have 100% coverage of enum class
InertialFrameId.valueOf(InertialFrameId.GCRF.toString());
}
}
/* Copyright 2013-2014 CS Systèmes d'Information
* Licensed to CS Systèmes d'Information (CS) under one or more
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
......@@ -14,34 +14,33 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.core;
package org.orekit.rugged.utils;
import java.io.File;
import java.net.URISyntaxException;
import org.apache.commons.math3.geometry.euclidean.threed.Line;
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
import org.apache.commons.math3.util.FastMath;
import org.hipparchus.geometry.euclidean.threed.Line;
import org.hipparchus.geometry.euclidean.threed.Vector3D;
import org.hipparchus.util.FastMath;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.orekit.bodies.GeodeticPoint;
import org.orekit.data.DataProvidersManager;
import org.orekit.data.DataContext;
import org.orekit.data.DirectoryCrawler;
import org.orekit.errors.OrekitException;
import org.orekit.frames.Frame;
import org.orekit.frames.FramesFactory;
import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.api.RuggedMessages;
import org.orekit.rugged.core.ExtendedEllipsoid;
import org.orekit.rugged.errors.RuggedException;
import org.orekit.rugged.errors.RuggedMessages;
import org.orekit.utils.Constants;
import org.orekit.utils.IERSConventions;
public class ExtendedEllipsoidTest {
@Test
public void testPointAtLongitude() throws RuggedException, OrekitException {
public void testPointAtLongitude() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
Vector3D d = new Vector3D(1.0, 2.0, 3.0);
......@@ -55,7 +54,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtLongitudeError() throws RuggedException, OrekitException {
public void testPointAtLongitudeError() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
double longitude = 1.25;
......@@ -73,45 +72,96 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtLatitude() throws RuggedException, OrekitException {
public void testPointAtLatitude() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
Vector3D d = new Vector3D(1.0, 2.0, 3.0);
for (double latitude = -d.getDelta() + 1.0e-6; latitude < d.getDelta(); latitude += 0.1) {
GeodeticPoint gp = ellipsoid.transform(ellipsoid.pointAtLatitude(p, d, latitude),
double epsilon = 5.0e-15;
for (double latitude = -d.getDelta() + 1.0e-5; latitude < d.getDelta(); latitude += 0.1) {
GeodeticPoint gp = ellipsoid.transform(ellipsoid.pointAtLatitude(p, d, latitude, p),
ellipsoid.getBodyFrame(), null);
Assert.assertEquals(latitude, gp.getLatitude(), 1.0e-12);
Assert.assertEquals(latitude, gp.getLatitude(), epsilon);
}
}
@Test
public void testPointAtLatitudeTwoPointsInGoodNappe() throws RuggedException, OrekitException {
public void testPointAtLatitudeTwoPointsSameSide() {
// the line of sight is almost parallel an iso-latitude cone generatrix
// the spacecraft is at latitude lTarget - 0.951", and altitude 794.6km
// so at a latitude slightly less than the target
// the line of sight crosses the latitude cone first about 70km along line of sight
// (so still at a very high altitude) and a second time about 798km along line of sight,
// only a few hundreds meters above allipsoid
// Note that this happens despite the line of sight is not along nadir, the longitudes
// of the spacecraft and crossing points span in a 0.88° wide longitude range
Vector3D position = new Vector3D(-748528.2769999998, -5451658.432000002, 4587158.354);
Vector3D los = new Vector3D(0.010713435156834539, 0.7688536080293823, -0.6393350856376809);
double h = ellipsoid.transform(position, ellipsoid.getBodyFrame(), null).getAltitude();
double lTarget = 0.6978408125890662;
// spacecraft is in LEO
Assert.assertEquals(h, 794652.782, 0.001);
Vector3D pHigh = ellipsoid.pointAtLatitude(position, los, lTarget, position);
GeodeticPoint gpHigh = ellipsoid.transform(pHigh, ellipsoid.getBodyFrame(), null);
Assert.assertEquals(lTarget, gpHigh.getLatitude(), 1.0e-12);
// first crossing point is high, but below spacecraft and along positive line of sight
Assert.assertEquals(724335.409, gpHigh.getAltitude(), 0.001);
Assert.assertTrue(Vector3D.dotProduct(pHigh.subtract(position), los) > 0);
Vector3D pLow = ellipsoid.pointAtLatitude(position, los, lTarget,
new Vector3D(1, position, 900000, los));
GeodeticPoint gpLow = ellipsoid.transform(pLow, ellipsoid.getBodyFrame(), null);
Assert.assertEquals(lTarget, gpLow.getLatitude(), 1.0e-12);
// second crossing point is almost on ground, also along positive line of sight
Assert.assertEquals(492.804, gpLow.getAltitude(), 0.001);
Assert.assertTrue(Vector3D.dotProduct(pLow.subtract(position), los) > 0);
}
@Test
public void testPointAtLatitudeTwoPointsOppositeSides() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
Vector3D d = new Vector3D(1.0, 2.0, 0.1);
double latitude = -0.5;
GeodeticPoint gpPlus = ellipsoid.transform(ellipsoid.pointAtLatitude(p, d, latitude),
ellipsoid.getBodyFrame(), null);
Assert.assertEquals(latitude, gpPlus.getLatitude(), 1.0e-12);
Vector3D pPlus = ellipsoid.pointAtLatitude(p, d, latitude, new Vector3D(1, p, +2.0e7, d));
GeodeticPoint gpPlus = ellipsoid.transform(pPlus, ellipsoid.getBodyFrame(), null);
Assert.assertEquals(latitude, gpPlus.getLatitude(), 4.0e-16);
Assert.assertEquals(20646364.047, Vector3D.dotProduct(d, pPlus.subtract(p)), 0.001);
GeodeticPoint gpMinus = ellipsoid.transform(ellipsoid.pointAtLatitude(p, d.negate(), latitude),
ellipsoid.getBodyFrame(), null);
Assert.assertEquals(latitude, gpMinus.getLatitude(), 1.0e-12);
Vector3D pMinus = ellipsoid.pointAtLatitude(p, d, latitude, new Vector3D(1, p, -3.0e7, d));
GeodeticPoint gpMinus = ellipsoid.transform(pMinus, ellipsoid.getBodyFrame(), null);
Assert.assertEquals(latitude, gpMinus.getLatitude(), 3.0e-16);
Assert.assertEquals(-31797895.234, Vector3D.dotProduct(d, pMinus.subtract(p)), 0.001);
}
@Test
public void testPointAtLatitudeErrorQuadraticEquation() throws RuggedException, OrekitException {
public void testPointAtLatitudeAlmostEquator() {
Vector3D p = new Vector3D(5767483.098580201, 4259689.325372237, -41553.67750784925);
Vector3D d = new Vector3D(-0.7403523952347795, -0.6701811835520302, 0.05230212180799747);
double latitude = -3.469446951953614E-18;
Vector3D closeReference = new Vector3D(5177991.74844521, 3726070.452427455, 90.88067547897226);
Vector3D intersection = ellipsoid.pointAtLatitude(p, d, latitude, closeReference);
GeodeticPoint gp = ellipsoid.transform(intersection, ellipsoid.getBodyFrame(), null);
Assert.assertEquals(latitude, gp.getLatitude(), 1.0e-10);
Assert.assertEquals(2866.297, gp.getAltitude(), 1.0e-3);
}
@Test
public void testPointAtLatitudeErrorQuadraticEquation() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
Vector3D d = new Vector3D(1.0, 2.0, 3.0);
double latitude = -1.4;
try {
ellipsoid.pointAtLatitude(p, d, latitude);
ellipsoid.pointAtLatitude(p, d, latitude, p);
Assert.fail("an error should have been triggered");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.LINE_OF_SIGHT_NEVER_CROSSES_LATITUDE, re.getSpecifier());
......@@ -121,14 +171,14 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtLatitudeErrorNappe() throws RuggedException, OrekitException {
public void testPointAtLatitudeErrorNappe() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
Vector3D d = new Vector3D(1.0, 2.0, 0.1);
double latitude = 0.5;
try {
ellipsoid.pointAtLatitude(p, d, latitude);
ellipsoid.pointAtLatitude(p, d, latitude, p);
Assert.fail("an error should have been triggered");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.LINE_OF_SIGHT_NEVER_CROSSES_LATITUDE, re.getSpecifier());
......@@ -138,7 +188,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtAltitude() throws RuggedException, OrekitException {
public void testPointAtAltitude() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
Vector3D d = new Vector3D(1.0, 2.0, 3.0);
......@@ -151,7 +201,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtAltitudeStartInside() throws RuggedException, OrekitException {
public void testPointAtAltitudeStartInside() {
Vector3D p = new Vector3D(322010.30, 6962.30, -644982.20);
Vector3D d = new Vector3D(-1.0, -2.0, -3.0);
......@@ -164,7 +214,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtAltitudeError() throws RuggedException, OrekitException {
public void testPointAtAltitudeError() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
Vector3D d = new Vector3D(1.0, 2.0, 3.0);
......@@ -180,7 +230,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testConvertLOS() throws RuggedException, OrekitException {
public void testConvertLOS() {
GeodeticPoint gp = new GeodeticPoint(-0.2, 1.8, 2400.0);
Vector3D p = ellipsoid.transform(gp);
......@@ -188,21 +238,55 @@ public class ExtendedEllipsoidTest {
Vector3D converted = ellipsoid.convertLos(gp, los);
Line line = new Line(p, new Vector3D(1.0, p, 1000, los), 1.0e-10);
for (double delta = 0; delta < 100.0; delta += 0.1) {
for (double delta = 0.1; delta < 100.0; delta += 0.1) {
GeodeticPoint shifted = new GeodeticPoint(gp.getLatitude() + delta * converted.getY(),
gp.getLongitude() + delta * converted.getX(),
gp.getAltitude() + delta * converted.getZ());
Assert.assertEquals(0.0, line.distance(ellipsoid.transform(shifted)), 1.0e-3);
Vector3D converted2 = ellipsoid.convertLos(p, ellipsoid.transform(shifted));
Assert.assertEquals(0.0, Vector3D.distance(converted, converted2), 3.0e-5 * converted.getNorm());
Assert.assertEquals(0.0, line.distance(ellipsoid.transform(shifted)), 8.0e-4);
}
}
@Test
public void testPointAtLatitudeError() {
Vector3D p = new Vector3D(-3052690.88784496, 6481300.309857268, 25258.7478104745);
Vector3D d = new Vector3D(0.6, -0.8, 0.0);
double latitude = 0.1;
Vector3D c = new Vector3D(-2809972.5765414005, 5727461.020250551, 26.163518446261833);
try {
ellipsoid.pointAtLatitude(p, d, latitude, c);
Assert.fail("an error should have been triggered");
} catch (RuggedException re) {
Assert.assertEquals(RuggedMessages.LINE_OF_SIGHT_NEVER_CROSSES_LATITUDE, re.getSpecifier());
Assert.assertEquals(FastMath.toDegrees(latitude), re.getParts()[0]);
}
}
@Test
public void testPointAtLatitudeIssue1() {
Vector3D position = new Vector3D(-1988136.619268088, -2905373.394638188, 6231185.484365295);
Vector3D los = new Vector3D(0.3489121277213534, 0.3447806500507106, -0.8714279261531437);
Vector3D close = new Vector3D(-1709383.0948608494, -2630206.8820586684, 5535282.169189105);
double latitude = 1.0581058590215624;
Vector3D s = ellipsoid.pointAtLatitude(position, los, latitude, close);
GeodeticPoint gp = ellipsoid.transform(s, ellipsoid.getBodyFrame(), null);
Assert.assertEquals(latitude, gp.getLatitude(), 1.0e-15);
}
@Before
public void setUp() {
try {
String path = getClass().getClassLoader().getResource("orekit-data").toURI().getPath();
DataProvidersManager.getInstance().addProvider(new DirectoryCrawler(new File(path)));
DataContext.getDefault().getDataProvidersManager().addProvider(new DirectoryCrawler(new File(path)));
Frame itrf = FramesFactory.getITRF(IERSConventions.IERS_2010, true);
ellipsoid = new ExtendedEllipsoid(Constants.WGS84_EARTH_EQUATORIAL_RADIUS,
......
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.utils;
import java.text.NumberFormat;
import org.hipparchus.exception.MathRuntimeException;
import org.hipparchus.geometry.euclidean.threed.Vector3D;
import org.hipparchus.util.CompositeFormat;
import org.hipparchus.util.FastMath;
import org.orekit.bodies.GeodeticPoint;
import org.orekit.errors.OrekitException;
public class GeodeticUtilities {
/** Compute an (approximate) geodetic distance in meters between geodetic points (long1, lat1) and (long2, lat2).
* TBN: Orekit does not have such a method
* @param earthRadius Earth radius (m)
* @param long1 longitude of first geodetic point (rad)
* @param lat1 latitude of first geodetic point (rad)
* @param long2 longitude of second geodetic point (rad)
* @param lat2 latitude of second geodetic point (rad)
* @return distance in meters
*/
public static double computeDistanceInMeter(double earthRadius, final double long1, final double lat1,
final double long2, final double lat2) {
// get vectors on unit sphere from angular coordinates
final Vector3D p1 = new Vector3D(long1, lat1);
final Vector3D p2 = new Vector3D(long2, lat2);
return earthRadius * Vector3D.angle(p1, p2);
}
/** Compute an (approximate) geodetic distance in meters between two geodetic points
* TBN: Orekit does not have such a method
* @param earthRadius Earth radius (m)
* @param gp1 first geodetic point
* @param gp2 second geodetic point
* @return distance in meters
*/
public static double computeDistanceInMeter(double earthRadius, final GeodeticPoint gp1, final GeodeticPoint gp2) {
return computeDistanceInMeter(earthRadius, gp1.getLongitude(), gp1.getLatitude(), gp2.getLongitude(), gp2.getLatitude());
}
public static String toStringDMS(GeodeticPoint gp) {
final NumberFormat format = CompositeFormat.getDefaultNumberFormat();
format.setMaximumFractionDigits(1);
DMSangle latDMS = convertLatitudeToDMS(FastMath.toDegrees(gp.getLatitude()));
DMSangle lonDMS = convertLongitudeToDMS(FastMath.toDegrees(gp.getLongitude()));
String latSign = "";
if (latDMS.getCardinalPoint() == CardinalDirection.South) latSign = "-";
String lonSign = "";
if (lonDMS.getCardinalPoint() == CardinalDirection.West) lonSign = "-";
return "{lat: " + latSign +
format.format(latDMS.getDegrees()) + "° " +
format.format(latDMS.getMinutes()) + "' " +
format.format(latDMS.getSeconds()) + "'' " +
" lon: " + lonSign +
format.format(lonDMS.getDegrees()) + "° " +
format.format(lonDMS.getMinutes()) + "' " +
format.format(lonDMS.getSeconds()) + "'' " +
"}";
}
/**
* Convert longitude (in decimal degrees) in degrees/minutes/seconds
* @param longitudeInDecimalDegrees
* @return the DMS angle
*/
static DMSangle convertLongitudeToDMS(double longitudeInDecimalDegrees) {
String cardinalDirection;
// Get the cardinal direction
if (longitudeInDecimalDegrees >= 0.0){
cardinalDirection= "E";
} else {
cardinalDirection= "W";
}
return convertToDMS(longitudeInDecimalDegrees, cardinalDirection);
}
/**
* Convert latitude (in decimal degrees) in degrees/minutes/seconds
* @param latitudeInDecimalDegrees
* @return the DMSangle
*/
public static DMSangle convertLatitudeToDMS(double latitudeInDecimalDegrees){
String cardinalDirection;
// Get the cardinal direction
if (latitudeInDecimalDegrees >= 0.0){
cardinalDirection= "N";
} else {
cardinalDirection= "S";
}
return convertToDMS(latitudeInDecimalDegrees, cardinalDirection);
}
/**
* Convert angle (in decimal degrees) in degrees/minutes/seconds and add the associated cardinal direction
* @param angleInDecimalDegrees angle in decimal degrees
* @param cardinalDirection the associated cardinal direction
* @return the DMSangle
*/
private static DMSangle convertToDMS(double angleInDecimalDegrees, String cardinalDirection) {
// We know the cardinal direction so we work on |angleInDecimalDegrees| the positive value
double angleInDD = FastMath.abs(angleInDecimalDegrees);
// Get the degrees part
int degreesPart = (int) FastMath.floor(angleInDD);
// Get the minutes part (always positive value)
double minutesInDecimal = 60.*(angleInDD - degreesPart);
int minutesPart = (int) FastMath.floor(minutesInDecimal);
// Get the seconds (in decimal)
double secondsInDecimal = 60.*(minutesInDecimal - minutesPart);
// Due to rounding problem (at equator around 30 micrometre > diameter of human hair)
if (secondsInDecimal > (60. - 1.e-8)) {
secondsInDecimal = 0.0;
minutesPart++;
if (minutesPart == 60) {
minutesPart = 0;
degreesPart++;
}
}
return new DMSangle(degreesPart, minutesPart, secondsInDecimal, cardinalDirection);
}
}
class DMSangle {
/**
* Degrees part of the angle
*/
private int degrees;
/**
* Minutes part of the angle
*/
private int minutes;
/**
* Seconds part of the angle
*/
private double seconds;
/**
* Cardinal direction
*/
private CardinalDirection cardinalPoint;
/**
* Create a DMS angle for a GeodeticPoint (for instance)
* @param degrees degrees part
* @param minutes minutes part
* @param seconds seconds part
* @param cardinalName cardinal direction
*/
public DMSangle(int degrees, int minutes, double seconds, String cardinalName) {
this.degrees = degrees;
this.minutes = minutes;
this.seconds = seconds;
this.cardinalPoint = CardinalDirection.getCardinalDirectionFromName(cardinalName);
if (this.cardinalPoint == null){
throw new OrekitException(new MathRuntimeException(null, this.cardinalPoint));
}
}
/**
* @return the degrees part of the angle
*/
public int getDegrees() {
return degrees;
}
/**
* @return the minutes part of the angle
*/
public int getMinutes() {
return minutes;
}
/**
* @return the seconds part of the angle
*/
public double getSeconds() {
return seconds;
}
/**
* @return the cardinal direction of the latitude or the longitude
*/
public CardinalDirection getCardinalPoint() {
return cardinalPoint;
}
}
enum CardinalDirection {
North("North","N"),
South("South","S"),
West("West","W"),
East("East","E");
/**
* Cardinal direction full name
*/
private String cardinalFullName = null;
/**
* Cardinal direction short name
*/
private String cardinalShortName = null;
/**
* Private constructor
* @param fullName
* @param shortName
*/
private CardinalDirection(String fullName, String shortName){
this.cardinalFullName = fullName;
this.cardinalShortName = shortName;
}
/**
* Get the cardinal direction from name (long or short)
* @param cardinalName cardinal name (long or short)
* @return the CardinalDirection
*/
public static CardinalDirection getCardinalDirectionFromName(String cardinalName){
// Get the cardinal direction from full name ...
for (CardinalDirection currentName : CardinalDirection.values()) {
if (currentName.cardinalFullName.equals(cardinalName)) {
return currentName;
}
}
// otherwise get for short name ...
for (CardinalDirection currentName : CardinalDirection.values()) {
if (currentName.cardinalShortName.equals(cardinalName)) {
return currentName;
}
}
return null;
}
}
/* Copyright 2013-2014 CS Systèmes d'Information
* Licensed to CS Systèmes d'Information (CS) under one or more
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
......@@ -14,43 +14,41 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.geotiff;
package org.orekit.rugged.utils;
import org.hipparchus.util.FastMath;
import org.junit.Assert;
import org.junit.Test;
/** Enumerate for raster types.
* @see <a href="http://www.remotesensing.org/geotiff/spec/geotiff6.html#6.3.1.2">GeoTIFF specification, section 6.3.1.2</a>
* @author Luc Maisonobe
*/
enum RasterType {
// CHECKSTYLE: stop JavadocVariable check
UNDEFINED(0),
RASTER_PIXEL_IS_AREA(1),
RASTER_PIXEL_IS_POINT(2);
// CHECKSTYLE: resume JavadocVariable check
public class NormalizedGeodeticPointTest {
/** Type ID. */
private final int id;
/** Simple constructor.
* @param id key id
/**
* check {@link NormalizedGeodeticPoint#equals(Object)}.
*/
private RasterType(final int id) {
this.id = id;
}
@Test
public void testEquals() {
// setup
NormalizedGeodeticPoint point = new NormalizedGeodeticPoint(1, 2, 3, 4);
/** Get the type corresponding to an id.
* @param id type id
* @return the type corresponding to the id
* @exception IllegalArgumentException if the id does not correspond to a known type
*/
public static RasterType getType(final int id) {
for (RasterType type : values()) {
if (type.id == id) {
return type;
}
}
throw new IllegalArgumentException();
// actions + verify
Assert.assertEquals(point, new NormalizedGeodeticPoint(1, 2, 3, 4));
Assert.assertFalse(point.equals(new NormalizedGeodeticPoint(0, 2, 3, 4)));
Assert.assertFalse(point.equals(new NormalizedGeodeticPoint(1, 0, 3, 4)));
Assert.assertFalse(point.equals(new NormalizedGeodeticPoint(1, 2, 0, 4)));
Assert.assertFalse(point.equals(new NormalizedGeodeticPoint(1, 2, 3, 10)));
Assert.assertFalse(point.equals(new Object()));
}
/**
* check {@link NormalizedGeodeticPoint#hashCode()}.
*/
@Test
public void testHashCode() {
// setup
NormalizedGeodeticPoint point = new NormalizedGeodeticPoint(1, 2, 3, 4);
// actions + verify
Assert.assertEquals(point.hashCode(), new NormalizedGeodeticPoint(1, 2, 3, 4).hashCode());
Assert.assertNotEquals(point.hashCode(), new NormalizedGeodeticPoint(1, FastMath.nextUp(2), 3, 4).hashCode());
}
}
/* Copyright 2002-2014 CS Systèmes d'Information
* Licensed to CS Systèmes d'Information (CS) under one or more
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
......@@ -14,23 +14,18 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.core;
package org.orekit.rugged.utils;
import java.io.File;
import java.io.IOException;
import java.io.PrintStream;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import org.apache.commons.math3.geometry.euclidean.threed.Rotation;
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
import org.apache.commons.math3.ode.nonstiff.DormandPrince853Integrator;
import org.apache.commons.math3.util.FastMath;
import org.hipparchus.ode.nonstiff.DormandPrince853Integrator;
import org.hipparchus.util.FastMath;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.orekit.attitudes.AttitudeProvider;
import org.orekit.attitudes.NadirPointing;
......@@ -39,7 +34,7 @@ import org.orekit.bodies.BodyShape;
import org.orekit.bodies.CelestialBodyFactory;
import org.orekit.bodies.GeodeticPoint;
import org.orekit.bodies.OneAxisEllipsoid;
import org.orekit.data.DataProvidersManager;
import org.orekit.data.DataContext;
import org.orekit.data.DirectoryCrawler;
import org.orekit.errors.OrekitException;
import org.orekit.forces.gravity.HolmesFeatherstoneAttractionModel;
......@@ -55,224 +50,73 @@ import org.orekit.orbits.PositionAngle;
import org.orekit.propagation.Propagator;
import org.orekit.propagation.SpacecraftState;
import org.orekit.propagation.numerical.NumericalPropagator;
import org.orekit.rugged.api.GroundPoint;
import org.orekit.rugged.api.LineDatation;
import org.orekit.rugged.api.LinearLineDatation;
import org.orekit.rugged.api.PixelLOS;
import org.orekit.rugged.api.Rugged;
import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.api.SatellitePV;
import org.orekit.rugged.api.SatelliteQ;
import org.orekit.rugged.core.raster.CliffsElevationUpdater;
import org.orekit.rugged.core.raster.VolcanicConeElevationUpdater;
import org.orekit.time.AbsoluteDate;
import org.orekit.time.TimeScalesFactory;
import org.orekit.utils.Constants;
import org.orekit.utils.IERSConventions;
import org.orekit.utils.TimeStampedPVCoordinates;
public class RuggedImplTest {
public class RoughVisibilityEstimatorTest {
@Test
public void testSetContextWithoutOrekit()
throws RuggedException, OrekitException, URISyntaxException {
public void testThreeOrbitsSpan() throws URISyntaxException {
List<SatellitePV> pv = Arrays.asList(
new SatellitePV( 0.000, -1545168.478, -7001985.361, 0.000, -1095.152224, 231.344922, -7372.851944),
new SatellitePV( 1.000, -1546262.794, -7001750.226, -7372.851, -1093.478904, 238.925123, -7372.847995),
new SatellitePV( 2.000, -1547355.435, -7001507.511, -14745.693, -1091.804408, 246.505033, -7372.836044),
new SatellitePV( 3.000, -1548446.402, -7001257.216, -22118.520, -1090.128736, 254.084644, -7372.816090),
new SatellitePV( 4.000, -1549535.693, -7000999.342, -29491.323, -1088.451892, 261.663949, -7372.788133),
new SatellitePV( 5.000, -1550623.306, -7000733.888, -36864.094, -1086.773876, 269.242938, -7372.752175),
new SatellitePV( 6.000, -1551709.240, -7000460.856, -44236.825, -1085.094690, 276.821604, -7372.708214),
new SatellitePV( 7.000, -1552793.495, -7000180.245, -51609.507, -1083.414336, 284.399938, -7372.656251),
new SatellitePV( 8.000, -1553876.068, -6999892.056, -58982.134, -1081.732817, 291.977932, -7372.596287),
new SatellitePV( 9.000, -1554956.960, -6999596.289, -66354.697, -1080.050134, 299.555578, -7372.528320),
new SatellitePV(10.000, -1556036.168, -6999292.945, -73727.188, -1078.366288, 307.132868, -7372.452352),
new SatellitePV(11.000, -1557113.692, -6998982.024, -81099.599, -1076.681282, 314.709792, -7372.368382),
new SatellitePV(12.000, -1558189.530, -6998663.526, -88471.922, -1074.995118, 322.286344, -7372.276411),
new SatellitePV(13.000, -1559263.682, -6998337.451, -95844.150, -1073.307797, 329.862513, -7372.176439),
new SatellitePV(14.000, -1560336.145, -6998003.801, -103216.273, -1071.619321, 337.438294, -7372.068466),
new SatellitePV(15.000, -1561406.920, -6997662.575, -110588.284, -1069.929692, 345.013676, -7371.952492),
new SatellitePV(16.000, -1562476.004, -6997313.774, -117960.175, -1068.238912, 352.588652, -7371.828517),
new SatellitePV(17.000, -1563543.398, -6996957.398, -125331.938, -1066.546983, 360.163213, -7371.696542),
new SatellitePV(18.000, -1564609.098, -6996593.447, -132703.565, -1064.853906, 367.737352, -7371.556566),
new SatellitePV(19.000, -1565673.105, -6996221.923, -140075.049, -1063.159684, 375.311060, -7371.408591),
new SatellitePV(20.000, -1566735.417, -6995842.825, -147446.380, -1061.464319, 382.884328, -7371.252616));
List<SatelliteQ> q = Arrays.asList(
new SatelliteQ( 0.000, 0.516354347549, -0.400120145429, 0.583012133139, 0.483093065155),
new SatelliteQ( 1.000, 0.516659035405, -0.399867643627, 0.582741754688, 0.483302551263),
new SatelliteQ( 2.000, 0.516963581177, -0.399615033309, 0.582471217473, 0.483511904409),
new SatelliteQ( 3.000, 0.517267984776, -0.399362314553, 0.582200521577, 0.483721124530),
new SatelliteQ( 4.000, 0.517572246112, -0.399109487434, 0.581929667081, 0.483930211565),
new SatelliteQ( 5.000, 0.517876365096, -0.398856552030, 0.581658654071, 0.484139165451),
new SatelliteQ( 6.000, 0.518180341637, -0.398603508416, 0.581387482627, 0.484347986126),
new SatelliteQ( 7.000, 0.518484175647, -0.398350356669, 0.581116152834, 0.484556673529),
new SatelliteQ( 8.000, 0.518787867035, -0.398097096866, 0.580844664773, 0.484765227599),
new SatelliteQ( 9.000, 0.519091415713, -0.397843729083, 0.580573018530, 0.484973648272),
new SatelliteQ(10.000, 0.519394821590, -0.397590253397, 0.580301214186, 0.485181935488),
new SatelliteQ(11.000, 0.519698084578, -0.397336669885, 0.580029251825, 0.485390089185),
new SatelliteQ(12.000, 0.520001204587, -0.397082978623, 0.579757131530, 0.485598109301),
new SatelliteQ(13.000, 0.520304181527, -0.396829179688, 0.579484853385, 0.485805995775),
new SatelliteQ(14.000, 0.520607015311, -0.396575273158, 0.579212417473, 0.486013748545),
new SatelliteQ(15.000, 0.520909705847, -0.396321259108, 0.578939823877, 0.486221367550),
new SatelliteQ(16.000, 0.521212253049, -0.396067137616, 0.578667072681, 0.486428852729),
new SatelliteQ(17.000, 0.521514656825, -0.395812908759, 0.578394163969, 0.486636204020),
new SatelliteQ(18.000, 0.521816917089, -0.395558572613, 0.578121097824, 0.486843421362),
new SatelliteQ(19.000, 0.522119033749, -0.395304129256, 0.577847874330, 0.487050504694),
new SatelliteQ(20.000, 0.522421006719, -0.395049578765, 0.577574493570, 0.487257453954));
String path = getClass().getClassLoader().getResource("orekit-data").toURI().getPath();
RuggedImpl rugged = new RuggedImpl();
rugged.setGeneralContext(new File(path),
"2012-01-01T00:00:00",
Rugged.Algorithm.DUVENHAGE,
Rugged.Ellipsoid.WGS84,
Rugged.InertialFrame.EME2000,
Rugged.BodyRotatingFrame.ITRF,
pv, 8, q, 8);
Assert.assertEquals(new AbsoluteDate("2012-01-01T00:00:00", TimeScalesFactory.getUTC()),
rugged.getReferenceDate());
}
@Test
public void testSetContextWithOrekit()
throws RuggedException, OrekitException, URISyntaxException {
String path = getClass().getClassLoader().getResource("orekit-data").toURI().getPath();
DataProvidersManager.getInstance().addProvider(new DirectoryCrawler(new File(path)));
DataContext.getDefault().getDataProvidersManager().addProvider(new DirectoryCrawler(new File(path)));
BodyShape earth = createEarth();
NormalizedSphericalHarmonicsProvider gravityField = createGravityField();
Orbit orbit = createOrbit(gravityField);
Orbit orbit = createOrbit(gravityField.getMu());
Propagator propagator = createPropagator(earth, gravityField, orbit);
RuggedImpl rugged = new RuggedImpl();
rugged.setGeneralContext(null,
propagator.getInitialState().getDate(),
Rugged.Algorithm.DUVENHAGE,
Rugged.Ellipsoid.WGS84,
Rugged.InertialFrame.EME2000,
Rugged.BodyRotatingFrame.ITRF,
propagator);
Assert.assertEquals(propagator.getInitialState().getDate(), rugged.getReferenceDate());
final List<TimeStampedPVCoordinates> pv = new ArrayList<TimeStampedPVCoordinates>();
propagator.getMultiplexer().add(1.0, currentState -> pv.add(currentState.getPVCoordinates()));
propagator.propagate(orbit.getDate().shiftedBy(3 * orbit.getKeplerianPeriod()));
RoughVisibilityEstimator estimator = new RoughVisibilityEstimator(ellipsoid, orbit.getFrame(), pv);
AbsoluteDate d = estimator.estimateVisibility(new GeodeticPoint(FastMath.toRadians(-81.5),
FastMath.toRadians(-2.0),
0.0));
Assert.assertEquals(0.0,
new AbsoluteDate("2012-01-01T03:47:08.814121623",
TimeScalesFactory.getUTC()).durationFrom(d),
1.0e-8);
}
@Test
public void testMayonVolcano()
throws RuggedException, OrekitException, URISyntaxException {
public void testOneOrbitsSpan() throws URISyntaxException {
String path = getClass().getClassLoader().getResource("orekit-data").toURI().getPath();
DataProvidersManager.getInstance().addProvider(new DirectoryCrawler(new File(path)));
DataContext.getDefault().getDataProvidersManager().addProvider(new DirectoryCrawler(new File(path)));
BodyShape earth = createEarth();
NormalizedSphericalHarmonicsProvider gravityField = createGravityField();
Orbit orbit = createOrbit(gravityField);
// Mayon Volcano location according to Wikipedia: 13°15′24″N 123°41′6″E
GeodeticPoint summit =
new GeodeticPoint(FastMath.toRadians(13.25667), FastMath.toRadians(123.685), 2463.0);
VolcanicConeElevationUpdater updater =
new VolcanicConeElevationUpdater(summit,
FastMath.toRadians(30.0), 16.0,
FastMath.toRadians(1.0), 1201);
final AbsoluteDate crossing = new AbsoluteDate("2012-01-06T02:27:16.139", TimeScalesFactory.getUTC());
// one line sensor
// position: 1.5m in front (+X) and 20 cm above (-Z) of the S/C center of mass
// los: swath in the (YZ) plane, centered at +Z, ±10° aperture, 960 pixels
List<PixelLOS> los = createLOS(new Vector3D(1.5, 0, -0.2), Vector3D.PLUS_K, Vector3D.PLUS_I,
FastMath.toRadians(10.0), 960);
// linear datation model: at reference time we get line 1000, and the rate is one line every 1.5ms
LineDatation lineDatation = new LinearLineDatation(1000.0, 1.0 / 1.5e-3);
double firstLine = 520;
double lastLine = 1480;
Propagator propagator = createPropagator(earth, gravityField, orbit);
propagator.propagate(crossing.shiftedBy(lineDatation.getDate(firstLine) - 1.0));
propagator.setEphemerisMode();
propagator.propagate(crossing.shiftedBy(lineDatation.getDate(lastLine) + 1.0));
Propagator ephemeris = propagator.getGeneratedEphemeris();
RuggedImpl rugged = new RuggedImpl();
rugged.setGeneralContext(null,
crossing,
Rugged.Algorithm.DUVENHAGE,
Rugged.Ellipsoid.WGS84,
Rugged.InertialFrame.EME2000,
Rugged.BodyRotatingFrame.ITRF,
ephemeris);
rugged.setUpTilesManagement(updater, 8);
rugged.setLineSensor("line", los, lineDatation);
try {
PrintStream out = new PrintStream(new File(new File(System.getProperty("user.home")), "x.dat"));
long t0 = System.currentTimeMillis();
int pixels = 0;
for (double line = firstLine; line < lastLine; line++) {
GroundPoint[] gp = rugged.directLocalization("line", line);
for (int i = 0; i < gp.length; ++i) {
out.format(Locale.US, "%6.1f %3d %9.3f%n", line, i, gp[i].getAltitude());
}
pixels += los.size();
out.println();
if (line % 20 == 0) {
System.out.println(line);
}
}
long t1 = System.currentTimeMillis();
out.close();
System.out.println((pixels / (1.0e-3 * (t1 - t0))) + " pixels/s");
} catch (IOException ioe) {
Assert.fail(ioe.getLocalizedMessage());
}
}
@Test
public void testCliffsOfMoher()
throws RuggedException, OrekitException, URISyntaxException {
String path = getClass().getClassLoader().getResource("orekit-data").toURI().getPath();
DataProvidersManager.getInstance().addProvider(new DirectoryCrawler(new File(path)));
final BodyShape earth = createEarth();
NormalizedSphericalHarmonicsProvider gravityField = createGravityField();
Orbit orbit = createOrbit(gravityField);
Orbit orbit = createOrbit(gravityField.getMu());
Propagator propagator = createPropagator(earth, gravityField, orbit);
// cliffs of Moher location according to Wikipedia: 52°56′10″N 9°28′15″ W
GeodeticPoint north = new GeodeticPoint(FastMath.toRadians(52.9984),
FastMath.toRadians(-9.4072),
120.0);
GeodeticPoint south = new GeodeticPoint(FastMath.toRadians(52.9625),
FastMath.toRadians(-9.4369),
120.0);
CliffsElevationUpdater updater = new CliffsElevationUpdater(north, south,
120.0, 0.0,
FastMath.toRadians(1.0), 1201);
AbsoluteDate crossing = new AbsoluteDate("2012-01-07T11:50:05.778", TimeScalesFactory.getUTC());
// TODO: test the direct localization
final List<TimeStampedPVCoordinates> pv = new ArrayList<TimeStampedPVCoordinates>();
propagator.getMultiplexer().add(1.0, currentState -> pv.add(currentState.getPVCoordinates()));
propagator.propagate(orbit.getDate().shiftedBy(orbit.getKeplerianPeriod()));
RoughVisibilityEstimator estimator = new RoughVisibilityEstimator(ellipsoid, orbit.getFrame(), pv);
AbsoluteDate d = estimator.estimateVisibility(new GeodeticPoint(FastMath.toRadians(43.303),
FastMath.toRadians(-46.126),
0.0));
Assert.assertEquals(0.0,
new AbsoluteDate("2012-01-01T01:02:39.122526662",
TimeScalesFactory.getUTC()).durationFrom(d),
1.0e-8);
}
private BodyShape createEarth()
throws OrekitException {
private BodyShape createEarth() {
return new OneAxisEllipsoid(Constants.WGS84_EARTH_EQUATORIAL_RADIUS,
Constants.WGS84_EARTH_FLATTENING,
FramesFactory.getITRF(IERSConventions.IERS_2010, true));
Constants.WGS84_EARTH_FLATTENING,
FramesFactory.getITRF(IERSConventions.IERS_2010, true));
}
private NormalizedSphericalHarmonicsProvider createGravityField()
throws OrekitException {
private NormalizedSphericalHarmonicsProvider createGravityField() {
return GravityFieldFactory.getNormalizedProvider(12, 12);
}
private Orbit createOrbit(NormalizedSphericalHarmonicsProvider gravityField)
throws OrekitException {
private Orbit createOrbit(double mu) {
// the following orbital parameters have been computed using
// Orekit tutorial about phasing, using the following configuration:
//
......@@ -291,15 +135,14 @@ public class RuggedImplTest {
FastMath.toRadians(98.63218182243709),
FastMath.toRadians(77.55565567747836),
FastMath.PI, PositionAngle.TRUE,
eme2000, date, gravityField.getMu());
eme2000, date, mu);
}
private Propagator createPropagator(BodyShape earth,
NormalizedSphericalHarmonicsProvider gravityField,
Orbit orbit)
throws OrekitException {
Orbit orbit) {
AttitudeProvider yawCompensation = new YawCompensation(new NadirPointing(earth));
AttitudeProvider yawCompensation = new YawCompensation(orbit.getFrame(), new NadirPointing(orbit.getFrame(), earth));
SpacecraftState state = new SpacecraftState(orbit,
yawCompensation.getAttitude(orbit,
orbit.getDate(),
......@@ -310,9 +153,9 @@ public class RuggedImplTest {
OrbitType type = OrbitType.CIRCULAR;
double[][] tolerances = NumericalPropagator.tolerances(0.1, orbit, type);
DormandPrince853Integrator integrator =
new DormandPrince853Integrator(1.0e-4 * orbit.getKeplerianPeriod(),
1.0e-1 * orbit.getKeplerianPeriod(),
tolerances[0], tolerances[1]);
new DormandPrince853Integrator(1.0e-4 * orbit.getKeplerianPeriod(),
1.0e-1 * orbit.getKeplerianPeriod(),
tolerances[0], tolerances[1]);
integrator.setInitialStepSize(1.0e-2 * orbit.getKeplerianPeriod());
NumericalPropagator numericalPropagator = new NumericalPropagator(integrator);
numericalPropagator.addForceModel(new HolmesFeatherstoneAttractionModel(earth.getBodyFrame(), gravityField));
......@@ -325,17 +168,29 @@ public class RuggedImplTest {
}
private List<PixelLOS> createLOS(Vector3D offset, Vector3D center, Vector3D normal,
double halfAperture, int n) {
List<PixelLOS> list = new ArrayList<PixelLOS>(n);
for (int i = 0; i < n; ++i) {
double alpha = (halfAperture * (2 * i + 1 - n)) / (n - 1);
Vector3D los = new Rotation(normal, alpha).applyTo(center);
list.add(new PixelLOS(offset.getX(), offset.getY(), offset.getZ(),
los.getX(), los.getY(), los.getZ()));
@Before
public void setUp() {
try {
String path = getClass().getClassLoader().getResource("orekit-data").toURI().getPath();
DataContext.getDefault().getDataProvidersManager().addProvider(new DirectoryCrawler(new File(path)));
Frame itrf = FramesFactory.getITRF(IERSConventions.IERS_2010, true);
ellipsoid = new ExtendedEllipsoid(Constants.WGS84_EARTH_EQUATORIAL_RADIUS,
Constants.WGS84_EARTH_FLATTENING,
itrf);
} catch (OrekitException oe) {
Assert.fail(oe.getLocalizedMessage());
} catch (URISyntaxException use) {
Assert.fail(use.getLocalizedMessage());
}
return list;
}
}
@After
public void tearDown() {
ellipsoid = null;
}
private ExtendedEllipsoid ellipsoid;
}
/* Copyright 2013-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.rugged.utils;
import java.io.File;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.hipparchus.geometry.euclidean.threed.Vector3D;
import org.hipparchus.util.FastMath;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import org.orekit.bodies.BodyShape;
import org.orekit.data.DataContext;
import org.orekit.data.DirectoryCrawler;
import org.orekit.errors.OrekitException;
import org.orekit.frames.FramesFactory;
import org.orekit.orbits.Orbit;
import org.orekit.rugged.TestUtils;
import org.orekit.rugged.errors.RuggedException;
import org.orekit.rugged.errors.RuggedMessages;
import org.orekit.rugged.linesensor.LineSensor;
import org.orekit.rugged.linesensor.LinearLineDatation;
import org.orekit.rugged.los.LOSBuilder;
import org.orekit.time.AbsoluteDate;
import org.orekit.utils.AngularDerivativesFilter;
import org.orekit.utils.CartesianDerivativesFilter;
import org.orekit.utils.Constants;
import org.orekit.utils.TimeStampedAngularCoordinates;
import org.orekit.utils.TimeStampedPVCoordinates;
@RunWith(Parameterized.class)
public class SpacecraftToObservedBodyTest {
@Parameters
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] {
// Run multiple times the tests, constructing this class with the following parameters
{ +10, +1., -1., +1}, { -1., -10., -1., +1}, { -1., +1., +15., +1}, { -1., +1., -1., -15.}
});
}
// configuration of the run : shift of date for PV and Q (min and max values)
private double shiftPVmin;
private double shiftPVmax;
private double shiftQmin;
private double shiftQmax;
@Test
public void testIssue256() {
AbsoluteDate minSensorDate = sensor.getDate(0);
AbsoluteDate maxSensorDate = sensor.getDate(2000);
AbsoluteDate minPVdate = minSensorDate.shiftedBy(this.shiftPVmin);
AbsoluteDate maxPVdate = maxSensorDate.shiftedBy(this.shiftPVmax);
List<TimeStampedPVCoordinates> pvList = TestUtils.orbitToPV(orbit, earth, minPVdate, maxPVdate, 0.25);
AbsoluteDate minQdate = minSensorDate.shiftedBy(this.shiftQmin);
AbsoluteDate maxQdate = maxSensorDate.shiftedBy(this.shiftQmax);
List<TimeStampedAngularCoordinates> qList = TestUtils.orbitToQ(orbit, earth, minQdate, maxQdate, 0.25);
try {
new SpacecraftToObservedBody(FramesFactory.getEME2000(), earth.getBodyFrame(),
minSensorDate, maxSensorDate, 0.01,
5.0,
pvList,
8, CartesianDerivativesFilter.USE_PV,
qList,
2, AngularDerivativesFilter.USE_R);
Assert.fail("an exception should have been thrown");
} catch (RuggedException re){
Assert.assertEquals(RuggedMessages.OUT_OF_TIME_RANGE, re.getSpecifier());
}
}
public SpacecraftToObservedBodyTest(double shiftPVmin, double shiftPVmax, double shiftQmin, double shiftQmax) {
super();
this.shiftPVmin = shiftPVmin;
this.shiftPVmax = shiftPVmax;
this.shiftQmin = shiftQmin;
this.shiftQmax = shiftQmax;
}
@Before
public void setUp() {
try {
String path = getClass().getClassLoader().getResource("orekit-data").toURI().getPath();
DataContext.getDefault().getDataProvidersManager().addProvider(new DirectoryCrawler(new File(path)));
earth = TestUtils.createEarth();
orbit = TestUtils.createOrbit(Constants.EIGEN5C_EARTH_MU);
// build lists of pixels regularly spread on a perfect plane
final Vector3D position = new Vector3D(1.5, Vector3D.PLUS_I);
final Vector3D normal = Vector3D.PLUS_I;
final Vector3D fovCenter = Vector3D.PLUS_K;
final Vector3D cross = Vector3D.crossProduct(normal, fovCenter);
final List<Vector3D> los = new ArrayList<Vector3D>();
for (int i = -1000; i <= 1000; ++i) {
final double alpha = i * 0.17 / 1000;
los.add(new Vector3D(FastMath.cos(alpha), fovCenter, FastMath.sin(alpha), cross));
}
sensor = new LineSensor("perfect line", new LinearLineDatation(AbsoluteDate.J2000_EPOCH, 0.0, 1.0 / 1.5e-3),
position, new LOSBuilder(los).build());
} catch (OrekitException oe) {
Assert.fail(oe.getLocalizedMessage());
} catch (URISyntaxException use) {
Assert.fail(use.getLocalizedMessage());
}
}
@After
public void tearDown() {
}
private BodyShape earth = null;
private Orbit orbit = null;
private LineSensor sensor = null;
}
# no Digital Elevation Model data at latitude {0} and longitude {1}
NO_DEM_DATA = <MISSING TRANSLATION>
# unknown sensor {0}
UNKNOWN_SENSOR = ABCDEF {0}
# tile is empty: {0} ⨉ {1}
EMPTY_TILE =
\ No newline at end of file
......@@ -21,15 +21,15 @@
1968 Feb. 1 - 1972 Jan. 1 4.213 170 0s + ""
1972 Jan. 1 - Jul. 1 10s
Jul. 1 - 1973 Jan. 1 11s
1973 Jan. 1 - 1974 Jan. 1 12s
1974 Jan. 1 - 1975 Jan. 1 13s
1975 Jan. 1 - 1976 Jan. 1 14s
1976 Jan. 1 - 1977 Jan. 1 15s
1973 Jan. 1 - 1974 Jan. 1 12s
1974 Jan. 1 - 1975 Jan. 1 13s
1975 Jan. 1 - 1976 Jan. 1 14s
1976 Jan. 1 - 1977 Jan. 1 15s
1977 Jan. 1 - 1978 Jan. 1 16s
1978 Jan. 1 - 1979 Jan. 1 17s
1979 Jan. 1 - 1980 Jan. 1 18s
1980 Jan. 1 - 1981 Jul. 1 19s
1981 Jul. 1 - 1982 Jul. 1 20s
1978 Jan. 1 - 1979 Jan. 1 17s
1979 Jan. 1 - 1980 Jan. 1 18s
1980 Jan. 1 - 1981 Jul. 1 19s
1981 Jul. 1 - 1982 Jul. 1 20s
1982 Jul. 1 - 1983 Jul. 1 21s
1983 Jul. 1 - 1985 Jul. 1 22s
1985 Jul. 1 - 1988 Jan. 1 23s
......@@ -44,5 +44,7 @@
1999 Jan. 1.- 2006 Jan. 1 32s
2006 Jan. 1.- 2009 Jan. 1 33s
2009 Jan. 1.- 2012 Jul 1 34s
2012 Jul 1 - 35s
2012 Jul 1 - 2015 Jul 1 35s
2015 Jul 1 - 2017 Jan 1 36s
2017 Jan 1 - 37s
----------------------------------------------------------------------
INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE
EARTH ORIENTATION PARAMETERS
EOP (IERS) 08 C04
FORMAT(3(I4),I7,2(F11.6),2(F12.7),2(F11.6),2(F11.6),2(F11.7),2F12.6)
**********************************************************************************
Date MJD x y UT1-UTC LOD dPsi dEps x Err y Err UT1-UTC Err LOD Err dPsi Err dEpsilon Err
" " s s " " " " s s " "
(0h UTC)
2012 1 1 55927 0.118700 0.263209 -0.4190307 0.0012643 -0.070168 -0.007486 0.000019 0.000021 0.0000070 0.0000055 0.000337 0.000215
2012 1 2 55928 0.117478 0.262407 -0.4202660 0.0011668 -0.070304 -0.007394 0.000018 0.000020 0.0000043 0.0000055 0.000268 0.000169
2012 1 3 55929 0.115947 0.261649 -0.4213914 0.0010732 -0.070405 -0.007323 0.000018 0.000020 0.0000046 0.0000055 0.000202 0.000127
2012 1 4 55930 0.114546 0.260620 -0.4223894 0.0009431 -0.070443 -0.007319 0.000018 0.000019 0.0000024 0.0000054 0.000140 0.000088
2012 1 5 55931 0.113261 0.260200 -0.4232747 0.0008274 -0.070463 -0.007396 0.000018 0.000019 0.0000140 0.0000054 0.000191 0.000121
2012 1 6 55932 0.111438 0.259932 -0.4240546 0.0007439 -0.070523 -0.007490 0.000018 0.000019 0.0000031 0.0000054 0.000274 0.000174
2012 1 7 55933 0.108883 0.259664 -0.4247816 0.0007242 -0.070657 -0.007541 0.000018 0.000019 0.0000036 0.0000053 0.000273 0.000170
2012 1 8 55934 0.106429 0.258874 -0.4255338 0.0007866 -0.070776 -0.007617 0.000018 0.000019 0.0000056 0.0000055 0.000242 0.000144
2012 1 9 55935 0.104225 0.258041 -0.4263648 0.0009020 -0.070701 -0.007760 0.000019 0.000021 0.0000066 0.0000055 0.000209 0.000118
2012 1 10 55936 0.101787 0.257252 -0.4272859 0.0009794 -0.070382 -0.007919 0.000019 0.000021 0.0000030 0.0000055 0.000178 0.000092
2012 1 11 55937 0.099783 0.256002 -0.4283517 0.0011310 -0.070010 -0.008015 0.000019 0.000020 0.0000152 0.0000055 0.000205 0.000108
2012 1 12 55938 0.098374 0.255057 -0.4295936 0.0013295 -0.069835 -0.007966 0.000019 0.000020 0.0000041 0.0000053 0.000245 0.000135
2012 1 13 55939 0.097330 0.254481 -0.4310036 0.0014854 -0.069937 -0.007806 0.000019 0.000020 0.0000029 0.0000053 0.000284 0.000162
2012 1 14 55940 0.096133 0.254325 -0.4325201 0.0015230 -0.070228 -0.007595 0.000019 0.000020 0.0000058 0.0000052 0.000274 0.000157
2012 1 15 55941 0.094902 0.254379 -0.4340233 0.0014555 -0.070510 -0.007408 0.000019 0.000020 0.0000076 0.0000033 0.000246 0.000139
2012 1 16 55942 0.093576 0.254528 -0.4354233 0.0013370 -0.070708 -0.007246 0.000020 0.000020 0.0000063 0.0000014 0.000077 0.000043
2012 1 17 55943 0.091710 0.254906 -0.4366664 0.0011580 -0.070863 -0.007136 0.000020 0.000020 0.0000040 0.0000014 0.000073 0.000041
2012 1 18 55944 0.089569 0.254798 -0.4377220 0.0009552 -0.071047 -0.007143 0.000019 0.000020 0.0000012 0.0000014 0.000070 0.000040
2012 1 19 55945 0.087373 0.254461 -0.4385853 0.0007743 -0.071073 -0.007370 0.000019 0.000020 0.0000219 0.0000014 0.000100 0.000049
2012 1 20 55946 0.085428 0.254180 -0.4393168 0.0006897 -0.070970 -0.007728 0.000019 0.000020 0.0000042 0.0000014 0.000140 0.000062
2012 1 21 55947 0.083249 0.254651 -0.4400245 0.0007410 -0.070854 -0.008012 0.000019 0.000020 0.0000024 0.0000014 0.000158 0.000071
2012 1 22 55948 0.080627 0.254924 -0.4408023 0.0008370 -0.070685 -0.008050 0.000019 0.000020 0.0000042 0.0000011 0.000164 0.000077
2012 1 23 55949 0.078598 0.255078 -0.4416951 0.0009573 -0.070483 -0.007842 0.000019 0.000020 0.0000056 0.0000010 0.000171 0.000085
2012 1 24 55950 0.076541 0.255624 -0.4427049 0.0010539 -0.070365 -0.007568 0.000019 0.000020 0.0000028 0.0000010 0.000176 0.000091
2012 1 25 55951 0.074227 0.255806 -0.4437962 0.0011148 -0.070405 -0.007403 0.000018 0.000019 0.0000151 0.0000010 0.000198 0.000101
2012 1 26 55952 0.071900 0.256092 -0.4449204 0.0011189 -0.070589 -0.007455 0.000018 0.000019 0.0000071 0.0000010 0.000222 0.000111
2012 1 27 55953 0.069358 0.256156 -0.4460334 0.0010883 -0.070862 -0.007640 0.000018 0.000019 0.0000025 0.0000010 0.000246 0.000120
2012 1 28 55954 0.066770 0.256221 -0.4470732 0.0010003 -0.071038 -0.007816 0.000018 0.000019 0.0000154 0.0000010 0.000223 0.000109
2012 1 29 55955 0.064294 0.256203 -0.4479982 0.0008641 -0.071126 -0.007879 0.000018 0.000019 0.0000049 0.0000012 0.000183 0.000090
2012 1 30 55956 0.061824 0.255972 -0.4487993 0.0007511 -0.071117 -0.007868 0.000019 0.000021 0.0000048 0.0000017 0.000142 0.000071
2012 1 31 55957 0.059292 0.255822 -0.4494656 0.0006002 -0.070972 -0.007908 0.000019 0.000021 0.0000020 0.0000017 0.000102 0.000052
2012 2 1 55958 0.056906 0.255521 -0.4499897 0.0004580 -0.070793 -0.008039 0.000019 0.000020 0.0000026 0.0000015 0.000090 0.000046
2012 2 2 55959 0.054725 0.255253 -0.4504155 0.0003937 -0.070618 -0.008208 0.000019 0.000020 0.0000040 0.0000015 0.000088 0.000045
2012 2 3 55960 0.052998 0.254824 -0.4508189 0.0004269 -0.070535 -0.008318 0.000019 0.000018 0.0000018 0.0000015 0.000085 0.000044
2012 2 4 55961 0.051408 0.254365 -0.4512567 0.0004943 -0.070586 -0.008381 0.000019 0.000018 0.0000196 0.0000015 0.000095 0.000041
2012 2 5 55962 0.049333 0.254085 -0.4517747 0.0005607 -0.070709 -0.008487 0.000019 0.000020 0.0000080 0.0000015 0.000109 0.000037
2012 2 6 55963 0.047368 0.254001 -0.4524402 0.0007546 -0.070832 -0.008724 0.000022 0.000023 0.0000070 0.0000017 0.000075 0.000040
2012 2 7 55964 0.045706 0.254220 -0.4533091 0.0009995 -0.070689 -0.008950 0.000022 0.000023 0.0000023 0.0000017 0.000071 0.000038
2012 2 8 55965 0.044328 0.254546 -0.4544131 0.0012229 -0.070179 -0.008960 0.000021 0.000022 0.0000350 0.0000016 0.000085 0.000046
2012 2 9 55966 0.043192 0.255056 -0.4557227 0.0013892 -0.069728 -0.008708 0.000021 0.000022 0.0000087 0.0000016 0.000105 0.000056
2012 2 10 55967 0.042172 0.255797 -0.4571640 0.0014757 -0.069623 -0.008355 0.000021 0.000022 0.0000028 0.0000016 0.000125 0.000067
2012 2 11 55968 0.041276 0.256690 -0.4586395 0.0014643 -0.070131 -0.008143 0.000021 0.000022 0.0000103 0.0000016 0.000124 0.000067
2012 2 12 55969 0.040311 0.257438 -0.4600560 0.0013481 -0.070807 -0.008168 0.000021 0.000022 0.0000090 0.0000014 0.000116 0.000063
2012 2 13 55970 0.038861 0.258102 -0.4613256 0.0011742 -0.071300 -0.008335 0.000022 0.000025 0.0000081 0.0000012 0.000109 0.000061
2012 2 14 55971 0.037082 0.258631 -0.4623763 0.0009157 -0.071577 -0.008509 0.000022 0.000025 0.0000030 0.0000012 0.000103 0.000057
2012 2 15 55972 0.035700 0.259565 -0.4631795 0.0006923 -0.071479 -0.008660 0.000021 0.000024 0.0000638 0.0000012 0.000101 0.000057
2012 2 16 55973 0.034328 0.260928 -0.4637969 0.0005548 -0.071388 -0.008834 0.000021 0.000024 0.0000067 0.0000012 0.000100 0.000057
2012 2 17 55974 0.033052 0.261952 -0.4643422 0.0005356 -0.071338 -0.009063 0.000021 0.000024 0.0000019 0.0000012 0.000100 0.000057
2012 2 18 55975 0.031627 0.263077 -0.4649159 0.0006173 -0.071389 -0.009269 0.000021 0.000024 0.0000033 0.0000012 0.000130 0.000074
2012 2 19 55976 0.030595 0.263990 -0.4655836 0.0007289 -0.071323 -0.009340 0.000021 0.000024 0.0000052 0.0000014 0.000172 0.000096
2012 2 20 55977 0.029688 0.265055 -0.4663655 0.0008446 -0.071203 -0.009216 0.000023 0.000028 0.0000060 0.0000018 0.000213 0.000120
2012 2 21 55978 0.028345 0.265672 -0.4672390 0.0008971 -0.071159 -0.008985 0.000023 0.000028 0.0000052 0.0000018 0.000254 0.000142
2012 2 22 55979 0.026675 0.266316 -0.4681516 0.0009304 -0.071247 -0.008806 0.000022 0.000027 0.0000027 0.0000018 0.000291 0.000160
2012 2 23 55980 0.024689 0.267060 -0.4690540 0.0008475 -0.071124 -0.008826 0.000022 0.000027 0.0000198 0.0000018 0.000229 0.000126
2012 2 24 55981 0.022814 0.267829 -0.4698906 0.0007513 -0.070922 -0.009030 0.000022 0.000027 0.0000016 0.0000018 0.000138 0.000076
2012 2 25 55982 0.021568 0.268920 -0.4706253 0.0006815 -0.070943 -0.009327 0.000022 0.000027 0.0000028 0.0000018 0.000123 0.000068
2012 2 26 55983 0.020597 0.270273 -0.4712585 0.0005631 -0.071081 -0.009570 0.000022 0.000027 0.0000063 0.0000018 0.000139 0.000076
2012 2 27 55984 0.020119 0.271192 -0.4718084 0.0005016 -0.071209 -0.009738 0.000027 0.000030 0.0000069 0.0000019 0.000154 0.000083
2012 2 28 55985 0.019720 0.271968 -0.4722734 0.0004154 -0.071207 -0.009928 0.000027 0.000030 0.0000024 0.0000019 0.000169 0.000091
2012 2 29 55986 0.019069 0.273018 -0.4726379 0.0003138 -0.071063 -0.010135 0.000026 0.000030 0.0000356 0.0000019 0.000213 0.000127
2012 3 1 55987 0.018798 0.274244 -0.4729194 0.0002463 -0.070954 -0.010328 0.000023 0.000025 0.0000086 0.0000022 0.000284 0.000171
2012 3 2 55988 0.018937 0.275646 -0.4731884 0.0002932 -0.070932 -0.010371 0.000023 0.000025 0.0000040 0.0000022 0.000354 0.000216
2012 3 3 55989 0.018563 0.277173 -0.4735285 0.0003928 -0.070970 -0.010250 0.000023 0.000025 0.0000039 0.0000022 0.000343 0.000192
2012 3 4 55990 0.017782 0.278172 -0.4739946 0.0005434 -0.070983 -0.010112 0.000023 0.000025 0.0000043 0.0000022 0.000301 0.000144
2012 3 5 55991 0.017387 0.279057 -0.4746191 0.0007031 -0.070883 -0.010243 0.000021 0.000024 0.0000040 0.0000021 0.000286 0.000146
2012 3 6 55992 0.016938 0.279996 -0.4754440 0.0009276 -0.070723 -0.010455 0.000021 0.000024 0.0000023 0.0000021 0.000260 0.000126
2012 3 7 55993 0.015713 0.280781 -0.4764778 0.0011170 -0.070413 -0.010529 0.000021 0.000023 0.0000253 0.0000021 0.000223 0.000107
2012 3 8 55994 0.014414 0.281463 -0.4776973 0.0012909 -0.070091 -0.010305 0.000021 0.000023 0.0000110 0.0000021 0.000182 0.000087
2012 3 9 55995 0.013219 0.282526 -0.4790665 0.0014230 -0.069995 -0.009941 0.000021 0.000023 0.0000027 0.0000021 0.000141 0.000068
2012 3 10 55996 0.012112 0.283779 -0.4805270 0.0014563 -0.070203 -0.009770 0.000021 0.000023 0.0000048 0.0000021 0.000135 0.000065
2012 3 11 55997 0.011081 0.285000 -0.4819953 0.0014503 -0.070524 -0.009939 0.000021 0.000023 0.0000064 0.0000021 0.000142 0.000069
2012 3 12 55998 0.009693 0.286339 -0.4833724 0.0012916 -0.070703 -0.010287 0.000022 0.000024 0.0000076 0.0000023 0.000150 0.000074
2012 3 13 55999 0.008716 0.287402 -0.4846160 0.0011775 -0.070680 -0.010585 0.000022 0.000024 0.0000076 0.0000023 0.000157 0.000077
2012 3 14 56000 0.007787 0.288851 -0.4857658 0.0011305 -0.070593 -0.010746 0.000021 0.000023 0.0000023 0.0000022 0.000165 0.000081
2012 3 15 56001 0.006396 0.290088 -0.4868843 0.0011365 -0.070551 -0.010853 0.000021 0.000023 0.0000239 0.0000022 0.000129 0.000067
2012 3 16 56002 0.004961 0.291305 -0.4880525 0.0012366 -0.070625 -0.010941 0.000021 0.000023 0.0000022 0.0000022 0.000082 0.000048
2012 3 17 56003 0.003408 0.292453 -0.4893520 0.0013827 -0.070713 -0.011022 0.000021 0.000023 0.0000060 0.0000022 0.000081 0.000048
2012 3 18 56004 0.001664 0.293818 -0.4907959 0.0014974 -0.070676 -0.011058 0.000021 0.000023 0.0000098 0.0000022 0.000098 0.000056
2012 3 19 56005 -0.000066 0.295068 -0.4923400 0.0015768 -0.070509 -0.011020 0.000021 0.000024 0.0000088 0.0000023 0.000114 0.000064
2012 3 20 56006 -0.001503 0.295981 -0.4939230 0.0015941 -0.070350 -0.010905 0.000021 0.000024 0.0000033 0.0000023 0.000130 0.000071
2012 3 21 56007 -0.002628 0.296959 -0.4954831 0.0015507 -0.070283 -0.010736 0.000020 0.000023 0.0000308 0.0000022 0.000119 0.000066
2012 3 22 56008 -0.003668 0.298210 -0.4969786 0.0014646 -0.070261 -0.010623 0.000020 0.000023 0.0000074 0.0000022 0.000101 0.000057
2012 3 23 56009 -0.004461 0.299582 -0.4983959 0.0013760 -0.070228 -0.010657 0.000020 0.000023 0.0000032 0.0000022 0.000082 0.000048
2012 3 24 56010 -0.004601 0.300921 -0.4997354 0.0013061 -0.070034 -0.010870 0.000020 0.000023 0.0000040 0.0000022 0.000077 0.000045
2012 3 25 56011 -0.005048 0.302625 -0.5009856 0.0012063 -0.069791 -0.011147 0.000020 0.000023 0.0000065 0.0000018 0.000078 0.000045
2012 3 26 56012 -0.005769 0.303991 -0.5021345 0.0011041 -0.069449 -0.011395 0.000020 0.000024 0.0000060 0.0000015 0.000076 0.000043
2012 3 27 56013 -0.006669 0.305064 -0.5031977 0.0010361 -0.069090 -0.011610 0.000020 0.000024 0.0000022 0.0000015 0.000075 0.000042
2012 3 28 56014 -0.007584 0.305823 -0.5042043 0.0010024 -0.069008 -0.011905 0.000019 0.000023 0.0000037 0.0000015 0.000107 0.000058
2012 3 29 56015 -0.008111 0.307058 -0.5051893 0.0009960 -0.069165 -0.012207 0.000019 0.000023 0.0000051 0.0000015 0.000143 0.000076
2012 3 30 56016 -0.008824 0.308790 -0.5061999 0.0010312 -0.069447 -0.012356 0.000019 0.000023 0.0000024 0.0000015 0.000180 0.000093
2012 3 31 56017 -0.009569 0.310658 -0.5072863 0.0011621 -0.069494 -0.012188 0.000019 0.000023 0.0000018 0.0000015 0.000192 0.000103
2012 4 1 56018 -0.010272 0.312753 -0.5085085 0.0013212 -0.069294 -0.011868 0.000019 0.000023 0.0000044 0.0000018 0.000194 0.000111
2012 4 2 56019 -0.011351 0.314853 -0.5098935 0.0014645 -0.069044 -0.011671 0.000020 0.000023 0.0000059 0.0000023 0.000170 0.000114
2012 4 3 56020 -0.012264 0.316855 -0.5114393 0.0016464 -0.068888 -0.011732 0.000020 0.000023 0.0000029 0.0000023 0.000172 0.000121
2012 4 4 56021 -0.012896 0.318655 -0.5131549 0.0017876 -0.068517 -0.011861 0.000019 0.000022 0.0000241 0.0000023 0.000181 0.000128
2012 4 5 56022 -0.013364 0.320312 -0.5149928 0.0018599 -0.068109 -0.011757 0.000019 0.000022 0.0000019 0.0000023 0.000191 0.000134
2012 4 6 56023 -0.013715 0.322168 -0.5168595 0.0018563 -0.068172 -0.011479 0.000019 0.000022 0.0000202 0.0000023 0.000182 0.000129
2012 4 7 56024 -0.013652 0.324149 -0.5186314 0.0016680 -0.068553 -0.011351 0.000021 0.000022 0.0000088 0.0000023 0.000166 0.000120
2012 4 8 56025 -0.013097 0.325975 -0.5202021 0.0014264 -0.068998 -0.011551 0.000021 0.000022 0.0000079 0.0000023 0.000150 0.000110
2012 4 9 56026 -0.012284 0.327886 -0.5215395 0.0012179 -0.069332 -0.011878 0.000020 0.000023 0.0000069 0.0000023 0.000134 0.000102
2012 4 10 56027 -0.011627 0.330100 -0.5226753 0.0010577 -0.069558 -0.012167 0.000020 0.000023 0.0000046 0.0000023 0.000117 0.000093
2012 4 11 56028 -0.010886 0.332532 -0.5236983 0.0009927 -0.069704 -0.012337 0.000020 0.000022 0.0000028 0.0000022 0.000095 0.000083
2012 4 12 56029 -0.009896 0.334821 -0.5247296 0.0010518 -0.069650 -0.012469 0.000020 0.000022 0.0000184 0.0000022 0.000067 0.000058
2012 4 13 56030 -0.008876 0.337102 -0.5258404 0.0011597 -0.069590 -0.012572 0.000020 0.000022 0.0000026 0.0000022 0.000035 0.000029
2012 4 14 56031 -0.008011 0.339146 -0.5270311 0.0012156 -0.069688 -0.012588 0.000020 0.000022 0.0000041 0.0000022 0.000036 0.000028
2012 4 15 56032 -0.007230 0.341115 -0.5282793 0.0012592 -0.069826 -0.012527 0.000020 0.000022 0.0000066 0.0000022 0.000049 0.000037
2012 4 16 56033 -0.006329 0.342951 -0.5295673 0.0013069 -0.069808 -0.012453 0.000020 0.000023 0.0000048 0.0000024 0.000068 0.000047
2012 4 17 56034 -0.005199 0.344926 -0.5308783 0.0013224 -0.069582 -0.012394 0.000020 0.000023 0.0000015 0.0000024 0.000082 0.000056
2012 4 18 56035 -0.004236 0.347145 -0.5321965 0.0013050 -0.069315 -0.012287 0.000022 0.000024 0.0000216 0.0000024 0.000087 0.000059
2012 4 19 56036 -0.003430 0.349499 -0.5334911 0.0012692 -0.069164 -0.012148 0.000022 0.000024 0.0000034 0.0000024 0.000091 0.000061
2012 4 20 56037 -0.002859 0.351929 -0.5347248 0.0011976 -0.069155 -0.012089 0.000022 0.000024 0.0000015 0.0000024 0.000095 0.000064
2012 4 21 56038 -0.002364 0.354154 -0.5358613 0.0010735 -0.069261 -0.012258 0.000022 0.000024 0.0000184 0.0000024 0.000086 0.000058
2012 4 22 56039 -0.001494 0.356002 -0.5368881 0.0009847 -0.069339 -0.012593 0.000022 0.000024 0.0000048 0.0000024 0.000072 0.000048
2012 4 23 56040 -0.000272 0.357958 -0.5378074 0.0008768 -0.069290 -0.012913 0.000022 0.000026 0.0000056 0.0000102 0.000060 0.000040
2012 4 24 56041 0.000653 0.359920 -0.5386339 0.0007777 -0.069134 -0.013105 0.000022 0.000026 0.0000020 0.0000102 0.000046 0.000030
2012 4 25 56042 0.001379 0.361760 -0.5394047 0.0007599 -0.068805 -0.013171 0.000021 0.000026 0.0000238 0.0000100 0.000129 0.000046
2012 4 26 56043 0.002156 0.363391 -0.5401645 0.0007562 -0.068635 -0.013204 0.000021 0.000026 0.0000078 0.0000100 0.000238 0.000069
2012 4 27 56044 0.003382 0.364806 -0.5409514 0.0008113 -0.068636 -0.013182 0.000021 0.000026 0.0000102 0.0000100 0.000347 0.000091
2012 4 28 56045 0.004355 0.366218 -0.5417935 0.0008890 -0.069335 -0.012819 0.000021 0.000026 0.0000085 0.0000099 0.000219 0.000081
2012 4 29 56046 0.005295 0.367419 -0.5427026 0.0009543 -0.069078 -0.012569 0.000021 0.000026 0.0000075 0.0000099 0.000163 0.000075
2012 4 30 56047 0.006321 0.368720 -0.5436860 0.0010777 -0.068707 -0.012625 0.000022 0.000027 0.0000081 0.0000104 0.000086 0.000061
2012 5 1 56048 0.007701 0.369896 -0.5448627 0.0012836 -0.068608 -0.012605 0.000022 0.000027 0.0000060 0.0000104 0.000086 0.000061
2012 5 2 56049 0.009214 0.370867 -0.5462259 0.0014206 -0.068826 -0.012694 0.000021 0.000026 0.0000038 0.0000099 0.000099 0.000071
2012 5 3 56050 0.010546 0.371897 -0.5476981 0.0014781 -0.069229 -0.012627 0.000021 0.000026 0.0000011 0.0000095 0.000106 0.000076
2012 5 4 56051 0.011863 0.373233 -0.5491911 0.0014524 -0.069485 -0.012563 0.000021 0.000026 0.0000003 0.0000099 0.000073 0.000053
2012 5 5 56052 0.013328 0.374713 -0.5505806 0.0013560 -0.069863 -0.012485 0.000021 0.000026 0.0000124 0.0000101 0.000072 0.000050
2012 5 6 56053 0.015115 0.376289 -0.5519143 0.0011972 -0.070142 -0.012602 0.000021 0.000026 0.0000108 0.0000097 0.000087 0.000058
2012 5 7 56054 0.016308 0.378006 -0.5529813 0.0009654 -0.070198 -0.012803 0.000021 0.000029 0.0000082 0.0000099 0.000098 0.000065
2012 5 8 56055 0.016994 0.379387 -0.5538805 0.0008582 -0.070119 -0.012891 0.000021 0.000029 0.0000023 0.0000095 0.000112 0.000072
2012 5 9 56056 0.017569 0.380756 -0.5546775 0.0008585 -0.069907 -0.012879 0.000020 0.000027 0.0000084 0.0000087 0.000099 0.000065
2012 5 10 56057 0.017690 0.381913 -0.5555654 0.0008893 -0.069596 -0.012912 0.000020 0.000027 0.0000094 0.0000087 0.000080 0.000055
2012 5 11 56058 0.017780 0.382703 -0.5564987 0.0009321 -0.069307 -0.012993 0.000020 0.000027 0.0000021 0.0000090 0.000061 0.000045
2012 5 12 56059 0.018358 0.383365 -0.5574634 0.0009890 -0.069260 -0.013039 0.000020 0.000027 0.0000147 0.0000093 0.000055 0.000042
2012 5 13 56060 0.019698 0.384038 -0.5584999 0.0010488 -0.069517 -0.012986 0.000020 0.000027 0.0000130 0.0000089 0.000054 0.000041
2012 5 14 56061 0.021579 0.384748 -0.5595554 0.0010784 -0.069769 -0.012921 0.000018 0.000021 0.0000075 0.0000086 0.000053 0.000041
2012 5 15 56062 0.023673 0.385619 -0.5606062 0.0010969 -0.069732 -0.012913 0.000016 0.000018 0.0000026 0.0000086 0.000052 0.000041
2012 5 16 56063 0.025895 0.386691 -0.5617379 0.0010618 -0.069716 -0.012863 0.000015 0.000020 0.0000114 0.0000082 0.000074 0.000040
2012 5 17 56064 0.027811 0.387502 -0.5626890 0.0009536 -0.069895 -0.012739 0.000015 0.000020 0.0000068 0.0000079 0.000104 0.000040
2012 5 18 56065 0.029234 0.388335 -0.5636053 0.0008258 -0.070364 -0.012625 0.000017 0.000022 0.0000037 0.0000078 0.000134 0.000040
2012 5 19 56066 0.030346 0.388884 -0.5643392 0.0006682 -0.070752 -0.012671 0.000019 0.000025 0.0000060 0.0000080 0.000132 0.000037
2012 5 20 56067 0.031434 0.389058 -0.5649455 0.0005017 -0.070930 -0.012894 0.000017 0.000022 0.0000061 0.0000078 0.000118 0.000034
2012 5 21 56068 0.032275 0.389282 -0.5653980 0.0004082 -0.070839 -0.013130 0.000016 0.000022 0.0000118 0.0000074 0.000105 0.000031
2012 5 22 56069 0.033210 0.389771 -0.5657928 0.0004042 -0.070531 -0.013206 0.000016 0.000022 0.0000061 0.0000074 0.000092 0.000027
2012 5 23 56070 0.034221 0.390526 -0.5661696 0.0004037 -0.070335 -0.013163 0.000015 0.000021 0.0000111 0.0000074 0.000088 0.000029
2012 5 24 56071 0.035455 0.391205 -0.5665821 0.0004431 -0.070346 -0.013110 0.000015 0.000021 0.0000075 0.0000074 0.000101 0.000033
2012 5 25 56072 0.037074 0.391898 -0.5670903 0.0005170 -0.070569 -0.013122 0.000015 0.000021 0.0000039 0.0000074 0.000114 0.000037
2012 5 26 56073 0.039082 0.392483 -0.5677077 0.0006670 -0.070800 -0.013142 0.000015 0.000021 0.0000159 0.0000073 0.000115 0.000038
2012 5 27 56074 0.041109 0.393177 -0.5684351 0.0008057 -0.070791 -0.013087 0.000015 0.000021 0.0000142 0.0000073 0.000112 0.000038
2012 5 28 56075 0.042920 0.393837 -0.5693419 0.0009406 -0.070485 -0.012943 0.000016 0.000022 0.0000129 0.0000072 0.000137 0.000039
2012 5 29 56076 0.044706 0.394674 -0.5703691 0.0010727 -0.070225 -0.012826 0.000016 0.000022 0.0000088 0.0000072 0.000132 0.000039
2012 5 30 56077 0.045635 0.395458 -0.5714640 0.0011683 -0.070276 -0.012702 0.000015 0.000021 0.0000045 0.0000071 0.000126 0.000038
2012 5 31 56078 0.046295 0.395962 -0.5726044 0.0012286 -0.070618 -0.012609 0.000018 0.000022 0.0000062 0.0000077 0.000074 0.000057
2012 6 1 56079 0.046904 0.396529 -0.5738579 0.0011900 -0.071257 -0.012369 0.000018 0.000022 0.0000020 0.0000077 0.000059 0.000038
2012 6 2 56080 0.047752 0.397169 -0.5750136 0.0010731 -0.071831 -0.012258 0.000018 0.000022 0.0000048 0.0000077 0.000057 0.000035
2012 6 3 56081 0.048883 0.397593 -0.5759777 0.0008980 -0.072129 -0.012381 0.000018 0.000022 0.0000064 0.0000080 0.000061 0.000037
2012 6 4 56082 0.050164 0.397885 -0.5768206 0.0007145 -0.072142 -0.012567 0.000016 0.000021 0.0000066 0.0000082 0.000065 0.000041
2012 6 5 56083 0.051748 0.398092 -0.5774835 0.0006022 -0.072030 -0.012599 0.000016 0.000021 0.0000049 0.0000082 0.000069 0.000043
2012 6 6 56084 0.053303 0.398675 -0.5780250 0.0006101 -0.071878 -0.012479 0.000015 0.000021 0.0000020 0.0000077 0.000071 0.000046
2012 6 7 56085 0.054801 0.398944 -0.5786822 0.0007000 -0.071568 -0.012441 0.000015 0.000021 0.0000117 0.0000074 0.000071 0.000046
2012 6 8 56086 0.056559 0.399505 -0.5794676 0.0008186 -0.071242 -0.012537 0.000015 0.000021 0.0000033 0.0000071 0.000071 0.000045
2012 6 9 56087 0.058236 0.400027 -0.5803155 0.0008893 -0.071307 -0.012653 0.000015 0.000021 0.0000142 0.0000074 0.000071 0.000046
2012 6 10 56088 0.059975 0.400443 -0.5812728 0.0008809 -0.071842 -0.012688 0.000015 0.000021 0.0000086 0.0000071 0.000071 0.000047
2012 6 11 56089 0.061732 0.401401 -0.5820705 0.0008119 -0.072477 -0.012672 0.000017 0.000022 0.0000092 0.0000067 0.000073 0.000048
2012 6 12 56090 0.063526 0.402509 -0.5828366 0.0007430 -0.072772 -0.012667 0.000017 0.000022 0.0000080 0.0000067 0.000074 0.000049
2012 6 13 56091 0.064962 0.403874 -0.5835287 0.0006265 -0.072702 -0.012641 0.000017 0.000021 0.0000021 0.0000065 0.000077 0.000053
2012 6 14 56092 0.065967 0.404715 -0.5840927 0.0004785 -0.072646 -0.012506 0.000017 0.000021 0.0000055 0.0000065 0.000081 0.000057
2012 6 15 56093 0.066912 0.405172 -0.5844996 0.0003328 -0.072889 -0.012344 0.000017 0.000021 0.0000019 0.0000062 0.000086 0.000063
2012 6 16 56094 0.067613 0.405417 -0.5847645 0.0002061 -0.073420 -0.012398 0.000017 0.000021 0.0000080 0.0000065 0.000109 0.000076
2012 6 17 56095 0.068671 0.405618 -0.5849684 0.0001149 -0.073902 -0.012639 0.000017 0.000021 0.0000088 0.0000071 0.000140 0.000091
2012 6 18 56096 0.070078 0.405863 -0.5850269 0.0000151 -0.074157 -0.012914 0.000018 0.000022 0.0000090 0.0000077 0.000163 0.000103
2012 6 19 56097 0.071947 0.406222 -0.5849518 -0.0000577 -0.074191 -0.013050 0.000018 0.000022 0.0000044 0.0000077 0.000189 0.000115
2012 6 20 56098 0.073719 0.406799 -0.5848340 -0.0000932 -0.074069 -0.012939 0.000016 0.000022 0.0000025 0.0000079 0.000151 0.000099
2012 6 21 56099 0.075527 0.407342 -0.5847583 -0.0000777 -0.073980 -0.012750 0.000016 0.000022 0.0000019 0.0000079 0.000118 0.000079
2012 6 22 56100 0.077422 0.407945 -0.5847443 -0.0000077 -0.074072 -0.012633 0.000016 0.000022 0.0000013 0.0000076 0.000084 0.000059
2012 6 23 56101 0.078904 0.408461 -0.5848059 0.0001223 -0.074459 -0.012644 0.000016 0.000022 0.0000160 0.0000075 0.000082 0.000057
2012 6 24 56102 0.080862 0.408502 -0.5850064 0.0002569 -0.074897 -0.012665 0.000016 0.000022 0.0000086 0.0000075 0.000092 0.000061
2012 6 25 56103 0.083114 0.408517 -0.5853030 0.0003872 -0.075138 -0.012604 0.000017 0.000022 0.0000104 0.0000074 0.000103 0.000065
2012 6 26 56104 0.085285 0.408564 -0.5857136 0.0004553 -0.075181 -0.012445 0.000015 0.000019 0.0000044 0.0000073 0.000113 0.000068
2012 6 27 56105 0.087439 0.408651 -0.5861801 0.0004176 -0.075103 -0.012197 0.000014 0.000018 0.0000136 0.0000073 0.000092 0.000055
2012 6 28 56106 0.089473 0.409002 -0.5865662 0.0003057 -0.075226 -0.011906 0.000014 0.000018 0.0000077 0.0000073 0.000062 0.000038
2012 6 29 56107 0.091346 0.409225 -0.5867776 0.0001678 -0.075577 -0.011683 0.000014 0.000018 0.0000018 0.0000073 0.000032 0.000021
2012 6 30 56108 0.092800 0.409392 -0.5868238 0.0000012 -0.076036 -0.011665 0.000014 0.000018 0.0000449 0.0000076 0.000034 0.000021
2012 7 1 56109 0.094064 0.409151 0.4131816 -0.0001241 -0.076311 -0.011892 0.000014 0.000018 0.0000122 0.0000075 0.000047 0.000029
2012 7 2 56110 0.095640 0.408939 0.4133963 -0.0002276 -0.076307 -0.012172 0.000019 0.000022 0.0000087 0.0000073 0.000060 0.000037
2012 7 3 56111 0.097268 0.408650 0.4136688 -0.0002157 -0.076222 -0.012284 0.000019 0.000022 0.0000024 0.0000073 0.000074 0.000044
2012 7 4 56112 0.098946 0.408274 0.4137809 -0.0001348 -0.076047 -0.012193 0.000018 0.000023 0.0000153 0.0000072 0.000076 0.000046
2012 7 5 56113 0.100502 0.407981 0.4138739 -0.0000409 -0.075789 -0.012052 0.000018 0.000023 0.0000091 0.0000072 0.000077 0.000046
2012 7 6 56114 0.102491 0.407531 0.4138922 0.0000899 -0.075538 -0.012024 0.000018 0.000023 0.0000028 0.0000072 0.000077 0.000046
2012 7 7 56115 0.105059 0.407518 0.4137229 0.0002019 -0.075651 -0.012116 0.000018 0.000023 0.0000161 0.0000072 0.000073 0.000044
2012 7 8 56116 0.107683 0.407590 0.4134589 0.0002824 -0.076221 -0.012243 0.000018 0.000023 0.0000124 0.0000072 0.000068 0.000042
2012 7 9 56117 0.110089 0.407731 0.4131662 0.0002979 -0.076980 -0.012337 0.000017 0.000020 0.0000076 0.0000075 0.000065 0.000040
2012 7 10 56118 0.111864 0.407792 0.4128977 0.0002350 -0.077512 -0.012372 0.000015 0.000018 0.0000019 0.0000074 0.000059 0.000037
2012 7 11 56119 0.113448 0.407539 0.4127029 0.0001164 -0.077604 -0.012362 0.000018 0.000021 0.0000126 0.0000070 0.000054 0.000034
2012 7 12 56120 0.114869 0.407288 0.4126306 -0.0000738 -0.077563 -0.012303 0.000018 0.000021 0.0000106 0.0000070 0.000048 0.000031
2012 7 13 56121 0.116662 0.407013 0.4128536 -0.0002246 -0.077673 -0.012247 0.000018 0.000021 0.0000027 0.0000070 0.000042 0.000028
2012 7 14 56122 0.118293 0.407111 0.4131009 -0.0002932 -0.078053 -0.012225 0.000022 0.000023 0.0000082 0.0000075 0.000046 0.000031
2012 7 15 56123 0.119936 0.407332 0.4133776 -0.0003112 -0.078446 -0.012269 0.000022 0.000023 0.0000052 0.0000078 0.000053 0.000035
2012 7 16 56124 0.121393 0.407270 0.4137799 -0.0003142 -0.078669 -0.012322 0.000020 0.000023 0.0000117 0.0000075 0.000060 0.000040
2012 7 17 56125 0.122814 0.407047 0.4140680 -0.0002586 -0.078766 -0.012311 0.000020 0.000023 0.0000040 0.0000072 0.000067 0.000044
2012 7 18 56126 0.124435 0.406840 0.4141897 -0.0001211 -0.078600 -0.012272 0.000019 0.000021 0.0000055 0.0000072 0.000065 0.000042
2012 7 19 56127 0.126239 0.406643 0.4142080 0.0000848 -0.078325 -0.012221 0.000019 0.000021 0.0000034 0.0000072 0.000061 0.000038
2012 7 20 56128 0.127745 0.406264 0.4140650 0.0002780 -0.078105 -0.012191 0.000019 0.000021 0.0000013 0.0000072 0.000057 0.000035
2012 7 21 56129 0.129227 0.405785 0.4137358 0.0003926 -0.078243 -0.012173 0.000019 0.000021 0.0000051 0.0000072 0.000076 0.000035
2012 7 22 56130 0.130787 0.405125 0.4132710 0.0004882 -0.078689 -0.012137 0.000019 0.000021 0.0000047 0.0000072 0.000103 0.000037
2012 7 23 56131 0.132387 0.404523 0.4127181 0.0005677 -0.079203 -0.012172 0.000018 0.000021 0.0000041 0.0000069 0.000058 0.000033
2012 7 24 56132 0.133932 0.404018 0.4121307 0.0005665 -0.079588 -0.012114 0.000018 0.000021 0.0000014 0.0000069 0.000055 0.000033
2012 7 25 56133 0.135614 0.403272 0.4115946 0.0005071 -0.079822 -0.011923 0.000017 0.000020 0.0000139 0.0000066 0.000046 0.000028
2012 7 26 56134 0.137280 0.402524 0.4110659 0.0004115 -0.079999 -0.011693 0.000017 0.000020 0.0000084 0.0000066 0.000042 0.000024
2012 7 27 56135 0.138993 0.401814 0.4107666 0.0002750 -0.080240 -0.011514 0.000017 0.000020 0.0000020 0.0000066 0.000038 0.000019
2012 7 28 56136 0.140920 0.401178 0.4105485 0.0001827 -0.080545 -0.011551 0.000017 0.000020 0.0000078 0.0000069 0.000039 0.000019
2012 7 29 56137 0.142506 0.401049 0.4104218 0.0001033 -0.080837 -0.011799 0.000223 0.000101 0.0000051 0.0000270 0.000041 0.000021
2012 7 30 56138 0.143480 0.400692 0.4103389 0.0000898 -0.080969 -0.012092 0.000020 0.000022 0.0000102 0.0000081 0.000238 0.000050
2012 7 31 56139 0.144625 0.400215 0.4102122 0.0001944 -0.081101 -0.012275 0.000020 0.000022 0.0000100 0.0000081 0.000239 0.000052
2012 8 1 56140 0.145946 0.399829 0.4099390 0.0003125 -0.080801 -0.012443 0.000020 0.000023 0.0000101 0.0000079 0.000033 0.000017
2012 8 2 56141 0.147315 0.399345 0.4095109 0.0004448 -0.080723 -0.012129 0.000020 0.000023 0.0000248 0.0000080 0.000046 0.000023
2012 8 3 56142 0.148473 0.398802 0.4090457 0.0005349 -0.080594 -0.011832 0.000020 0.000023 0.0000056 0.0000080 0.000060 0.000030
2012 8 4 56143 0.149249 0.398140 0.4084970 0.0005555 -0.080556 -0.011720 0.000020 0.000023 0.0000047 0.0000079 0.000067 0.000034
2012 8 5 56144 0.149979 0.397590 0.4078980 0.0005695 -0.080767 -0.011777 0.000020 0.000023 0.0000052 0.0000076 0.000072 0.000037
2012 8 6 56145 0.150671 0.397024 0.4074006 0.0005046 -0.081464 -0.012002 0.000020 0.000023 0.0000178 0.0000075 0.000071 0.000035
2012 8 7 56146 0.151467 0.396333 0.4069557 0.0003400 -0.081928 -0.012109 0.000020 0.000023 0.0000060 0.0000075 0.000073 0.000036
2012 8 8 56147 0.152500 0.395877 0.4066848 0.0001660 -0.082017 -0.012056 0.000019 0.000022 0.0000130 0.0000079 0.000081 0.000041
2012 8 9 56148 0.153731 0.395218 0.4065725 0.0000398 -0.081876 -0.011947 0.000019 0.000022 0.0000146 0.0000079 0.000090 0.000046
2012 8 10 56149 0.155332 0.394230 0.4065859 -0.0000282 -0.081683 -0.011883 0.000019 0.000022 0.0000036 0.0000076 0.000099 0.000052
2012 8 11 56150 0.156948 0.393425 0.4066744 -0.0000903 -0.081690 -0.011985 0.000019 0.000022 0.0000088 0.0000079 0.000096 0.000050
2012 8 12 56151 0.158540 0.392912 0.4068334 -0.0001849 -0.081824 -0.012153 0.000019 0.000022 0.0000101 0.0000078 0.000089 0.000045
2012 8 13 56152 0.160221 0.392335 0.4070462 -0.0001930 -0.081966 -0.012282 0.000020 0.000023 0.0000134 0.0000075 0.000084 0.000040
2012 8 14 56153 0.162134 0.391867 0.4071880 -0.0000865 -0.082120 -0.012361 0.000020 0.000023 0.0000041 0.0000075 0.000076 0.000035
2012 8 15 56154 0.163362 0.391425 0.4072338 0.0000221 -0.082163 -0.012357 0.000019 0.000022 0.0000178 0.0000073 0.000067 0.000031
2012 8 16 56155 0.164337 0.390714 0.4071029 0.0001697 -0.082078 -0.012354 0.000019 0.000022 0.0000102 0.0000073 0.000058 0.000028
2012 8 17 56156 0.165627 0.389979 0.4068344 0.0003544 -0.081944 -0.012322 0.000019 0.000022 0.0000025 0.0000073 0.000049 0.000025
2012 8 18 56157 0.167118 0.389033 0.4064603 0.0005000 -0.081912 -0.012210 0.000019 0.000022 0.0000222 0.0000073 0.000042 0.000022
2012 8 19 56158 0.168597 0.387928 0.4058641 0.0006231 -0.082148 -0.011990 0.000024 0.000027 0.0000098 0.0000069 0.000036 0.000019
2012 8 20 56159 0.169942 0.386763 0.4051827 0.0006640 -0.082630 -0.011755 0.000023 0.000026 0.0000150 0.0000059 0.000030 0.000016
2012 8 21 56160 0.171298 0.385398 0.4044970 0.0006236 -0.083161 -0.011633 0.000023 0.000026 0.0000044 0.0000059 0.000024 0.000013
2012 8 22 56161 0.172368 0.384295 0.4039089 0.0005211 -0.083511 -0.011672 0.000023 0.000027 0.0000107 0.0000060 0.000036 0.000019
2012 8 23 56162 0.173431 0.383057 0.4034457 0.0003728 -0.083553 -0.011788 0.000021 0.000025 0.0000130 0.0000060 0.000053 0.000028
2012 8 24 56163 0.174105 0.382028 0.4031042 0.0002330 -0.083381 -0.011900 0.000025 0.000025 0.0000031 0.0000066 0.000070 0.000037
2012 8 25 56164 0.174644 0.380911 0.4029126 0.0001327 -0.083254 -0.011986 0.000027 0.000025 0.0000127 0.0000066 0.000087 0.000047
2012 8 26 56165 0.175245 0.379956 0.4027897 0.0001302 -0.083296 -0.012112 0.000219 0.000124 0.0000091 0.0000255 0.000104 0.000058
2012 8 27 56166 0.175637 0.378763 0.4025922 0.0002565 -0.083455 -0.012282 0.000029 0.000030 0.0000075 0.0000065 0.000122 0.000065
2012 8 28 56167 0.176051 0.377272 0.4022464 0.0004426 -0.083583 -0.012399 0.000029 0.000030 0.0000023 0.0000061 0.000139 0.000075
2012 8 29 56168 0.176396 0.375751 0.4017502 0.0006084 -0.083503 -0.012376 0.000029 0.000029 0.0000144 0.0000069 0.000118 0.000066
2012 8 30 56169 0.176738 0.374268 0.4010153 0.0007421 -0.083288 -0.012170 0.000029 0.000029 0.0000074 0.0000069 0.000085 0.000046
2012 8 31 56170 0.177099 0.373095 0.4002225 0.0008255 -0.083075 -0.011886 0.000027 0.000029 0.0000018 0.0000066 0.000051 0.000025
2012 9 1 56171 0.177275 0.371957 0.3993713 0.0008531 -0.082944 -0.011662 0.000025 0.000026 0.0000068 0.0000063 0.000045 0.000021
2012 9 2 56172 0.176992 0.370856 0.3985346 0.0008164 -0.082942 -0.011607 0.000025 0.000026 0.0000062 0.0000060 0.000049 0.000024
2012 9 3 56173 0.176650 0.369576 0.3977350 0.0007865 -0.083067 -0.011692 0.000022 0.000025 0.0000038 0.0000060 0.000052 0.000027
2012 9 4 56174 0.176375 0.368337 0.3969768 0.0006557 -0.083244 -0.011805 0.000022 0.000025 0.0000021 0.0000060 0.000056 0.000030
2012 9 5 56175 0.176227 0.366835 0.3964221 0.0004809 -0.083362 -0.011866 0.000024 0.000024 0.0000010 0.0000068 0.000060 0.000033
2012 9 6 56176 0.176079 0.365318 0.3960766 0.0003651 -0.083464 -0.011945 0.000024 0.000024 0.0000127 0.0000078 0.000066 0.000038
2012 9 7 56177 0.175947 0.363610 0.3957532 0.0002873 -0.083427 -0.012071 0.000024 0.000026 0.0000033 0.0000085 0.000072 0.000042
2012 9 8 56178 0.175877 0.362235 0.3954737 0.0001969 -0.083231 -0.012211 0.000022 0.000024 0.0000111 0.0000071 0.000068 0.000040
2012 9 9 56179 0.175770 0.360924 0.3953274 0.0002235 -0.083140 -0.012317 0.000020 0.000022 0.0000063 0.0000065 0.000060 0.000036
2012 9 10 56180 0.175594 0.359634 0.3950609 0.0003344 -0.083212 -0.012313 0.000019 0.000024 0.0000054 0.0000067 0.000052 0.000031
2012 9 11 56181 0.175696 0.358288 0.3946589 0.0004786 -0.083306 -0.012203 0.000019 0.000024 0.0000015 0.0000070 0.000044 0.000026
2012 9 12 56182 0.176007 0.357211 0.3940966 0.0006534 -0.083277 -0.012090 0.000017 0.000025 0.0000098 0.0000072 0.000052 0.000031
2012 9 13 56183 0.176196 0.356139 0.3933510 0.0008391 -0.083139 -0.012078 0.000017 0.000025 0.0000047 0.0000069 0.000063 0.000036
2012 9 14 56184 0.176741 0.355007 0.3923733 0.0010866 -0.082985 -0.012110 0.000017 0.000023 0.0000017 0.0000065 0.000074 0.000041
2012 9 15 56185 0.177425 0.353913 0.3911818 0.0013191 -0.082987 -0.012058 0.000017 0.000023 0.0000124 0.0000193 0.000078 0.000042
2012 9 16 56186 0.177784 0.352812 0.3897334 0.0014194 -0.083129 -0.011825 0.000017 0.000023 0.0000065 0.0000233 0.000079 0.000043
2012 9 17 56187 0.177802 0.351932 0.3883459 0.0014015 -0.083394 -0.011545 0.000017 0.000023 0.0000066 0.0000234 0.000078 0.000042
2012 9 18 56188 0.177737 0.350812 0.3869787 0.0012928 -0.083695 -0.011385 0.000017 0.000023 0.0000022 0.0000335 0.000068 0.000036
2012 9 19 56189 0.177452 0.349704 0.3857794 0.0011324 -0.083806 -0.011393 0.000017 0.000026 0.0000089 0.0000326 0.000067 0.000040
2012 9 20 56190 0.177149 0.348196 0.3847136 0.0009374 -0.083695 -0.011487 0.000017 0.000026 0.0000054 0.0000272 0.000074 0.000044
2012 9 21 56191 0.176564 0.346359 0.3838781 0.0007399 -0.083380 -0.011553 0.000017 0.000026 0.0000020 0.0000059 0.000081 0.000049
2012 9 22 56192 0.176120 0.344589 0.3832650 0.0006562 -0.083110 -0.011586 0.000017 0.000026 0.0000213 0.0000694 0.000075 0.000046
2012 9 23 56193 0.175882 0.343246 0.3825801 0.0006935 -0.082917 -0.011621 0.000015 0.000026 0.0000082 0.0000825 0.000064 0.000040
2012 9 24 56194 0.175608 0.342116 0.3818287 0.0007769 -0.082817 -0.011669 0.000016 0.000032 0.0000050 0.0000066 0.000056 0.000035
2012 9 25 56195 0.174962 0.341530 0.3810195 0.0009283 -0.082783 -0.011690 0.000018 0.000032 0.0000013 0.0000072 0.000044 0.000029
2012 9 26 56196 0.173929 0.341108 0.3799844 0.0011293 -0.082638 -0.011609 0.000018 0.000029 0.0000145 0.0000070 0.000046 0.000031
2012 9 27 56197 0.173095 0.340541 0.3787985 0.0012887 -0.082490 -0.011420 0.000018 0.000029 0.0000066 0.0000064 0.000053 0.000034
2012 9 28 56198 0.172110 0.339831 0.3774630 0.0013459 -0.082451 -0.011170 0.000018 0.000027 0.0000018 0.0000057 0.000060 0.000037
2012 9 29 56199 0.170690 0.338621 0.3761286 0.0013303 -0.082564 -0.010986 0.000018 0.000029 0.0000067 0.0000061 0.000064 0.000041
2012 9 30 56200 0.169484 0.336658 0.3748316 0.0012338 -0.082731 -0.010927 0.000018 0.000029 0.0000106 0.0000061 0.000066 0.000045
2012 10 1 56201 0.168893 0.334488 0.3736748 0.0010666 -0.082877 -0.011015 0.000020 0.000029 0.0000062 0.0000061 0.000071 0.000049
2012 10 2 56202 0.168556 0.332869 0.3726886 0.0008843 -0.083009 -0.011197 0.000017 0.000027 0.0000021 0.0000064 0.000074 0.000054
2012 10 3 56203 0.168261 0.331527 0.3719108 0.0007204 -0.083116 -0.011340 0.000019 0.000027 0.0000085 0.0000059 0.000072 0.000050
2012 10 4 56204 0.168218 0.330668 0.3712561 0.0006217 -0.083033 -0.011430 0.000019 0.000027 0.0000187 0.0000056 0.000067 0.000044
2012 10 5 56205 0.167775 0.329688 0.3706736 0.0005530 -0.082700 -0.011502 0.000019 0.000027 0.0000043 0.0000053 0.000063 0.000038
2012 10 6 56206 0.166829 0.328457 0.3701593 0.0005139 -0.082229 -0.011617 0.000019 0.000027 0.0000253 0.0000053 0.000071 0.000043
2012 10 7 56207 0.165776 0.327262 0.3696645 0.0005181 -0.081924 -0.011720 0.000019 0.000027 0.0000081 0.0000059 0.000085 0.000053
2012 10 8 56208 0.164811 0.326195 0.3691114 0.0006293 -0.081837 -0.011720 0.000019 0.000033 0.0000027 0.0000060 0.000096 0.000064
2012 10 9 56209 0.163850 0.325275 0.3684334 0.0007981 -0.081782 -0.011561 0.000016 0.000030 0.0000205 0.0000053 0.000113 0.000075
2012 10 10 56210 0.162665 0.324057 0.3675127 0.0009569 -0.081579 -0.011371 0.000015 0.000030 0.0000296 0.0000053 0.000127 0.000085
2012 10 11 56211 0.161680 0.322876 0.3664814 0.0011412 -0.081328 -0.011319 0.000017 0.000030 0.0000053 0.0000059 0.000140 0.000095
2012 10 12 56212 0.160551 0.322152 0.3652754 0.0013041 -0.081345 -0.011451 0.000019 0.000030 0.0000001 0.0000059 0.000057 0.000038
2012 10 13 56213 0.159093 0.321446 0.3638545 0.0014383 -0.081515 -0.011514 0.000017 0.000030 0.0000110 0.0000056 0.000026 0.000017
2012 10 14 56214 0.157601 0.320568 0.3623838 0.0015090 -0.081653 -0.011362 0.000017 0.000030 0.0000069 0.0000060 0.000025 0.000016
2012 10 15 56215 0.156054 0.319968 0.3608963 0.0014698 -0.081632 -0.011090 0.000022 0.000032 0.0000087 0.0000066 0.000023 0.000015
2012 10 16 56216 0.154180 0.319360 0.3594887 0.0013351 -0.081463 -0.010877 0.000020 0.000032 0.0000017 0.0000063 0.000021 0.000014
2012 10 17 56217 0.152154 0.318297 0.3582199 0.0011582 -0.081128 -0.010796 0.000018 0.000032 0.0000113 0.0000060 0.000020 0.000014
2012 10 18 56218 0.150678 0.317253 0.3571501 0.0009695 -0.080927 -0.010744 0.000016 0.000030 0.0000201 0.0000058 0.000019 0.000013
2012 10 19 56219 0.149569 0.316662 0.3562671 0.0008218 -0.080929 -0.010654 0.000018 0.000033 0.0000044 0.0000061 0.000019 0.000013
2012 10 20 56220 0.148043 0.316131 0.3554928 0.0007675 -0.081019 -0.010633 0.000020 0.000033 0.0000085 0.0000061 0.000033 0.000024
2012 10 21 56221 0.146608 0.315322 0.3547440 0.0007928 -0.080875 -0.010726 0.000020 0.000033 0.0000061 0.0000067 0.000054 0.000039
2012 10 22 56222 0.145543 0.314380 0.3538588 0.0008641 -0.080466 -0.010836 0.000021 0.000033 0.0000060 0.0000069 0.000074 0.000055
2012 10 23 56223 0.145007 0.313268 0.3530058 0.0009556 -0.080038 -0.010828 0.000021 0.000030 0.0000018 0.0000059 0.000094 0.000071
2012 10 24 56224 0.145213 0.312435 0.3519872 0.0010597 -0.079882 -0.010681 0.000022 0.000029 0.0000066 0.0000057 0.000109 0.000080
2012 10 25 56225 0.145615 0.311852 0.3509033 0.0011278 -0.079954 -0.010492 0.000020 0.000030 0.0000041 0.0000054 0.000123 0.000087
2012 10 26 56226 0.145955 0.311525 0.3497695 0.0011597 -0.080162 -0.010337 0.000017 0.000030 0.0000016 0.0000051 0.000137 0.000095
2012 10 27 56227 0.146089 0.311350 0.3485935 0.0011237 -0.080289 -0.010192 0.000017 0.000027 0.0000118 0.0000051 0.000130 0.000092
2012 10 28 56228 0.145902 0.311464 0.3474828 0.0010661 -0.080347 -0.010066 0.000017 0.000027 0.0000142 0.0000051 0.000115 0.000084
2012 10 29 56229 0.144985 0.311623 0.3464489 0.0009639 -0.080330 -0.010012 0.000018 0.000028 0.0000077 0.0000058 0.000101 0.000075
2012 10 30 56230 0.144143 0.311322 0.3455521 0.0008863 -0.080227 -0.010069 0.000018 0.000028 0.0000012 0.0000058 0.000086 0.000068
2012 10 31 56231 0.143952 0.311344 0.3446854 0.0008094 -0.080110 -0.010203 0.000018 0.000027 0.0000110 0.0000060 0.000074 0.000057
2012 11 1 56232 0.143335 0.311322 0.3439558 0.0007282 -0.079845 -0.010309 0.000018 0.000027 0.0000078 0.0000060 0.000063 0.000045
2012 11 2 56233 0.142496 0.311202 0.3432281 0.0007022 -0.079396 -0.010347 0.000018 0.000027 0.0000018 0.0000056 0.000051 0.000033
2012 11 3 56234 0.141501 0.311090 0.3425405 0.0007021 -0.078835 -0.010344 0.000018 0.000027 0.0000043 0.0000056 0.000077 0.000053
2012 11 4 56235 0.140655 0.310338 0.3417878 0.0008071 -0.078448 -0.010351 0.000018 0.000024 0.0000070 0.0000056 0.000117 0.000086
2012 11 5 56236 0.139661 0.309499 0.3409540 0.0008889 -0.078331 -0.010337 0.000018 0.000023 0.0000056 0.0000058 0.000158 0.000121
2012 11 6 56237 0.138701 0.308399 0.3400027 0.0010174 -0.078223 -0.010183 0.000018 0.000026 0.0000016 0.0000058 0.000199 0.000154
2012 11 7 56238 0.138146 0.307641 0.3389408 0.0011536 -0.078078 -0.009984 0.000017 0.000026 0.0000081 0.0000061 0.000166 0.000128
2012 11 8 56239 0.137681 0.306960 0.3377096 0.0012756 -0.077951 -0.009889 0.000017 0.000026 0.0000151 0.0000061 0.000115 0.000087
2012 11 9 56240 0.137470 0.306697 0.3363673 0.0013616 -0.078036 -0.009969 0.000019 0.000026 0.0000035 0.0000065 0.000064 0.000047
2012 11 10 56241 0.136415 0.306862 0.3349822 0.0014158 -0.078263 -0.010036 0.000019 0.000026 0.0000117 0.0000065 0.000054 0.000038
2012 11 11 56242 0.135140 0.306608 0.3335328 0.0014946 -0.078443 -0.009956 0.000017 0.000026 0.0000114 0.0000057 0.000059 0.000042
2012 11 12 56243 0.134281 0.306265 0.3320174 0.0015146 -0.078354 -0.009773 0.000018 0.000027 0.0000078 0.0000060 0.000066 0.000045
2012 11 13 56244 0.133366 0.305787 0.3305276 0.0014486 -0.077924 -0.009650 0.000018 0.000027 0.0000017 0.0000060 0.000071 0.000049
2012 11 14 56245 0.132333 0.305606 0.3291377 0.0013427 -0.077283 -0.009701 0.000017 0.000026 0.0000061 0.0000060 0.000079 0.000054
2012 11 15 56246 0.131284 0.305387 0.3278387 0.0012898 -0.076871 -0.009727 0.000017 0.000026 0.0000094 0.0000060 0.000088 0.000060
2012 11 16 56247 0.130376 0.305026 0.3265250 0.0012852 -0.076965 -0.009628 0.000017 0.000026 0.0000022 0.0000060 0.000097 0.000066
2012 11 17 56248 0.129972 0.304514 0.3252155 0.0013455 -0.077475 -0.009546 0.000017 0.000026 0.0000050 0.0000060 0.000087 0.000059
2012 11 18 56249 0.129616 0.304629 0.3237804 0.0015122 -0.077747 -0.009663 0.000017 0.000026 0.0000057 0.0000060 0.000071 0.000048
2012 11 19 56250 0.128850 0.304488 0.3221868 0.0016714 -0.077499 -0.009864 0.000020 0.000036 0.0000111 0.0000063 0.000055 0.000037
2012 11 20 56251 0.127719 0.304116 0.3204734 0.0017408 -0.077080 -0.009872 0.000020 0.000036 0.0000033 0.0000063 0.000039 0.000025
2012 11 21 56252 0.126270 0.303725 0.3187318 0.0017465 -0.076641 -0.009673 0.000017 0.000030 0.0000002 0.0000058 0.000063 0.000045
2012 11 22 56253 0.124830 0.303039 0.3170010 0.0017007 -0.076630 -0.009377 0.000017 0.000030 0.0000085 0.0000058 0.000066 0.000048
2012 11 23 56254 0.123682 0.302270 0.3153139 0.0016361 -0.076771 -0.009188 0.000017 0.000030 0.0000077 0.0000058 0.000058 0.000041
2012 11 24 56255 0.122815 0.301758 0.3137377 0.0015098 -0.076867 -0.009113 0.000017 0.000030 0.0000068 0.0000061 0.000050 0.000035
2012 11 25 56256 0.121446 0.301305 0.3123183 0.0013572 -0.076951 -0.009048 0.000017 0.000030 0.0000058 0.0000061 0.000042 0.000028
2012 11 26 56257 0.120330 0.300698 0.3110089 0.0012209 -0.077074 -0.008989 0.000018 0.000035 0.0000068 0.0000059 0.000034 0.000022
2012 11 27 56258 0.120111 0.300372 0.3098756 0.0010843 -0.077105 -0.008958 0.000018 0.000035 0.0000017 0.0000059 0.000026 0.000016
2012 11 28 56259 0.119773 0.300632 0.3088455 0.0009915 -0.077032 -0.009021 0.000017 0.000036 0.0000170 0.0000060 0.000024 0.000014
2012 11 29 56260 0.119249 0.300583 0.3079206 0.0009233 -0.076850 -0.009084 0.000017 0.000036 0.0000051 0.0000060 0.000023 0.000013
2012 11 30 56261 0.118883 0.300539 0.3070117 0.0008703 -0.076574 -0.009076 0.000017 0.000036 0.0000011 0.0000060 0.000022 0.000013
2012 12 1 56262 0.118435 0.300220 0.3061411 0.0009115 -0.076253 -0.009042 0.000017 0.000036 0.0000048 0.0000060 0.000031 0.000018
2012 12 2 56263 0.117747 0.299784 0.3051720 0.0010053 -0.076024 -0.009077 0.000017 0.000032 0.0000059 0.0000060 0.000043 0.000025
2012 12 3 56264 0.116649 0.299475 0.3041420 0.0010707 -0.075946 -0.009175 0.000019 0.000031 0.0000051 0.0000062 0.000055 0.000031
2012 12 4 56265 0.115800 0.299221 0.3030426 0.0011420 -0.075893 -0.009208 0.000019 0.000035 0.0000013 0.0000062 0.000068 0.000038
2012 12 5 56266 0.115161 0.299515 0.3018303 0.0012547 -0.075773 -0.009071 0.000018 0.000034 0.0000154 0.0000060 0.000060 0.000039
2012 12 6 56267 0.114070 0.299438 0.3005523 0.0013252 -0.075593 -0.008851 0.000018 0.000034 0.0000087 0.0000060 0.000051 0.000039
2012 12 7 56268 0.112562 0.299270 0.2991894 0.0013649 -0.075563 -0.008680 0.000020 0.000034 0.0000020 0.0000064 0.000042 0.000038
2012 12 8 56269 0.110757 0.299082 0.2977818 0.0013447 -0.075753 -0.008565 0.000020 0.000034 0.0000138 0.0000064 0.000037 0.000034
2012 12 9 56270 0.109587 0.298335 0.2964589 0.0013415 -0.076048 -0.008423 0.000018 0.000034 0.0000101 0.0000056 0.000032 0.000028
2012 12 10 56271 0.108678 0.297733 0.2951313 0.0013011 -0.076225 -0.008277 0.000018 0.000034 0.0000070 0.0000055 0.000030 0.000022
2012 12 11 56272 0.107369 0.297098 0.2938971 0.0011538 -0.076133 -0.008291 0.000018 0.000034 0.0000013 0.0000059 0.000025 0.000016
2012 12 12 56273 0.106168 0.296689 0.2928453 0.0010051 -0.075738 -0.008464 0.000018 0.000031 0.0000203 0.0000059 0.000030 0.000024
2012 12 13 56274 0.104749 0.296358 0.2919197 0.0009091 -0.075317 -0.008612 0.000018 0.000031 0.0000348 0.0000062 0.000040 0.000035
2012 12 14 56275 0.103055 0.295597 0.2909741 0.0009133 -0.075182 -0.008537 0.000020 0.000033 0.0000075 0.0000069 0.000050 0.000045
2012 12 15 56276 0.101061 0.294850 0.2899782 0.0009629 -0.075330 -0.008370 0.000020 0.000033 0.0000119 0.0000066 0.000059 0.000054
2012 12 16 56277 0.098998 0.293924 0.2890035 0.0010471 -0.075492 -0.008428 0.000020 0.000033 0.0000090 0.0000062 0.000057 0.000048
2012 12 17 56278 0.096862 0.293381 0.2879406 0.0010959 -0.075236 -0.008636 0.000021 0.000035 0.0000086 0.0000073 0.000059 0.000046
2012 12 18 56279 0.094647 0.292659 0.2868441 0.0011422 -0.074898 -0.008768 0.000023 0.000035 0.0000050 0.0000076 0.000061 0.000044
2012 12 19 56280 0.093111 0.291768 0.2857065 0.0011148 -0.074889 -0.008699 0.000019 0.000032 0.0000014 0.0000062 0.000063 0.000045
2012 12 20 56281 0.091472 0.291349 0.2846565 0.0009436 -0.075128 -0.008482 0.000019 0.000032 0.0000084 0.0000059 0.000068 0.000046
2012 12 21 56282 0.090028 0.291117 0.2837893 0.0007936 -0.075305 -0.008364 0.000022 0.000032 0.0000020 0.0000062 0.000085 0.000059
2012 12 22 56283 0.088588 0.291159 0.2830603 0.0007287 -0.075316 -0.008401 0.000019 0.000032 0.0000111 0.0000062 0.000098 0.000072
2012 12 23 56284 0.087501 0.290712 0.2823224 0.0006926 -0.075265 -0.008461 0.000019 0.000032 0.0000088 0.0000062 0.000110 0.000084
2012 12 24 56285 0.086882 0.290363 0.2816902 0.0006156 -0.075321 -0.008468 0.000021 0.000030 0.0000068 0.0000064 0.000126 0.000098
2012 12 25 56286 0.086339 0.290236 0.2811304 0.0005151 -0.075336 -0.008452 0.000018 0.000030 0.0000050 0.0000060 0.000137 0.000111
2012 12 26 56287 0.085694 0.290416 0.2806345 0.0004547 -0.075266 -0.008463 0.000018 0.000029 0.0000032 0.0000059 0.000145 0.000124
2012 12 27 56288 0.084727 0.290487 0.2801731 0.0004607 -0.075144 -0.008467 0.000020 0.000032 0.0000015 0.0000063 0.000157 0.000136
2012 12 28 56289 0.082947 0.290475 0.2797111 0.0004567 -0.075116 -0.008405 0.000020 0.000032 0.0000003 0.0000063 0.000053 0.000044
2012 12 29 56290 0.080756 0.290205 0.2792361 0.0005094 -0.074953 -0.008337 0.000018 0.000029 0.0000070 0.0000059 0.000026 0.000016
2012 12 30 56291 0.079007 0.289959 0.2786180 0.0006577 -0.074710 -0.008360 0.000018 0.000029 0.0000093 0.0000059 0.000037 0.000023
2012 12 31 56292 0.077238 0.289933 0.2778751 0.0007788 -0.074509 -0.008494 0.000018 0.000028 0.0000082 0.0000061 0.000049 0.000029
INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE
EARTH ORIENTATION PARAMETERS
EOP (IERS) 08 C04
FORMAT(3(I4),I7,2(F11.6),2(F12.7),2(F11.6),2(F11.6),2(F11.7),2F12.6)
**********************************************************************************
Date MJD x y UT1-UTC LOD dX dY x Err y Err UT1-UTC Err LOD Err dX Err dY Err
" " s s " " " " s s " "
(0h UTC)
2013 1 1 56293 0.075310 0.289856 0.2770907 0.0008953 0.000305 0.000222 0.000018 0.000028 0.0000053 0.0000061 0.000024 0.000036
2013 1 2 56294 0.073304 0.289898 0.2761366 0.0010388 0.000311 0.000209 0.000017 0.000027 0.0000030 0.0000058 0.000029 0.000042
2013 1 3 56295 0.071432 0.289699 0.2750374 0.0011460 0.000319 0.000191 0.000019 0.000027 0.0000008 0.0000058 0.000033 0.000048
2013 1 4 56296 0.070098 0.289581 0.2738579 0.0012008 0.000213 0.000153 0.000017 0.000027 0.0000002 0.0000058 0.000016 0.000026
2013 1 5 56297 0.069042 0.289567 0.2726572 0.0012058 0.000165 0.000115 0.000015 0.000027 0.0000120 0.0000058 0.000014 0.000027
2013 1 6 56298 0.068196 0.289667 0.2714547 0.0011330 0.000149 0.000080 0.000015 0.000027 0.0000105 0.0000058 0.000020 0.000038
2013 1 7 56299 0.067202 0.290066 0.2703787 0.0009866 0.000134 0.000048 0.000018 0.000029 0.0000061 0.0000060 0.000026 0.000050
2013 1 8 56300 0.066292 0.290535 0.2694610 0.0008848 0.000121 0.000019 0.000020 0.000029 0.0000013 0.0000060 0.000032 0.000061
2013 1 9 56301 0.065345 0.291314 0.2686011 0.0008299 0.000155 0.000022 0.000018 0.000028 0.0000093 0.0000058 0.000043 0.000074
2013 1 10 56302 0.064410 0.292185 0.2677166 0.0008850 0.000206 0.000037 0.000016 0.000028 0.0000055 0.0000058 0.000056 0.000090
2013 1 11 56303 0.063228 0.293001 0.2667804 0.0010202 0.000259 0.000058 0.000018 0.000028 0.0000017 0.0000058 0.000070 0.000106
2013 1 12 56304 0.062007 0.293634 0.2657273 0.0011708 0.000285 0.000069 0.000020 0.000028 0.0000073 0.0000058 0.000067 0.000102
2013 1 13 56305 0.060558 0.294295 0.2644642 0.0013139 0.000296 0.000074 0.000020 0.000031 0.0000051 0.0000065 0.000058 0.000091
2013 1 14 56306 0.059312 0.295115 0.2630661 0.0014745 0.000297 0.000110 0.000018 0.000034 0.0000061 0.0000069 0.000051 0.000085
2013 1 15 56307 0.058302 0.295904 0.2615439 0.0015341 0.000287 0.000095 0.000016 0.000031 0.0000067 0.0000061 0.000042 0.000073
2013 1 16 56308 0.057049 0.296543 0.2600685 0.0014583 0.000263 0.000077 0.000016 0.000033 0.0000014 0.0000058 0.000022 0.000060
2013 1 17 56309 0.055451 0.297451 0.2586723 0.0013456 0.000229 0.000066 0.000016 0.000068 0.0000098 0.0000058 0.000023 0.000060
2013 1 18 56310 0.053948 0.298279 0.2573663 0.0012650 0.000190 0.000056 0.000016 0.000068 0.0000024 0.0000058 0.000027 0.000063
2013 1 19 56311 0.052961 0.299392 0.2561193 0.0011997 0.000194 0.000064 0.000018 0.000033 0.0000077 0.0000062 0.000025 0.000059
2013 1 20 56312 0.051723 0.300681 0.2549468 0.0011070 0.000215 0.000076 0.000021 0.000039 0.0000089 0.0000072 0.000021 0.000051
2013 1 21 56313 0.050316 0.301866 0.2538462 0.0010660 0.000234 0.000086 0.000021 0.000039 0.0000078 0.0000072 0.000034 0.000045
2013 1 22 56314 0.049409 0.302778 0.2527747 0.0010632 0.000254 0.000094 0.000017 0.000033 0.0000045 0.0000061 0.000027 0.000037
2013 1 23 56315 0.048658 0.304062 0.2517351 0.0010777 0.000271 0.000100 0.000017 0.000031 0.0000010 0.0000059 0.000020 0.000030
2013 1 24 56316 0.047848 0.305129 0.2506394 0.0011155 0.000190 0.000068 0.000017 0.000031 0.0000130 0.0000059 0.000078 0.000120
2013 1 25 56317 0.047084 0.305881 0.2495234 0.0011164 0.000088 0.000024 0.000019 0.000034 0.0000021 0.0000063 0.000154 0.000236
2013 1 26 56318 0.046371 0.306470 0.2483765 0.0011738 0.000088 0.000013 0.000021 0.000037 0.0000123 0.0000066 0.000148 0.000225
2013 1 27 56319 0.045599 0.306874 0.2471377 0.0013068 0.000131 0.000012 0.000021 0.000034 0.0000038 0.0000066 0.000112 0.000168
2013 1 28 56320 0.044918 0.307151 0.2457751 0.0014177 0.000178 0.000008 0.000020 0.000033 0.0000040 0.0000069 0.000079 0.000115
2013 1 29 56321 0.044014 0.307627 0.2443075 0.0014914 0.000230 0.000004 0.000020 0.000033 0.0000016 0.0000069 0.000042 0.000056
2013 1 30 56322 0.043132 0.308172 0.2427764 0.0015553 0.000260 -0.000025 0.000019 0.000033 0.0000141 0.0000071 0.000043 0.000054
2013 1 31 56323 0.042804 0.309225 0.2412309 0.0015468 0.000282 -0.000061 0.000019 0.000036 0.0000052 0.0000071 0.000054 0.000066
2013 2 1 56324 0.042402 0.310532 0.2397409 0.0014332 0.000298 -0.000099 0.000019 0.000033 0.0000015 0.0000071 0.000064 0.000079
2013 2 2 56325 0.042573 0.311892 0.2383674 0.0012980 0.000286 -0.000135 0.000017 0.000030 0.0000095 0.0000067 0.000060 0.000074
2013 2 3 56326 0.042527 0.313519 0.2371341 0.0011515 0.000261 -0.000167 0.000015 0.000030 0.0000039 0.0000060 0.000051 0.000064
2013 2 4 56327 0.041943 0.314696 0.2360251 0.0010576 0.000228 -0.000193 0.000017 0.000031 0.0000039 0.0000066 0.000043 0.000054
2013 2 5 56328 0.041026 0.315632 0.2350277 0.0009339 0.000195 -0.000211 0.000019 0.000031 0.0000015 0.0000070 0.000033 0.000043
2013 2 6 56329 0.039925 0.316871 0.2341112 0.0009146 0.000182 -0.000204 0.000017 0.000029 0.0000103 0.0000068 0.000040 0.000050
2013 2 7 56330 0.038904 0.318468 0.2331814 0.0009866 0.000177 -0.000184 0.000017 0.000029 0.0000027 0.0000068 0.000051 0.000061
2013 2 8 56331 0.037461 0.319742 0.2321391 0.0011251 0.000177 -0.000157 0.000017 0.000032 0.0000015 0.0000068 0.000062 0.000073
2013 2 9 56332 0.036213 0.320493 0.2309424 0.0012819 0.000175 -0.000138 0.000017 0.000035 0.0000131 0.0000069 0.000064 0.000075
2013 2 10 56333 0.035528 0.321217 0.2296106 0.0013781 0.000173 -0.000119 0.000018 0.000034 0.0000037 0.0000074 0.000062 0.000075
2013 2 11 56334 0.035202 0.322110 0.2281932 0.0014360 0.000177 -0.000098 0.000022 0.000033 0.0000058 0.0000071 0.000061 0.000074
2013 2 12 56335 0.034936 0.323155 0.2267687 0.0013864 0.000187 -0.000076 0.000022 0.000030 0.0000059 0.0000067 0.000059 0.000073
2013 2 13 56336 0.034437 0.324038 0.2254403 0.0012154 0.000197 -0.000057 0.000021 0.000035 0.0000012 0.0000066 0.000058 0.000072
2013 2 14 56337 0.033839 0.324559 0.2242863 0.0010507 0.000219 -0.000002 0.000021 0.000038 0.0000162 0.0000070 0.000049 0.000063
2013 2 15 56338 0.033897 0.325100 0.2232824 0.0009415 0.000245 0.000057 0.000019 0.000035 0.0000011 0.0000066 0.000037 0.000052
2013 2 16 56339 0.033941 0.325933 0.2223836 0.0008336 0.000265 0.000057 0.000017 0.000032 0.0000189 0.0000062 0.000038 0.000053
2013 2 17 56340 0.033665 0.326909 0.2215868 0.0007367 0.000282 0.000029 0.000019 0.000032 0.0000032 0.0000066 0.000042 0.000059
2013 2 18 56341 0.033343 0.327848 0.2208980 0.0006401 0.000293 -0.000004 0.000019 0.000031 0.0000036 0.0000073 0.000049 0.000064
2013 2 19 56342 0.033016 0.329142 0.2202777 0.0005919 0.000305 -0.000047 0.000019 0.000031 0.0000017 0.0000073 0.000053 0.000070
2013 2 20 56343 0.032971 0.330293 0.2196491 0.0006588 0.000325 -0.000058 0.000020 0.000030 0.0000208 0.0000068 0.000056 0.000068
2013 2 21 56344 0.032764 0.331394 0.2189361 0.0007661 0.000343 -0.000062 0.000020 0.000033 0.0000063 0.0000068 0.000059 0.000066
2013 2 22 56345 0.032560 0.332411 0.2180799 0.0009389 0.000356 -0.000067 0.000022 0.000035 0.0000013 0.0000076 0.000062 0.000065
2013 2 23 56346 0.032021 0.333397 0.2170537 0.0011245 0.000351 -0.000100 0.000022 0.000035 0.0000360 0.0000080 0.000061 0.000063
2013 2 24 56347 0.031547 0.334330 0.2158533 0.0012915 0.000334 -0.000139 0.000022 0.000033 0.0000035 0.0000076 0.000060 0.000061
2013 2 25 56348 0.030709 0.334905 0.2144766 0.0014607 0.000295 -0.000159 0.000023 0.000032 0.0000033 0.0000073 0.000057 0.000059
2013 2 26 56349 0.029709 0.335104 0.2129240 0.0016352 0.000270 -0.000190 0.000023 0.000032 0.0000013 0.0000073 0.000056 0.000057
2013 2 27 56350 0.029307 0.335794 0.2112407 0.0017303 0.000283 -0.000207 0.000028 0.000037 0.0000210 0.0000076 0.000064 0.000063
2013 2 28 56351 0.029597 0.336794 0.2094895 0.0017399 0.000305 -0.000217 0.000028 0.000037 0.0000062 0.0000076 0.000074 0.000071
2013 3 1 56352 0.030243 0.338132 0.2077371 0.0017242 0.000325 -0.000220 0.000028 0.000041 0.0000015 0.0000076 0.000084 0.000080
2013 3 2 56353 0.030488 0.339745 0.2060790 0.0015855 0.000322 -0.000235 0.000026 0.000041 0.0000141 0.0000072 0.000100 0.000105
2013 3 3 56354 0.030848 0.341230 0.2045416 0.0014922 0.000305 -0.000248 0.000026 0.000041 0.0000035 0.0000080 0.000118 0.000136
2013 3 4 56355 0.031163 0.342793 0.2030631 0.0014730 0.000280 -0.000253 0.000023 0.000039 0.0000035 0.0000086 0.000138 0.000171
2013 3 5 56356 0.031611 0.343977 0.2015976 0.0014735 0.000249 -0.000247 0.000023 0.000036 0.0000022 0.0000082 0.000156 0.000203
2013 3 6 56357 0.032058 0.344980 0.2001138 0.0015136 0.000208 -0.000183 0.000021 0.000036 0.0000104 0.0000083 0.000134 0.000179
2013 3 7 56358 0.032962 0.345676 0.1985635 0.0016159 0.000164 -0.000104 0.000021 0.000040 0.0000040 0.0000087 0.000103 0.000142
2013 3 8 56359 0.034232 0.346404 0.1969090 0.0017065 0.000121 -0.000025 0.000021 0.000036 0.0000016 0.0000087 0.000072 0.000106
2013 3 9 56360 0.035551 0.347362 0.1951480 0.0018239 0.000115 0.000018 0.000019 0.000033 0.0000151 0.0000083 0.000065 0.000095
2013 3 10 56361 0.036634 0.348518 0.1932916 0.0019075 0.000127 0.000042 0.000019 0.000036 0.0000029 0.0000083 0.000067 0.000094
2013 3 11 56362 0.037679 0.349957 0.1913827 0.0019055 0.000170 0.000068 0.000020 0.000037 0.0000062 0.0000084 0.000069 0.000094
2013 3 12 56363 0.038791 0.351869 0.1894875 0.0018686 0.000194 0.000074 0.000018 0.000033 0.0000067 0.0000077 0.000071 0.000092
2013 3 13 56364 0.039884 0.354087 0.1876517 0.0017802 0.000210 0.000075 0.000018 0.000034 0.0000012 0.0000075 0.000074 0.000092
2013 3 14 56365 0.040481 0.355956 0.1859185 0.0016696 0.000240 0.000018 0.000018 0.000034 0.0000145 0.0000075 0.000066 0.000081
2013 3 15 56366 0.040942 0.357387 0.1843097 0.0015444 0.000265 -0.000054 0.000016 0.000034 0.0000013 0.0000075 0.000056 0.000068
2013 3 16 56367 0.040901 0.358605 0.1828274 0.0014094 0.000286 -0.000105 0.000018 0.000034 0.0000139 0.0000079 0.000059 0.000072
2013 3 17 56368 0.041061 0.359554 0.1814609 0.0013064 0.000298 -0.000144 0.000020 0.000037 0.0000031 0.0000082 0.000067 0.000083
2013 3 18 56369 0.041602 0.360244 0.1801933 0.0012257 0.000292 -0.000172 0.000022 0.000046 0.0000032 0.0000084 0.000075 0.000095
2013 3 19 56370 0.042509 0.360690 0.1790038 0.0011488 0.000286 -0.000190 0.000022 0.000046 0.0000016 0.0000085 0.000083 0.000106
2013 3 20 56371 0.043558 0.361269 0.1778524 0.0011518 0.000259 -0.000174 0.000021 0.000042 0.0000182 0.0000087 0.000074 0.000093
2013 3 21 56372 0.044679 0.362180 0.1766940 0.0011941 0.000224 -0.000143 0.000021 0.000042 0.0000076 0.0000087 0.000062 0.000077
2013 3 22 56373 0.045142 0.363185 0.1754806 0.0012650 0.000190 -0.000108 0.000021 0.000042 0.0000011 0.0000084 0.000050 0.000061
2013 3 23 56374 0.045731 0.364433 0.1741466 0.0014234 0.000183 -0.000078 0.000021 0.000039 0.0000124 0.0000084 0.000044 0.000055
2013 3 24 56375 0.046501 0.365546 0.1726579 0.0015763 0.000190 -0.000055 0.000021 0.000039 0.0000033 0.0000084 0.000041 0.000053
2013 3 25 56376 0.047553 0.366900 0.1710171 0.0017087 0.000199 -0.000040 0.000024 0.000040 0.0000034 0.0000082 0.000032 0.000047
2013 3 26 56377 0.048035 0.368190 0.1692350 0.0018537 0.000216 -0.000038 0.000024 0.000036 0.0000012 0.0000082 0.000030 0.000045
2013 3 27 56378 0.048658 0.369461 0.1673193 0.0019571 0.000193 -0.000101 0.000024 0.000032 0.0000003 0.0000081 0.000035 0.000051
2013 3 28 56379 0.049532 0.370878 0.1653462 0.0019493 0.000200 -0.000151 0.000021 0.000032 0.0000132 0.0000081 0.000035 0.000052
2013 3 29 56380 0.050475 0.372076 0.1634083 0.0018880 0.000223 -0.000192 0.000021 0.000032 0.0000098 0.0000081 0.000034 0.000049
2013 3 30 56381 0.051030 0.373287 0.1615621 0.0017866 0.000244 -0.000229 0.000021 0.000032 0.0000066 0.0000081 0.000032 0.000047
2013 3 31 56382 0.051422 0.374395 0.1598229 0.0016822 0.000261 -0.000258 0.000021 0.000032 0.0000034 0.0000081 0.000031 0.000045
2013 4 1 56383 0.051214 0.375299 0.1581763 0.0016152 0.000265 -0.000273 0.000023 0.000033 0.0000032 0.0000089 0.000029 0.000044
2013 4 2 56384 0.050902 0.376037 0.1565882 0.0015642 0.000270 -0.000279 0.000023 0.000033 0.0000026 0.0000089 0.000028 0.000042
2013 4 3 56385 0.051000 0.376745 0.1550193 0.0015665 0.000269 -0.000274 0.000020 0.000029 0.0000009 0.0000079 0.000027 0.000039
2013 4 4 56386 0.051505 0.377383 0.1534214 0.0016313 0.000196 -0.000196 0.000020 0.000029 0.0000126 0.0000083 0.000029 0.000039
2013 4 5 56387 0.052276 0.378082 0.1517328 0.0017658 0.000107 -0.000098 0.000020 0.000029 0.0000010 0.0000083 0.000033 0.000039
2013 4 6 56388 0.052845 0.378754 0.1499249 0.0018676 0.000119 -0.000077 0.000018 0.000029 0.0000128 0.0000079 0.000030 0.000034
2013 4 7 56389 0.053129 0.379352 0.1480361 0.0019019 0.000172 -0.000088 0.000018 0.000029 0.0000034 0.0000080 0.000023 0.000027
2013 4 8 56390 0.053558 0.380052 0.1461365 0.0018727 0.000211 -0.000095 0.000023 0.000031 0.0000034 0.0000084 0.000017 0.000021
2013 4 9 56391 0.054118 0.381208 0.1442935 0.0018016 0.000268 -0.000118 0.000026 0.000031 0.0000010 0.0000088 0.000010 0.000014
2013 4 10 56392 0.054958 0.382367 0.1425544 0.0016754 0.000296 -0.000136 0.000023 0.000035 0.0000162 0.0000093 0.000017 0.000026
2013 4 11 56393 0.055463 0.383473 0.1409548 0.0015061 0.000316 -0.000154 0.000023 0.000035 0.0000078 0.0000087 0.000027 0.000043
2013 4 12 56394 0.055503 0.384248 0.1395110 0.0013579 0.000331 -0.000175 0.000023 0.000032 0.0000012 0.0000079 0.000037 0.000060
2013 4 13 56395 0.055466 0.385068 0.1382134 0.0012326 0.000331 -0.000180 0.000023 0.000031 0.0000235 0.0000081 0.000048 0.000076
2013 4 14 56396 0.055484 0.385646 0.1370305 0.0011411 0.000322 -0.000178 0.000023 0.000031 0.0000040 0.0000085 0.000060 0.000092
2013 4 15 56397 0.055607 0.386035 0.1359184 0.0010907 0.000303 -0.000168 0.000025 0.000034 0.0000037 0.0000092 0.000072 0.000108
2013 4 16 56398 0.055929 0.386392 0.1348169 0.0011174 0.000284 -0.000162 0.000025 0.000034 0.0000026 0.0000087 0.000084 0.000124
2013 4 17 56399 0.056522 0.386975 0.1336791 0.0011618 0.000261 -0.000156 0.000022 0.000034 0.0000017 0.0000082 0.000105 0.000143
2013 4 18 56400 0.057528 0.387547 0.1325125 0.0011964 0.000282 -0.000164 0.000019 0.000034 0.0000119 0.0000082 0.000080 0.000106
2013 4 19 56401 0.058638 0.388699 0.1312775 0.0013092 0.000313 -0.000175 0.000019 0.000034 0.0000011 0.0000078 0.000045 0.000055
2013 4 20 56402 0.059400 0.389916 0.1298980 0.0014732 0.000321 -0.000214 0.000022 0.000034 0.0000146 0.0000078 0.000037 0.000043
2013 4 21 56403 0.060039 0.390944 0.1283636 0.0015956 0.000316 -0.000260 0.000022 0.000034 0.0000033 0.0000078 0.000039 0.000046
2013 4 22 56404 0.061024 0.391927 0.1267085 0.0017050 0.000300 -0.000284 0.000018 0.000033 0.0000031 0.0000082 0.000040 0.000050
2013 4 23 56405 0.062011 0.392789 0.1249559 0.0018000 0.000282 -0.000319 0.000016 0.000031 0.0000010 0.0000086 0.000042 0.000053
2013 4 24 56406 0.062979 0.393349 0.1231388 0.0018280 0.000248 -0.000337 0.000019 0.000029 0.0000225 0.0000081 0.000094 0.000134
2013 4 25 56407 0.063907 0.393885 0.1213194 0.0017907 0.000207 -0.000347 0.000022 0.000029 0.0000051 0.0000077 0.000160 0.000234
2013 4 26 56408 0.064780 0.394217 0.1195726 0.0016971 0.000164 -0.000350 0.000024 0.000029 0.0000029 0.0000081 0.000226 0.000335
2013 4 27 56409 0.065690 0.394751 0.1179550 0.0015370 0.000139 -0.000354 0.000024 0.000029 0.0000110 0.0000089 0.000206 0.000306
2013 4 28 56410 0.066110 0.395232 0.1164902 0.0013879 0.000123 -0.000354 0.000024 0.000029 0.0000036 0.0000089 0.000156 0.000229
2013 4 29 56411 0.066926 0.395496 0.1151226 0.0013580 0.000082 -0.000312 0.000022 0.000033 0.0000031 0.0000086 0.000103 0.000153
2013 4 30 56412 0.067935 0.395987 0.1137639 0.0013742 0.000071 -0.000293 0.000020 0.000033 0.0000012 0.0000081 0.000051 0.000077
2013 5 1 56413 0.069079 0.396187 0.1123734 0.0014241 0.000058 -0.000278 0.000018 0.000031 0.0000133 0.0000077 0.000042 0.000066
2013 5 2 56414 0.070601 0.396865 0.1108968 0.0015399 0.000051 -0.000261 0.000020 0.000031 0.0000025 0.0000081 0.000044 0.000072
2013 5 3 56415 0.072194 0.397607 0.1092979 0.0016617 0.000051 -0.000241 0.000022 0.000031 0.0000013 0.0000081 0.000046 0.000078
2013 5 4 56416 0.073934 0.398142 0.1076280 0.0017014 0.000062 -0.000202 0.000020 0.000031 0.0000133 0.0000077 0.000047 0.000077
2013 5 5 56417 0.075382 0.398690 0.1059460 0.0016757 0.000080 -0.000156 0.000020 0.000031 0.0000024 0.0000077 0.000047 0.000073
2013 5 6 56418 0.076726 0.399162 0.1042827 0.0016511 0.000098 -0.000109 0.000021 0.000033 0.0000053 0.0000084 0.000047 0.000069
2013 5 7 56419 0.077727 0.399520 0.1026651 0.0015729 0.000123 -0.000072 0.000021 0.000033 0.0000059 0.0000084 0.000047 0.000065
2013 5 8 56420 0.078782 0.399676 0.1011258 0.0014570 0.000147 -0.000041 0.000020 0.000032 0.0000013 0.0000077 0.000045 0.000059
2013 5 9 56421 0.080212 0.400159 0.0997499 0.0012809 0.000097 -0.000090 0.000017 0.000032 0.0000136 0.0000073 0.000084 0.000101
2013 5 10 56422 0.081756 0.400479 0.0985505 0.0011247 0.000028 -0.000164 0.000020 0.000032 0.0000021 0.0000077 0.000131 0.000156
2013 5 11 56423 0.084245 0.400858 0.0974696 0.0010228 0.000054 -0.000180 0.000022 0.000032 0.0000131 0.0000081 0.000127 0.000151
2013 5 12 56424 0.086309 0.401440 0.0964810 0.0009413 0.000114 -0.000173 0.000020 0.000032 0.0000031 0.0000077 0.000102 0.000123
2013 5 13 56425 0.088337 0.402161 0.0955606 0.0009037 0.000166 -0.000149 0.000022 0.000032 0.0000034 0.0000079 0.000082 0.000103
2013 5 14 56426 0.089451 0.403203 0.0946677 0.0009035 0.000218 -0.000142 0.000024 0.000032 0.0000015 0.0000078 0.000056 0.000073
2013 5 15 56427 0.090741 0.403960 0.0937434 0.0009546 0.000183 -0.000224 0.000022 0.000033 0.0000164 0.0000073 0.000054 0.000075
2013 5 16 56428 0.091099 0.404564 0.0927334 0.0010329 0.000124 -0.000325 0.000022 0.000033 0.0000061 0.0000077 0.000059 0.000088
2013 5 17 56429 0.091665 0.404720 0.0916057 0.0011913 0.000062 -0.000418 0.000022 0.000033 0.0000013 0.0000077 0.000063 0.000101
2013 5 18 56430 0.092279 0.404886 0.0903432 0.0013154 0.000089 -0.000442 0.000022 0.000033 0.0000170 0.0000077 0.000063 0.000100
2013 5 19 56431 0.093382 0.404814 0.0889580 0.0014222 0.000152 -0.000430 0.000024 0.000033 0.0000031 0.0000077 0.000062 0.000093
2013 5 20 56432 0.094812 0.404856 0.0874807 0.0015032 0.000109 -0.000393 0.000020 0.000030 0.0000031 0.0000070 0.000128 0.000171
2013 5 21 56433 0.096671 0.405103 0.0859534 0.0015170 0.000129 -0.000354 0.000020 0.000030 0.0000026 0.0000070 0.000152 0.000195
2013 5 22 56434 0.098090 0.405783 0.0844501 0.0014488 0.000145 -0.000310 0.000021 0.000027 0.0000040 0.0000072 0.000171 0.000218
2013 5 23 56435 0.099439 0.406575 0.0830146 0.0013755 0.000149 -0.000249 0.000021 0.000027 0.0001122 0.0000072 0.000146 0.000196
2013 5 24 56436 0.100665 0.407104 0.0817241 0.0012537 0.000145 -0.000186 0.000019 0.000027 0.0000018 0.0000069 0.000109 0.000162
2013 5 25 56437 0.101494 0.407171 0.0805331 0.0011307 0.000106 -0.000193 0.000017 0.000027 0.0000250 0.0000069 0.000101 0.000154
2013 5 26 56438 0.102303 0.407199 0.0794448 0.0010336 0.000053 -0.000224 0.000304 0.000234 0.0000054 0.0000236 0.000105 0.000156
2013 5 27 56439 0.102856 0.407246 0.0784812 0.0009137 -0.000009 -0.000245 0.000026 0.000030 0.0000031 0.0000075 0.000114 0.000159
2013 5 28 56440 0.103519 0.407139 0.0775747 0.0009094 -0.000057 -0.000278 0.000026 0.000034 0.0000026 0.0000075 0.000118 0.000161
2013 5 29 56441 0.104126 0.407196 0.0766735 0.0009130 -0.000094 -0.000310 0.000025 0.000032 0.0000019 0.0000073 0.000118 0.000153
2013 5 30 56442 0.104903 0.407053 0.0757525 0.0009351 -0.000087 -0.000262 0.000028 0.000031 0.0000112 0.0000077 0.000107 0.000133
2013 5 31 56443 0.106365 0.406900 0.0748141 0.0009118 -0.000059 -0.000192 0.000028 0.000031 0.0000016 0.0000077 0.000092 0.000107
2013 6 1 56444 0.108299 0.406628 0.0739569 0.0008131 -0.000001 -0.000158 0.000028 0.000031 0.0000081 0.0000077 0.000084 0.000096
2013 6 2 56445 0.110240 0.406481 0.0732060 0.0007016 0.000068 -0.000139 0.000028 0.000031 0.0000030 0.0000077 0.000077 0.000091
2013 6 3 56446 0.111834 0.406343 0.0725254 0.0006471 0.000136 -0.000127 0.000023 0.000030 0.0000029 0.0000074 0.000071 0.000086
2013 6 4 56447 0.113268 0.405956 0.0719147 0.0005507 0.000197 -0.000121 0.000023 0.000030 0.0000013 0.0000074 0.000064 0.000081
2013 6 5 56448 0.114167 0.405386 0.0714299 0.0004190 0.000151 -0.000152 0.000022 0.000028 0.0000174 0.0000072 0.000062 0.000085
2013 6 6 56449 0.114617 0.404595 0.0710683 0.0003198 0.000072 -0.000194 0.000022 0.000028 0.0000059 0.0000072 0.000062 0.000092
2013 6 7 56450 0.115025 0.403767 0.0707839 0.0002307 -0.000011 -0.000236 0.000022 0.000028 0.0000014 0.0000072 0.000062 0.000100
2013 6 8 56451 0.115680 0.402894 0.0706110 0.0001381 -0.000001 -0.000257 0.000022 0.000028 0.0000279 0.0000071 0.000060 0.000096
2013 6 9 56452 0.116312 0.402086 0.0705071 0.0000830 0.000043 -0.000264 0.000307 0.000144 0.0000033 0.0000201 0.000057 0.000089
2013 6 10 56453 0.117352 0.401350 0.0704022 0.0000989 0.000086 -0.000262 0.000032 0.000025 0.0000027 0.0000082 0.000054 0.000081
2013 6 11 56454 0.118269 0.401044 0.0702341 0.0001960 0.000126 -0.000255 0.000032 0.000028 0.0000013 0.0000078 0.000051 0.000074
2013 6 12 56455 0.119218 0.400606 0.0699942 0.0002892 0.000090 -0.000217 0.000034 0.000030 0.0000187 0.0000080 0.000055 0.000075
2013 6 13 56456 0.120723 0.399987 0.0696499 0.0004153 0.000031 -0.000173 0.000034 0.000030 0.0000028 0.0000084 0.000060 0.000079
2013 6 14 56457 0.122404 0.399512 0.0691558 0.0005602 -0.000029 -0.000132 0.000031 0.000030 0.0000016 0.0000080 0.000066 0.000083
2013 6 15 56458 0.123927 0.398878 0.0685337 0.0006864 -0.000064 -0.000161 0.000027 0.000030 0.0000217 0.0000076 0.000076 0.000091
2013 6 16 56459 0.125694 0.398557 0.0678080 0.0007759 -0.000085 -0.000216 0.000027 0.000027 0.0000034 0.0000076 0.000090 0.000101
2013 6 17 56460 0.127398 0.398251 0.0669948 0.0008524 -0.000096 -0.000257 0.000029 0.000024 0.0000034 0.0000082 0.000101 0.000110
2013 6 18 56461 0.129288 0.397823 0.0661280 0.0008752 -0.000105 -0.000310 0.000032 0.000027 0.0000018 0.0000087 0.000114 0.000120
2013 6 19 56462 0.131187 0.397852 0.0652819 0.0008272 -0.000095 -0.000318 0.000032 0.000063 0.0000246 0.0000085 0.000091 0.000097
2013 6 20 56463 0.132607 0.397704 0.0644927 0.0007700 -0.000077 -0.000312 0.000029 0.000063 0.0000027 0.0000081 0.000060 0.000066
2013 6 21 56464 0.134163 0.397002 0.0637729 0.0006587 -0.000058 -0.000298 0.000029 0.000030 0.0000011 0.0000081 0.000029 0.000035
2013 6 22 56465 0.135302 0.396487 0.0631683 0.0005846 -0.000068 -0.000297 0.000032 0.000030 0.0000159 0.0000085 0.000029 0.000034
2013 6 23 56466 0.136143 0.395919 0.0626275 0.0005627 -0.000089 -0.000296 0.000029 0.000030 0.0000026 0.0000085 0.000041 0.000045
2013 6 24 56467 0.136415 0.395594 0.0620426 0.0005992 -0.000103 -0.000278 0.000029 0.000030 0.0000030 0.0000083 0.000052 0.000055
2013 6 25 56468 0.136974 0.394965 0.0613753 0.0007043 -0.000122 -0.000264 0.000029 0.000030 0.0000016 0.0000079 0.000063 0.000065
2013 6 26 56469 0.137552 0.394336 0.0606312 0.0007642 -0.000127 -0.000281 0.000027 0.000030 0.0000155 0.0000078 0.000061 0.000064
2013 6 27 56470 0.138002 0.393733 0.0598411 0.0007937 -0.000127 -0.000300 0.000027 0.000030 0.0000051 0.0000077 0.000054 0.000061
2013 6 28 56471 0.138767 0.392827 0.0590512 0.0007557 -0.000126 -0.000315 0.000027 0.000030 0.0000010 0.0000077 0.000047 0.000058
2013 6 29 56472 0.140194 0.391993 0.0583348 0.0006506 -0.000124 -0.000272 0.000031 0.000030 0.0000299 0.0000082 0.000055 0.000055
2013 6 30 56473 0.141516 0.391422 0.0577584 0.0004939 -0.000119 -0.000206 0.000031 0.000030 0.0000032 0.0000082 0.000070 0.000052
2013 7 1 56474 0.142616 0.390794 0.0573666 0.0002946 -0.000050 -0.000215 0.000026 0.000031 0.0000036 0.0000072 0.000025 0.000031
2013 7 2 56475 0.144079 0.390119 0.0571657 0.0001138 -0.000026 -0.000181 0.000026 0.000030 0.0000026 0.0000088 0.000017 0.000021
2013 7 3 56476 0.145665 0.389520 0.0571564 -0.0000670 -0.000074 -0.000169 0.000025 0.000030 0.0000015 0.0000084 0.000063 0.000073
2013 7 4 56477 0.146711 0.388729 0.0572832 -0.0002368 -0.000109 -0.000193 0.000025 0.000030 0.0000094 0.0000084 0.000090 0.000089
2013 7 5 56478 0.147713 0.387541 0.0575537 -0.0003000 -0.000132 -0.000226 0.000025 0.000030 0.0000087 0.0000087 0.000105 0.000086
2013 7 6 56479 0.148953 0.386151 0.0579280 -0.0003526 -0.000150 -0.000255 0.000025 0.000030 0.0000096 0.0000090 0.000119 0.000083
2013 7 7 56480 0.150376 0.384903 0.0583167 -0.0003661 -0.000163 -0.000275 0.000107 0.000099 0.0000163 0.0000110 0.000134 0.000080
2013 7 8 56481 0.151569 0.383539 0.0585779 -0.0002537 -0.000127 -0.000261 0.000032 0.000032 0.0000125 0.0000085 0.000042 0.000052
2013 7 9 56482 0.153050 0.382250 0.0587683 -0.0001194 -0.000132 -0.000271 0.000032 0.000032 0.0000044 0.0000085 0.000034 0.000043
2013 7 10 56483 0.154493 0.381145 0.0588276 0.0000078 -0.000113 -0.000234 0.000030 0.000036 0.0000109 0.0000085 0.000066 0.000078
2013 7 11 56484 0.156082 0.380732 0.0587437 0.0001635 -0.000091 -0.000208 0.000034 0.000036 0.0000068 0.0000087 0.000099 0.000114
2013 7 12 56485 0.156863 0.380599 0.0585248 0.0002568 -0.000066 -0.000186 0.000034 0.000036 0.0000038 0.0000087 0.000132 0.000149
2013 7 13 56486 0.158069 0.380042 0.0582255 0.0003536 -0.000073 -0.000194 0.000030 0.000036 0.0000181 0.0000087 0.000127 0.000144
2013 7 14 56487 0.159076 0.379385 0.0578480 0.0003991 -0.000087 -0.000215 0.000030 0.000036 0.0000085 0.0000089 0.000108 0.000124
2013 7 15 56488 0.159931 0.378229 0.0574290 0.0004241 -0.000082 -0.000236 0.000028 0.000035 0.0000093 0.0000087 0.000088 0.000100
2013 7 16 56489 0.160905 0.377171 0.0569832 0.0004291 -0.000090 -0.000247 0.000031 0.000035 0.0000109 0.0000088 0.000068 0.000080
2013 7 17 56490 0.161815 0.376243 0.0565385 0.0003878 -0.000092 -0.000249 0.000036 0.000034 0.0000048 0.0000091 0.000049 0.000059
2013 7 18 56491 0.162565 0.375422 0.0561746 0.0003214 -0.000096 -0.000180 0.000036 0.000034 0.0000094 0.0000091 0.000060 0.000077
2013 7 19 56492 0.162945 0.374696 0.0558663 0.0002716 -0.000096 -0.000091 0.000033 0.000034 0.0000029 0.0000090 0.000079 0.000105
2013 7 20 56493 0.163846 0.373849 0.0556151 0.0002333 -0.000127 -0.000085 0.000029 0.000034 0.0000178 0.0000090 0.000078 0.000103
2013 7 21 56494 0.164553 0.373090 0.0554059 0.0002098 -0.000167 -0.000112 0.000032 0.000034 0.0000067 0.0000090 0.000069 0.000089
2013 7 22 56495 0.164789 0.371800 0.0551523 0.0002812 -0.000200 -0.000142 0.000034 0.000036 0.0000069 0.0000095 0.000059 0.000075
2013 7 23 56496 0.165291 0.370338 0.0547829 0.0004291 -0.000224 -0.000176 0.000031 0.000036 0.0000028 0.0000093 0.000051 0.000061
2013 7 24 56497 0.166002 0.368999 0.0542810 0.0005603 -0.000168 -0.000170 0.000031 0.000033 0.0000166 0.0000089 0.000049 0.000065
2013 7 25 56498 0.166346 0.367911 0.0536717 0.0006255 -0.000090 -0.000152 0.000034 0.000033 0.0000105 0.0000092 0.000060 0.000084
2013 7 26 56499 0.166811 0.366676 0.0530071 0.0006567 -0.000012 -0.000130 0.000034 0.000033 0.0000035 0.0000095 0.000072 0.000102
2013 7 27 56500 0.167707 0.365549 0.0523630 0.0006006 0.000015 -0.000119 0.000034 0.000033 0.0000121 0.0000098 0.000088 0.000126
2013 7 28 56501 0.168765 0.364738 0.0518197 0.0004764 0.000017 -0.000109 0.000031 0.000033 0.0000108 0.0000098 0.000104 0.000151
2013 7 29 56502 0.169700 0.363977 0.0513965 0.0003449 0.000011 -0.000085 0.000027 0.000032 0.0000105 0.0000102 0.000125 0.000182
2013 7 30 56503 0.170594 0.362929 0.0510988 0.0002185 0.000006 -0.000072 0.000028 0.000033 0.0000065 0.0000088 0.000142 0.000208
2013 7 31 56504 0.171158 0.361742 0.0509293 0.0001075 -0.000047 -0.000055 0.000029 0.000032 0.0000126 0.0000085 0.000098 0.000152
2013 8 1 56505 0.171614 0.360801 0.0508664 0.0000354 -0.000115 -0.000041 0.000029 0.000032 0.0000116 0.0000088 0.000061 0.000092
2013 8 2 56506 0.171449 0.359906 0.0508698 -0.0000262 -0.000184 -0.000031 0.000029 0.000032 0.0000021 0.0000088 0.000024 0.000033
2013 8 3 56507 0.171812 0.358758 0.0508896 -0.0000357 -0.000185 -0.000041 0.000029 0.000032 0.0000159 0.0000088 0.000015 0.000019
2013 8 4 56508 0.172184 0.357514 0.0508920 -0.0000184 -0.000157 -0.000058 0.000029 0.000029 0.0000092 0.0000091 0.000017 0.000021
2013 8 5 56509 0.172401 0.356273 0.0508653 0.0000659 -0.000111 -0.000073 0.000033 0.000029 0.0000153 0.0000097 0.000019 0.000026
2013 8 6 56510 0.172554 0.355256 0.0507705 0.0001743 -0.000076 -0.000090 0.000033 0.000032 0.0000055 0.0000096 0.000021 0.000028
2013 8 7 56511 0.172778 0.354263 0.0505584 0.0002672 -0.000114 -0.000073 0.000030 0.000031 0.0000125 0.0000098 0.000031 0.000044
2013 8 8 56512 0.173427 0.353372 0.0502377 0.0003265 -0.000172 -0.000048 0.000030 0.000028 0.0000059 0.0000098 0.000043 0.000062
2013 8 9 56513 0.173697 0.352904 0.0498320 0.0004346 -0.000232 -0.000025 0.000030 0.000028 0.0000021 0.0000099 0.000054 0.000079
2013 8 10 56514 0.173888 0.352080 0.0493378 0.0005192 -0.000260 -0.000042 0.000030 0.000028 0.0000104 0.0000101 0.000053 0.000076
2013 8 11 56515 0.173994 0.351257 0.0487936 0.0005298 -0.000274 -0.000075 0.000030 0.000028 0.0000082 0.0000101 0.000047 0.000064
2013 8 12 56516 0.173765 0.350190 0.0482710 0.0004758 -0.000286 -0.000107 0.000033 0.000032 0.0000091 0.0000098 0.000041 0.000053
2013 8 13 56517 0.173651 0.348912 0.0477934 0.0004126 -0.000288 -0.000146 0.000033 0.000032 0.0000033 0.0000099 0.000035 0.000042
2013 8 14 56518 0.173705 0.347770 0.0473953 0.0003477 -0.000236 -0.000091 0.000031 0.000030 0.0000013 0.0000103 0.000053 0.000067
2013 8 15 56519 0.173741 0.346387 0.0470610 0.0002979 -0.000223 -0.000112 0.000034 0.000033 0.0000087 0.0000105 0.000058 0.000074
2013 8 16 56520 0.173646 0.345159 0.0467545 0.0002797 -0.000226 -0.000167 0.000034 0.000033 0.0000096 0.0000108 0.000055 0.000071
2013 8 17 56521 0.173383 0.343912 0.0464163 0.0003744 -0.000223 -0.000214 0.000031 0.000033 0.0000089 0.0000111 0.000052 0.000067
2013 8 18 56522 0.173288 0.342890 0.0459741 0.0005323 -0.000213 -0.000249 0.000034 0.000033 0.0000088 0.0000111 0.000049 0.000064
2013 8 19 56523 0.173168 0.341865 0.0453977 0.0006168 -0.000174 -0.000272 0.000033 0.000034 0.0000079 0.0000104 0.000044 0.000057
2013 8 20 56524 0.173063 0.340726 0.0446799 0.0007632 -0.000177 -0.000287 0.000029 0.000034 0.0000025 0.0000104 0.000042 0.000054
2013 8 21 56525 0.172398 0.339375 0.0438305 0.0008525 -0.000179 -0.000249 0.000028 0.000031 0.0000139 0.0000103 0.000051 0.000063
2013 8 22 56526 0.171684 0.337844 0.0429512 0.0008717 -0.000185 -0.000190 0.000031 0.000031 0.0000092 0.0000097 0.000064 0.000076
2013 8 23 56527 0.170625 0.336442 0.0420842 0.0008230 -0.000194 -0.000127 0.000031 0.000031 0.0000041 0.0000097 0.000076 0.000089
2013 8 24 56528 0.169798 0.334944 0.0412703 0.0007489 -0.000217 -0.000093 0.000031 0.000031 0.0000090 0.0000099 0.000118 0.000146
2013 8 25 56529 0.169189 0.333577 0.0405795 0.0006309 -0.000243 -0.000073 0.000031 0.000034 0.0000072 0.0000099 0.000169 0.000220
2013 8 26 56530 0.168893 0.332209 0.0400021 0.0005207 -0.000239 -0.000063 0.000028 0.000034 0.0000114 0.0000100 0.000282 0.000295
2013 8 27 56531 0.168519 0.330738 0.0395337 0.0003777 -0.000247 -0.000057 0.000028 0.000031 0.0000100 0.0000100 0.000348 0.000369
2013 8 28 56532 0.168415 0.329414 0.0391717 0.0002806 -0.000228 -0.000070 0.000029 0.000030 0.0000139 0.0000093 0.000235 0.000293
2013 8 29 56533 0.168163 0.328251 0.0388973 0.0002473 -0.000196 -0.000082 0.000029 0.000033 0.0000142 0.0000093 0.000138 0.000172
2013 8 30 56534 0.167661 0.327082 0.0386768 0.0002367 -0.000168 -0.000096 0.000029 0.000033 0.0000058 0.0000095 0.000041 0.000051
2013 8 31 56535 0.166593 0.325700 0.0384634 0.0002152 -0.000155 -0.000089 0.000029 0.000033 0.0000122 0.0000095 0.000023 0.000028
2013 9 1 56536 0.165860 0.324084 0.0382068 0.0002970 -0.000152 -0.000074 0.000029 0.000033 0.0000084 0.0000093 0.000035 0.000041
2013 9 2 56537 0.165573 0.322684 0.0378617 0.0004198 -0.000142 -0.000047 0.000035 0.000036 0.0000102 0.0000109 0.000043 0.000053
2013 9 3 56538 0.165314 0.321419 0.0373927 0.0005024 -0.000149 -0.000031 0.000039 0.000036 0.0000127 0.0000114 0.000053 0.000066
2013 9 4 56539 0.164827 0.320456 0.0367879 0.0006379 -0.000156 -0.000014 0.000034 0.000034 0.0000049 0.0000106 0.000062 0.000077
2013 9 5 56540 0.164368 0.319491 0.0360450 0.0008060 -0.000259 -0.000088 0.000034 0.000034 0.0000114 0.0000104 0.000058 0.000072
2013 9 6 56541 0.164310 0.318349 0.0351748 0.0009072 -0.000380 -0.000180 0.000038 0.000034 0.0000046 0.0000104 0.000051 0.000064
2013 9 7 56542 0.163910 0.317351 0.0342240 0.0009627 -0.000400 -0.000187 0.000034 0.000034 0.0000118 0.0000101 0.000061 0.000083
2013 9 8 56543 0.163508 0.316383 0.0332626 0.0009316 -0.000371 -0.000155 0.000034 0.000031 0.0000085 0.0000098 0.000077 0.000112
2013 9 9 56544 0.162948 0.315306 0.0323533 0.0008653 -0.000327 -0.000098 0.000033 0.000031 0.0000085 0.0000101 0.000094 0.000145
2013 9 10 56545 0.162052 0.314146 0.0315245 0.0007584 -0.000269 -0.000045 0.000033 0.000035 0.0000075 0.0000101 0.000110 0.000176
2013 9 11 56546 0.161094 0.312773 0.0307834 0.0006948 -0.000268 0.000120 0.000031 0.000029 0.0000096 0.0000100 0.000092 0.000145
2013 9 12 56547 0.159937 0.311450 0.0301155 0.0006528 -0.000286 0.000308 0.000027 0.000026 0.0000070 0.0000100 0.000066 0.000100
2013 9 13 56548 0.158737 0.309930 0.0294762 0.0006294 -0.000305 0.000479 0.000027 0.000026 0.0000030 0.0000100 0.000039 0.000055
2013 9 14 56549 0.157790 0.308431 0.0288025 0.0007154 -0.000342 0.000490 0.000031 0.000029 0.0000144 0.0000103 0.000044 0.000057
2013 9 15 56550 0.157350 0.306944 0.0280242 0.0008645 -0.000383 0.000421 0.000031 0.000029 0.0000071 0.0000105 0.000060 0.000077
2013 9 16 56551 0.157106 0.305976 0.0270896 0.0010175 -0.000419 0.000334 0.000030 0.000030 0.0000068 0.0000099 0.000071 0.000091
2013 9 17 56552 0.156504 0.305514 0.0259668 0.0011926 -0.000437 0.000221 0.000030 0.000034 0.0000079 0.0000099 0.000085 0.000109
2013 9 18 56553 0.155377 0.305349 0.0246770 0.0013240 -0.000434 0.000094 0.000029 0.000032 0.0000056 0.0000102 0.000099 0.000127
2013 9 19 56554 0.153947 0.304766 0.0232973 0.0013738 -0.000357 0.000099 0.000043 0.000045 0.0000129 0.0000102 0.000074 0.000097
2013 9 20 56555 0.152824 0.303963 0.0219443 0.0012905 -0.000246 0.000155 0.000043 0.000045 0.0000038 0.0000102 0.000037 0.000054
2013 9 21 56556 0.151406 0.303196 0.0207179 0.0011330 -0.000223 0.000123 0.000048 0.000045 0.0000082 0.0000108 0.000028 0.000043
2013 9 22 56557 0.149281 0.302354 0.0196438 0.0010117 -0.000233 0.000067 0.000054 0.000050 0.0000083 0.0000111 0.000031 0.000045
2013 9 23 56558 0.146735 0.301442 0.0186897 0.0008985 -0.000242 0.000020 0.000033 0.000048 0.0000096 0.0000092 0.000033 0.000047
2013 9 24 56559 0.144871 0.300344 0.0178077 0.0008517 -0.000255 -0.000012 0.000033 0.000047 0.0000100 0.0000092 0.000035 0.000048
2013 9 25 56560 0.143566 0.299610 0.0169717 0.0008146 -0.000269 -0.000032 0.000033 0.000045 0.0000028 0.0000092 0.000035 0.000044
2013 9 26 56561 0.142079 0.298821 0.0161801 0.0007604 -0.000214 0.000000 0.000033 0.000045 0.0000090 0.0000089 0.000030 0.000037
2013 9 27 56562 0.140889 0.297939 0.0154371 0.0007188 -0.000141 0.000048 0.000033 0.000046 0.0000036 0.0000092 0.000023 0.000027
2013 9 28 56563 0.139500 0.297257 0.0147280 0.0007030 -0.000128 0.000090 0.000033 0.000046 0.0000080 0.0000095 0.000028 0.000036
2013 9 29 56564 0.137657 0.296237 0.0140048 0.0007466 -0.000136 0.000126 0.000033 0.000046 0.0000106 0.0000095 0.000037 0.000051
2013 9 30 56565 0.135490 0.295144 0.0131976 0.0008856 -0.000134 0.000152 0.000036 0.000048 0.0000104 0.0000103 0.000050 0.000080
2013 10 1 56566 0.133064 0.294137 0.0122633 0.0009920 -0.000149 0.000174 0.000036 0.000048 0.0000043 0.0000100 0.000059 0.000099
2013 10 2 56567 0.131082 0.292889 0.0112038 0.0011247 -0.000154 0.000132 0.000035 0.000048 0.0000049 0.0000099 0.000058 0.000093
2013 10 3 56568 0.129546 0.292015 0.0100389 0.0011865 -0.000159 0.000071 0.000035 0.000043 0.0000070 0.0000099 0.000053 0.000080
2013 10 4 56569 0.128542 0.291032 0.0088032 0.0012562 -0.000167 0.000009 0.000035 0.000043 0.0000040 0.0000096 0.000048 0.000067
2013 10 5 56570 0.127903 0.290154 0.0075119 0.0012920 -0.000179 0.000008 0.000035 0.000048 0.0000064 0.0000099 0.000054 0.000072
2013 10 6 56571 0.126726 0.289547 0.0062221 0.0012702 -0.000191 0.000032 0.000032 0.000043 0.0000055 0.0000101 0.000064 0.000083
2013 10 7 56572 0.124819 0.289094 0.0049648 0.0012181 -0.000199 0.000060 0.000025 0.000039 0.0000101 0.0000103 0.000073 0.000094
2013 10 8 56573 0.123190 0.288137 0.0037538 0.0011662 -0.000197 0.000089 0.000025 0.000039 0.0000053 0.0000107 0.000083 0.000106
2013 10 9 56574 0.121832 0.287286 0.0025855 0.0011269 -0.000069 -0.000034 0.000023 0.000040 0.0000143 0.0000106 0.000213 0.000162
2013 10 10 56575 0.120512 0.286733 0.0014693 0.0010983 -0.000080 -0.000006 0.000023 0.000040 0.0000103 0.0000103 0.000179 0.000140
2013 10 11 56576 0.118663 0.286056 0.0003773 0.0011016 -0.000145 0.000057 0.000023 0.000040 0.0000038 0.0000103 0.000081 0.000083
2013 10 12 56577 0.116817 0.285276 -0.0007606 0.0011490 -0.000173 0.000121 0.000023 0.000040 0.0000094 0.0000107 0.000066 0.000067
2013 10 13 56578 0.115102 0.284800 -0.0019609 0.0012373 -0.000186 0.000183 0.000023 0.000040 0.0000082 0.0000103 0.000080 0.000065
2013 10 14 56579 0.113868 0.284527 -0.0032639 0.0013714 -0.000193 0.000188 0.000028 0.000040 0.0000065 0.0000094 0.000112 0.000144
2013 10 15 56580 0.112808 0.284046 -0.0047073 0.0014833 -0.000203 0.000223 0.000028 0.000040 0.0000070 0.0000098 0.000134 0.000171
2013 10 16 56581 0.111727 0.283791 -0.0062374 0.0015257 -0.000208 0.000248 0.000025 0.000039 0.0000055 0.0000112 0.000158 0.000209
2013 10 17 56582 0.110185 0.283609 -0.0077677 0.0014962 -0.000211 0.000231 0.000025 0.000039 0.0000072 0.0000110 0.000117 0.000158
2013 10 18 56583 0.108331 0.283369 -0.0092485 0.0014182 -0.000209 0.000198 0.000025 0.000039 0.0000038 0.0000108 0.000062 0.000087
2013 10 19 56584 0.105962 0.283145 -0.0106017 0.0012698 -0.000213 0.000212 0.000025 0.000039 0.0000057 0.0000108 0.000044 0.000065
2013 10 20 56585 0.103739 0.282664 -0.0117696 0.0010868 -0.000214 0.000241 0.000025 0.000039 0.0000070 0.0000105 0.000041 0.000060
2013 10 21 56586 0.101756 0.282519 -0.0127744 0.0008939 -0.000094 0.000347 0.000025 0.000041 0.0000096 0.0000092 0.000053 0.000079
2013 10 22 56587 0.099947 0.282314 -0.0136435 0.0007831 -0.000040 0.000389 0.000025 0.000041 0.0000045 0.0000092 0.000056 0.000084
2013 10 23 56588 0.098496 0.282252 -0.0144146 0.0007482 -0.000052 0.000370 0.000025 0.000039 0.0000084 0.0000089 0.000034 0.000051
2013 10 24 56589 0.096884 0.282500 -0.0151819 0.0007967 -0.000087 0.000329 0.000025 0.000039 0.0000084 0.0000088 0.000029 0.000044
2013 10 25 56590 0.095045 0.282628 -0.0160382 0.0009378 -0.000127 0.000282 0.000025 0.000039 0.0000034 0.0000091 0.000023 0.000037
2013 10 26 56591 0.093453 0.282516 -0.0170097 0.0010264 -0.000138 0.000290 0.000028 0.000043 0.0000094 0.0000090 0.000029 0.000046
2013 10 27 56592 0.092408 0.282377 -0.0180777 0.0010975 -0.000137 0.000313 0.000028 0.000048 0.0000081 0.0000087 0.000039 0.000060
2013 10 28 56593 0.091832 0.282935 -0.0192744 0.0012683 -0.000126 0.000308 0.000042 0.000044 0.0000121 0.0000103 0.000049 0.000073
2013 10 29 56594 0.091210 0.283632 -0.0206159 0.0014075 -0.000125 0.000323 0.000043 0.000038 0.0000047 0.0000103 0.000058 0.000088
2013 10 30 56595 0.090411 0.284092 -0.0220701 0.0015026 -0.000151 0.000247 0.000043 0.000037 0.0000059 0.0000099 0.000053 0.000081
2013 10 31 56596 0.089550 0.284177 -0.0235933 0.0015306 -0.000182 0.000157 0.000043 0.000038 0.0000041 0.0000096 0.000043 0.000070
2013 11 1 56597 0.088052 0.284261 -0.0251053 0.0014742 -0.000191 0.000161 0.000043 0.000044 0.0000047 0.0000099 0.000039 0.000064
2013 11 2 56598 0.086815 0.284330 -0.0265342 0.0013825 -0.000188 0.000203 0.000048 0.000048 0.0000073 0.0000101 0.000038 0.000060
2013 11 3 56599 0.085515 0.284793 -0.0278983 0.0013090 -0.000178 0.000249 0.000058 0.000056 0.0000087 0.0000101 0.000037 0.000056
2013 11 4 56600 0.084395 0.284876 -0.0292178 0.0013031 -0.000152 0.000247 0.000061 0.000064 0.0000114 0.0000106 0.000028 0.000041
2013 11 5 56601 0.083174 0.285500 -0.0305056 0.0012640 -0.000136 0.000285 0.000060 0.000058 0.0000121 0.0000108 0.000026 0.000036
2013 11 6 56602 0.081816 0.285783 -0.0317375 0.0012043 -0.000120 0.000318 0.000058 0.000057 0.0000039 0.0000105 0.000023 0.000033
2013 11 7 56603 0.081089 0.286143 -0.0328981 0.0011348 -0.000118 0.000322 0.000059 0.000065 0.0000087 0.0000103 0.000039 0.000061
2013 11 8 56604 0.079839 0.286639 -0.0340371 0.0011551 -0.000121 0.000309 0.000059 0.000071 0.0000068 0.0000103 0.000058 0.000098
2013 11 9 56605 0.077895 0.286644 -0.0352054 0.0012086 -0.000133 0.000315 0.000059 0.000067 0.0000084 0.0000103 0.000058 0.000097
2013 11 10 56606 0.076242 0.286099 -0.0364510 0.0013029 -0.000147 0.000321 0.000053 0.000062 0.0000076 0.0000101 0.000050 0.000082
2013 11 11 56607 0.074842 0.285789 -0.0377943 0.0013823 -0.000149 0.000282 0.000053 0.000062 0.0000050 0.0000101 0.000021 0.000033
2013 11 12 56608 0.073684 0.285213 -0.0392306 0.0014468 -0.000159 0.000276 0.000057 0.000061 0.0000057 0.0000101 0.000023 0.000034
2013 11 13 56609 0.073102 0.284968 -0.0407210 0.0015014 -0.000178 0.000239 0.000054 0.000060 0.0000027 0.0000096 0.000026 0.000035
2013 11 14 56610 0.072468 0.284950 -0.0421969 0.0014397 -0.000233 0.000251 0.000049 0.000059 0.0000059 0.0000099 0.000024 0.000031
2013 11 15 56611 0.071816 0.285149 -0.0435710 0.0012753 -0.000292 0.000267 0.000054 0.000060 0.0000031 0.0000103 0.000022 0.000026
2013 11 16 56612 0.070240 0.285498 -0.0447887 0.0011467 -0.000224 0.000298 0.000059 0.000062 0.0000073 0.0000103 0.000023 0.000028
2013 11 17 56613 0.068372 0.285979 -0.0458782 0.0010639 -0.000106 0.000327 0.000054 0.000059 0.0000076 0.0000103 0.000026 0.000032
2013 11 18 56614 0.066653 0.286810 -0.0468692 0.0009610 0.000021 0.000332 0.000052 0.000058 0.0000056 0.0000100 0.000030 0.000038
2013 11 19 56615 0.065169 0.287571 -0.0477974 0.0009047 0.000133 0.000353 0.000057 0.000061 0.0000026 0.0000102 0.000033 0.000042
2013 11 20 56616 0.063703 0.288165 -0.0486896 0.0008702 0.000074 0.000352 0.000056 0.000060 0.0000060 0.0000105 0.000037 0.000039
2013 11 21 56617 0.062361 0.288725 -0.0495709 0.0008757 0.000005 0.000293 0.000058 0.000061 0.0000069 0.0000107 0.000051 0.000075
2013 11 22 56618 0.061418 0.289168 -0.0504526 0.0009166 -0.000092 0.000253 0.000076 0.000080 0.0000052 0.0000107 0.000062 0.000094
2013 11 23 56619 0.060913 0.289509 -0.0514100 0.0010386 -0.000114 0.000231 0.000078 0.000082 0.0000062 0.0000107 0.000147 0.000201
2013 11 24 56620 0.060152 0.290186 -0.0525353 0.0011651 -0.000106 0.000223 0.000054 0.000065 0.0000099 0.0000105 0.000260 0.000341
2013 11 25 56621 0.059490 0.290704 -0.0537384 0.0012346 -0.000111 0.000207 0.000055 0.000065 0.0000081 0.0000101 0.000370 0.000475
2013 11 26 56622 0.059061 0.291555 -0.0550059 0.0013008 -0.000097 0.000216 0.000054 0.000065 0.0000121 0.0000099 0.000487 0.000622
2013 11 27 56623 0.058500 0.292168 -0.0563624 0.0013913 -0.000092 0.000235 0.000070 0.000077 0.0000085 0.0000099 0.000454 0.000579
2013 11 28 56624 0.057886 0.292791 -0.0577845 0.0014574 -0.000082 0.000262 0.000075 0.000078 0.0000056 0.0000101 0.000385 0.000492
2013 11 29 56625 0.057502 0.293295 -0.0592309 0.0014060 -0.000070 0.000294 0.000057 0.000063 0.0000095 0.0000104 0.000315 0.000404
2013 11 30 56626 0.057586 0.293748 -0.0606302 0.0013599 -0.000054 0.000325 0.000058 0.000066 0.0000076 0.0000103 0.000246 0.000317
2013 12 1 56627 0.057869 0.294172 -0.0619823 0.0013422 -0.000039 0.000349 0.000059 0.000070 0.0000075 0.0000103 0.000177 0.000230
2013 12 2 56628 0.057812 0.294877 -0.0632813 0.0012444 -0.000025 0.000364 0.000058 0.000067 0.0000117 0.0000103 0.000106 0.000143
2013 12 3 56629 0.057215 0.295605 -0.0644885 0.0011523 -0.000011 0.000364 0.000058 0.000064 0.0000044 0.0000101 0.000037 0.000056
2013 12 4 56630 0.056964 0.296397 -0.0656052 0.0011449 -0.000025 0.000400 0.000065 0.000066 0.0000038 0.0000101 0.000045 0.000041
2013 12 5 56631 0.057134 0.297390 -0.0667424 0.0011605 -0.000046 0.000431 0.000065 0.000069 0.0000052 0.0000104 0.000072 0.000045
2013 12 6 56632 0.057086 0.298647 -0.0679462 0.0012484 -0.000069 0.000448 0.000059 0.000067 0.0000064 0.0000101 0.000099 0.000049
2013 12 7 56633 0.057007 0.300398 -0.0692497 0.0013630 0.000005 0.000002 0.000076 0.000082 0.0000074 0.0000101 0.000082 0.000070
2013 12 8 56634 0.056973 0.301531 -0.0706396 0.0014153 0.000005 0.000002 0.000072 0.000082 0.0000109 0.0000101 0.000074 0.000078
2013 12 9 56635 0.057200 0.302531 -0.0720708 0.0014258 -0.000009 0.000166 0.000048 0.000061 0.0000107 0.0000096 0.000046 0.000030
2013 12 10 56636 0.057065 0.303856 -0.0734731 0.0013519 -0.000010 0.000191 0.000056 0.000067 0.0000049 0.0000094 0.000021 0.000029
2013 12 11 56637 0.056879 0.305162 -0.0747678 0.0012529 0.000001 0.000212 0.000056 0.000068 0.0000082 0.0000092 0.000019 0.000026
2013 12 12 56638 0.056870 0.306250 -0.0759664 0.0011467 0.000023 0.000233 0.000092 0.000085 0.0000130 0.0000088 0.000019 0.000027
2013 12 13 56639 0.056510 0.307277 -0.0770616 0.0010506 0.000043 0.000253 0.000095 0.000086 0.0000039 0.0000090 0.000019 0.000028
2013 12 14 56640 0.055709 0.308232 -0.0780346 0.0009162 0.000036 0.000273 0.000064 0.000071 0.0000080 0.0000099 0.000043 0.000061
2013 12 15 56641 0.054570 0.308614 -0.0788823 0.0007751 0.000019 0.000287 0.000063 0.000070 0.0000099 0.0000100 0.000076 0.000106
2013 12 16 56642 0.053198 0.308546 -0.0796017 0.0006761 0.000027 0.000306 0.000056 0.000063 0.0000078 0.0000098 0.000144 0.000170
2013 12 17 56643 0.051716 0.308102 -0.0802450 0.0006113 0.000021 0.000310 0.000056 0.000061 0.0000055 0.0000098 0.000188 0.000221
2013 12 18 56644 0.049959 0.308079 -0.0808446 0.0006039 0.000039 0.000311 0.000086 0.000087 0.0000048 0.0000096 0.000151 0.000179
2013 12 19 56645 0.048338 0.308156 -0.0814731 0.0006730 0.000058 0.000302 0.000090 0.000093 0.0000065 0.0000099 0.000089 0.000106
2013 12 20 56646 0.047108 0.308654 -0.0821956 0.0007626 0.000075 0.000283 0.000094 0.000097 0.0000030 0.0000097 0.000028 0.000033
2013 12 21 56647 0.046064 0.309102 -0.0830489 0.0009298 0.000077 0.000229 0.000098 0.000098 0.0000065 0.0000097 0.000013 0.000016
2013 12 22 56648 0.045176 0.309738 -0.0840445 0.0010657 0.000070 0.000163 0.000069 0.000070 0.0000060 0.0000094 0.000015 0.000019
2013 12 23 56649 0.044293 0.310448 -0.0851722 0.0011703 0.000062 0.000101 0.000056 0.000062 0.0000095 0.0000094 0.000017 0.000023
2013 12 24 56650 0.043537 0.311200 -0.0864091 0.0012775 0.000050 0.000045 0.000053 0.000059 0.0000037 0.0000096 0.000019 0.000026
2013 12 25 56651 0.042686 0.312361 -0.0877291 0.0013395 0.000045 0.000040 0.000078 0.000079 0.0000075 0.0000100 0.000018 0.000025
2013 12 26 56652 0.041808 0.313435 -0.0891107 0.0014002 0.000040 0.000058 0.000081 0.000083 0.0000111 0.0000104 0.000016 0.000022
2013 12 27 56653 0.041068 0.314844 -0.0905322 0.0014365 0.000032 0.000087 0.000113 0.000099 0.0000036 0.0000102 0.000014 0.000020
2013 12 28 56654 0.040491 0.315949 -0.0919602 0.0013981 0.000026 0.000104 0.000114 0.000101 0.0000090 0.0000105 0.000016 0.000021
2013 12 29 56655 0.040099 0.316820 -0.0933502 0.0013767 0.000021 0.000120 0.000079 0.000077 0.0000103 0.0000104 0.000018 0.000025
2013 12 30 56656 0.039588 0.317646 -0.0946605 0.0012598 0.000013 0.000141 0.000074 0.000070 0.0000060 0.0000097 0.000021 0.000028
2013 12 31 56657 0.038987 0.318247 -0.0958816 0.0011687 0.000007 0.000162 0.000060 0.000069 0.0000013 0.0000096 0.000023 0.000031
INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE
EARTH ORIENTATION PARAMETERS
EOP (IERS) 08 C04
FORMAT(3(I4),I7,2(F11.6),2(F12.7),2(F11.6),2(F11.6),2(F11.7),2(F12.6))
##################################################################################
Date MJD x y UT1-UTC LOD dX dY x Err y Err UT1-UTC Err LOD Err dX Err dY Err
" " s s " " " " s s " "
(0h UTC)
2014 1 1 56658 0.038635 0.318873 -0.0970509 0.0011868 -0.000027 0.000194 0.000061 0.000072 0.0000062 0.0000101 0.000038 0.000050
2014 1 2 56659 0.038392 0.319560 -0.0982417 0.0012244 -0.000064 0.000224 0.000066 0.000069 0.0000100 0.0000103 0.000058 0.000075
2014 1 3 56660 0.037782 0.320363 -0.0995045 0.0012891 -0.000095 0.000243 0.000074 0.000074 0.0000044 0.0000106 0.000078 0.000099
2014 1 4 56661 0.037125 0.320762 -0.1008534 0.0013700 -0.000075 0.000256 0.000077 0.000080 0.0000090 0.0000108 0.000073 0.000092
2014 1 5 56662 0.036686 0.321192 -0.1022594 0.0014069 -0.000033 0.000258 0.000062 0.000073 0.0000084 0.0000105 0.000058 0.000074
2014 1 6 56663 0.036107 0.321881 -0.1036670 0.0013719 0.000013 0.000248 0.000050 0.000063 0.0000060 0.0000105 0.000050 0.000061
2014 1 7 56664 0.035279 0.322794 -0.1049941 0.0012600 0.000056 0.000231 0.000062 0.000064 0.0000015 0.0000101 0.000033 0.000041
2014 1 8 56665 0.034294 0.323912 -0.1061719 0.0010866 0.000057 0.000229 0.000075 0.000068 0.0000053 0.0000095 0.000028 0.000034
2014 1 9 56666 0.033907 0.324957 -0.1072008 0.0009609 0.000045 0.000233 0.000070 0.000071 0.0000107 0.0000099 0.000026 0.000031
2014 1 10 56667 0.033546 0.326433 -0.1080952 0.0008228 0.000031 0.000235 0.000063 0.000072 0.0000060 0.0000104 0.000024 0.000027
2014 1 11 56668 0.032776 0.327841 -0.1088510 0.0006595 0.000033 0.000249 0.000066 0.000071 0.0000073 0.0000104 0.000030 0.000034
2014 1 12 56669 0.031632 0.328925 -0.1094762 0.0005864 0.000040 0.000265 0.000066 0.000071 0.0000066 0.0000104 0.000038 0.000045
2014 1 13 56670 0.030272 0.329986 -0.1100333 0.0005443 0.000047 0.000274 0.000063 0.000063 0.0000076 0.0000104 0.000046 0.000056
2014 1 14 56671 0.029421 0.330656 -0.1105752 0.0005506 0.000050 0.000275 0.000076 0.000085 0.0000026 0.0000103 0.000054 0.000067
2014 1 15 56672 0.028546 0.331742 -0.1111690 0.0006303 0.000118 0.000199 0.000123 0.000120 0.0000096 0.0000102 0.000041 0.000051
2014 1 16 56673 0.027457 0.332608 -0.1118389 0.0007078 0.000152 0.000183 0.000115 0.000097 0.0000148 0.0000104 0.000035 0.000043
2014 1 17 56674 0.026580 0.333728 -0.1126043 0.0008222 0.000183 0.000167 0.000066 0.000060 0.0000060 0.0000104 0.000028 0.000036
2014 1 18 56675 0.025855 0.335069 -0.1134933 0.0009783 0.000181 0.000156 0.000066 0.000060 0.0000069 0.0000104 0.000029 0.000037
2014 1 19 56676 0.024806 0.336353 -0.1145454 0.0011223 0.000164 0.000148 0.000070 0.000066 0.0000081 0.0000104 0.000034 0.000042
2014 1 20 56677 0.023812 0.337368 -0.1157127 0.0012096 0.000127 0.000141 0.000063 0.000065 0.0000073 0.0000110 0.000038 0.000046
2014 1 21 56678 0.023712 0.338243 -0.1169561 0.0012609 0.000104 0.000132 0.000059 0.000068 0.0000109 0.0000109 0.000042 0.000050
2014 1 22 56679 0.024082 0.338997 -0.1182377 0.0012905 0.000080 0.000121 0.000061 0.000068 0.0000046 0.0000105 0.000046 0.000054
2014 1 23 56680 0.024329 0.339927 -0.1195135 0.0012530 0.000166 0.000120 0.000060 0.000063 0.0000084 0.0000109 0.000034 0.000040
2014 1 24 56681 0.024480 0.340703 -0.1207234 0.0011452 0.000277 0.000119 0.000063 0.000066 0.0000050 0.0000115 0.000018 0.000021
2014 1 25 56682 0.024339 0.341338 -0.1218334 0.0010877 0.000304 0.000101 0.000072 0.000071 0.0000059 0.0000117 0.000029 0.000036
2014 1 26 56683 0.024143 0.341833 -0.1228609 0.0010070 0.000292 0.000075 0.000068 0.000072 0.0000108 0.0000114 0.000051 0.000064
2014 1 27 56684 0.024219 0.342592 -0.1238269 0.0009428 0.000247 0.000063 0.000067 0.000076 0.0000106 0.0000111 0.000025 0.000031
2014 1 28 56685 0.024393 0.343907 -0.1247856 0.0009563 0.000206 0.000042 0.000063 0.000071 0.0000105 0.0000107 0.000030 0.000037
2014 1 29 56686 0.024500 0.345495 -0.1258104 0.0010692 0.000153 0.000023 0.000052 0.000058 0.0000039 0.0000106 0.000031 0.000042
2014 1 30 56687 0.024526 0.346902 -0.1269629 0.0012370 0.000185 0.000030 0.000056 0.000057 0.0000083 0.0000107 0.000037 0.000048
2014 1 31 56688 0.024216 0.347929 -0.1282635 0.0013411 0.000234 0.000048 0.000056 0.000053 0.0000041 0.0000106 0.000044 0.000055
2014 2 1 56689 0.023746 0.348777 -0.1296531 0.0014023 0.000200 0.000066 0.000057 0.000052 0.0000094 0.0000105 0.000043 0.000053
2014 2 2 56690 0.023546 0.349472 -0.1310704 0.0013911 0.000134 0.000089 0.000054 0.000053 0.0000063 0.0000106 0.000038 0.000047
2014 2 3 56691 0.023587 0.350099 -0.1324575 0.0013340 0.000070 0.000115 0.000055 0.000051 0.0000069 0.0000102 0.000034 0.000041
2014 2 4 56692 0.023731 0.351001 -0.1337438 0.0012028 0.000011 0.000143 0.000053 0.000052 0.0000023 0.0000102 0.000030 0.000035
2014 2 5 56693 0.023882 0.352327 -0.1348635 0.0010018 0.000059 0.000153 0.000052 0.000053 0.0000108 0.0000107 0.000053 0.000039
2014 2 6 56694 0.024326 0.353693 -0.1357882 0.0008236 0.000141 0.000158 0.000052 0.000052 0.0000146 0.0000107 0.000085 0.000045
2014 2 7 56695 0.024504 0.355291 -0.1365502 0.0007000 0.000228 0.000157 0.000052 0.000053 0.0000086 0.0000107 0.000116 0.000051
2014 2 8 56696 0.024453 0.356675 -0.1372079 0.0006189 0.000224 0.000179 0.000051 0.000050 0.0000090 0.0000107 0.000107 0.000050
2014 2 9 56697 0.024378 0.358195 -0.1378092 0.0005558 0.000185 0.000204 0.000052 0.000051 0.0000125 0.0000107 0.000082 0.000046
2014 2 10 56698 0.024167 0.359775 -0.1383968 0.0005869 0.000141 0.000219 0.000051 0.000053 0.0000097 0.0000108 0.000057 0.000042
2014 2 11 56699 0.024019 0.361757 -0.1390051 0.0006671 0.000093 0.000227 0.000055 0.000057 0.0000021 0.0000105 0.000033 0.000039
2014 2 12 56700 0.023525 0.363716 -0.1396693 0.0007379 0.000160 0.000178 0.000062 0.000059 0.0000058 0.0000100 0.000036 0.000048
2014 2 13 56701 0.022797 0.365376 -0.1404604 0.0008575 0.000255 0.000115 0.000067 0.000062 0.0000067 0.0000103 0.000045 0.000061
2014 2 14 56702 0.022064 0.367071 -0.1413986 0.0009859 0.000344 0.000053 0.000076 0.000071 0.0000049 0.0000108 0.000054 0.000074
2014 2 15 56703 0.021480 0.368624 -0.1424512 0.0011128 0.000330 0.000044 0.000066 0.000072 0.0000060 0.0000102 0.000079 0.000098
2014 2 16 56704 0.021005 0.370370 -0.1436581 0.0012658 0.000273 0.000057 0.000058 0.000065 0.0000086 0.0000103 0.000109 0.000126
2014 2 17 56705 0.020488 0.372132 -0.1449610 0.0013315 0.000211 0.000066 0.000061 0.000060 0.0000077 0.0000104 0.000139 0.000153
2014 2 18 56706 0.019812 0.373408 -0.1463208 0.0013559 0.000138 0.000082 0.000061 0.000063 0.0000042 0.0000103 0.000169 0.000181
2014 2 19 56707 0.019886 0.374810 -0.1477070 0.0013818 0.000153 0.000041 0.000068 0.000064 0.0000071 0.0000106 0.000141 0.000153
2014 2 20 56708 0.020101 0.376100 -0.1490550 0.0013295 0.000200 0.000009 0.000068 0.000059 0.0000076 0.0000106 0.000095 0.000107
2014 2 21 56709 0.020333 0.377353 -0.1503430 0.0012159 0.000245 -0.000020 0.000064 0.000059 0.0000046 0.0000108 0.000051 0.000062
2014 2 22 56710 0.020503 0.378514 -0.1515427 0.0011412 0.000272 0.000003 0.000063 0.000060 0.0000115 0.0000109 0.000035 0.000046
2014 2 23 56711 0.020667 0.379942 -0.1526833 0.0011363 0.000287 0.000043 0.000063 0.000060 0.0000081 0.0000109 0.000031 0.000042
2014 2 24 56712 0.020406 0.381353 -0.1538325 0.0011823 0.000287 0.000079 0.000061 0.000060 0.0000072 0.0000110 0.000027 0.000036
2014 2 25 56713 0.019586 0.382709 -0.1550436 0.0012766 0.000291 0.000120 0.000063 0.000063 0.0000022 0.0000115 0.000023 0.000032
2014 2 26 56714 0.018776 0.383582 -0.1563845 0.0014431 0.000271 0.000114 0.000068 0.000063 0.0000054 0.0000114 0.000029 0.000038
2014 2 27 56715 0.018820 0.384179 -0.1579347 0.0016747 0.000244 0.000094 0.000074 0.000066 0.0000048 0.0000104 0.000037 0.000046
2014 2 28 56716 0.019274 0.385242 -0.1597391 0.0018881 0.000216 0.000068 0.000074 0.000067 0.0000029 0.0000101 0.000045 0.000053
2014 3 1 56717 0.019841 0.386558 -0.1616963 0.0019819 0.000223 0.000068 0.000070 0.000063 0.0000075 0.0000107 0.000045 0.000053
2014 3 2 56718 0.020229 0.387859 -0.1637004 0.0019764 0.000241 0.000076 0.000070 0.000063 0.0000067 0.0000111 0.000041 0.000051
2014 3 3 56719 0.020440 0.389343 -0.1656640 0.0019105 0.000255 0.000080 0.000123 0.000123 0.0000078 0.0000180 0.000038 0.000047
2014 3 4 56720 0.020479 0.390843 -0.1675271 0.0017869 0.000260 0.000082 0.000065 0.000056 0.0000026 0.0000110 0.000034 0.000044
2014 3 5 56721 0.020391 0.391998 -0.1692176 0.0015938 0.000287 0.000070 0.000063 0.000054 0.0000074 0.0000109 0.000042 0.000060
2014 3 6 56722 0.020407 0.392940 -0.1707396 0.0014224 0.000317 0.000054 0.000059 0.000054 0.0000080 0.0000109 0.000056 0.000081
2014 3 7 56723 0.020307 0.393997 -0.1721130 0.0013004 0.000348 0.000039 0.000068 0.000061 0.0000058 0.0000109 0.000071 0.000102
2014 3 8 56724 0.020124 0.395068 -0.1733490 0.0011717 0.000360 0.000020 0.000077 0.000067 0.0000097 0.0000114 0.000071 0.000095
2014 3 9 56725 0.019881 0.396125 -0.1744791 0.0010656 0.000364 0.000002 0.000067 0.000063 0.0000053 0.0000081 0.000064 0.000078
2014 3 10 56726 0.019532 0.396915 -0.1755600 0.0010786 0.000333 -0.000009 0.000054 0.000059 0.0000050 0.0000075 0.000049 0.000064
2014 3 11 56727 0.019307 0.397995 -0.1766225 0.0010647 0.000312 -0.000015 0.000049 0.000059 0.0000055 0.0000105 0.000036 0.000047
2014 3 12 56728 0.019487 0.399097 -0.1776624 0.0010541 0.000281 -0.000020 0.000048 0.000066 0.0000026 0.0000102 0.000029 0.000038
2014 3 13 56729 0.020326 0.400186 -0.1787710 0.0011566 0.000276 0.000030 0.000059 0.000069 0.0000041 0.0000102 0.000033 0.000043
2014 3 14 56730 0.021470 0.401233 -0.1799750 0.0012344 0.000274 0.000091 0.000066 0.000072 0.0000027 0.0000102 0.000041 0.000054
2014 3 15 56731 0.022536 0.402424 -0.1812403 0.0012801 0.000255 0.000118 0.000067 0.000075 0.0000062 0.0000107 0.000044 0.000058
2014 3 16 56732 0.023611 0.403661 -0.1825144 0.0012767 0.000228 0.000127 0.000067 0.000076 0.0000089 0.0000117 0.000045 0.000060
2014 3 17 56733 0.024471 0.404936 -0.1837860 0.0012374 0.000189 0.000133 0.000073 0.000086 0.0000083 0.0000114 0.000045 0.000060
2014 3 18 56734 0.024892 0.405583 -0.1850368 0.0012226 0.000168 0.000128 0.000070 0.000086 0.0000037 0.0000110 0.000046 0.000062
2014 3 19 56735 0.025396 0.405970 -0.1862549 0.0011946 0.000267 0.000307 0.000061 0.000077 0.0000088 0.0000109 0.000088 0.000076
2014 3 20 56736 0.026182 0.406487 -0.1874422 0.0011525 0.000394 0.000514 0.000064 0.000076 0.0000087 0.0000110 0.000141 0.000091
2014 3 21 56737 0.027434 0.407106 -0.1885777 0.0011114 0.000510 0.000693 0.000073 0.000077 0.0000118 0.0000108 0.000193 0.000106
2014 3 22 56738 0.028319 0.408424 -0.1896834 0.0010993 0.000529 0.000615 0.000064 0.000069 0.0000133 0.0000098 0.000172 0.000094
2014 3 23 56739 0.029456 0.409785 -0.1908270 0.0011587 0.000496 0.000424 0.000062 0.000063 0.0000080 0.0000100 0.000124 0.000072
2014 3 24 56740 0.030870 0.411294 -0.1920415 0.0012512 0.000408 -0.000027 0.000049 0.000051 0.0000078 0.0000100 0.000039 0.000053
2014 3 25 56741 0.032294 0.412629 -0.1933480 0.0013671 0.000364 -0.000046 0.000046 0.000045 0.0000022 0.0000099 0.000022 0.000028
2014 3 26 56742 0.033618 0.414145 -0.1947922 0.0015336 0.000334 -0.000032 0.000059 0.000052 0.0000086 0.0000110 0.000016 0.000023
2014 3 27 56743 0.035069 0.415154 -0.1963878 0.0016663 0.000300 0.000002 0.000059 0.000056 0.0000075 0.0000104 0.000015 0.000023
2014 3 28 56744 0.036794 0.415987 -0.1980989 0.0017386 0.000262 0.000051 0.000064 0.000056 0.0000023 0.0000099 0.000013 0.000023
2014 3 29 56745 0.038524 0.416876 -0.1998809 0.0017997 0.000210 0.000074 0.000069 0.000059 0.0000063 0.0000103 0.000023 0.000023
2014 3 30 56746 0.040416 0.418052 -0.2016754 0.0017886 0.000158 0.000095 0.000064 0.000062 0.0000102 0.0000111 0.000036 0.000024
2014 3 31 56747 0.042240 0.419457 -0.2034060 0.0016529 0.000171 0.000083 0.000053 0.000057 0.0000095 0.0000116 0.000029 0.000039
2014 4 1 56748 0.043607 0.420940 -0.2050077 0.0014833 0.000165 0.000100 0.000058 0.000056 0.0000023 0.0000111 0.000033 0.000044
2014 4 2 56749 0.044731 0.422505 -0.2064734 0.0014041 0.000149 0.000156 0.000064 0.000065 0.0000053 0.0000113 0.000069 0.000033
2014 4 3 56750 0.045490 0.423828 -0.2078192 0.0013026 0.000180 0.000166 0.000038 0.000026 0.0000093 0.0000230 0.000334 0.000142
2014 4 4 56751 0.045979 0.424932 -0.2090728 0.0012096 0.000254 0.000110 0.000041 0.000028 0.0000094 0.0000231 0.000174 0.000076
2014 4 5 56752 0.046374 0.425656 -0.2102805 0.0012037 0.000322 0.000091 0.000043 0.000031 0.0000095 0.0000231 0.000070 0.000035
2014 4 6 56753 0.046842 0.426321 -0.2114745 0.0011918 0.000377 0.000088 0.000047 0.000034 0.0000095 0.0000231 0.000055 0.000033
2014 4 7 56754 0.047736 0.426413 -0.2126716 0.0011774 0.000403 0.000081 0.000050 0.000038 0.0000094 0.0000229 0.000039 0.000031
2014 4 8 56755 0.049174 0.427200 -0.2138681 0.0011797 0.000434 0.000071 0.000053 0.000042 0.0000092 0.0000228 0.000024 0.000029
2014 4 9 56756 0.050711 0.428221 -0.2150826 0.0012402 0.000430 0.000044 0.000055 0.000045 0.0000090 0.0000225 0.000039 0.000033
2014 4 10 56757 0.052168 0.429049 -0.2163479 0.0012906 0.000407 0.000016 0.000056 0.000048 0.0000088 0.0000222 0.000062 0.000039
2014 4 11 56758 0.053250 0.429803 -0.2176742 0.0013679 0.000369 -0.000010 0.000056 0.000049 0.0000087 0.0000219 0.000086 0.000045
2014 4 12 56759 0.054234 0.430495 -0.2190704 0.0014091 0.000361 -0.000029 0.000056 0.000050 0.0000088 0.0000215 0.000078 0.000041
2014 4 13 56760 0.054922 0.430829 -0.2205171 0.0014478 0.000356 -0.000041 0.000056 0.000050 0.0000089 0.0000212 0.000058 0.000034
2014 4 14 56761 0.055815 0.431117 -0.2219822 0.0014663 0.000362 -0.000059 0.000055 0.000050 0.0000092 0.0000210 0.000060 0.000077
2014 4 15 56762 0.056685 0.432066 -0.2234228 0.0013816 0.000324 -0.000051 0.000055 0.000050 0.0000095 0.0000207 0.000022 0.000028
2014 4 16 56763 0.057372 0.432707 -0.2247286 0.0012667 0.000186 -0.000090 0.000055 0.000050 0.0000100 0.0000205 0.000026 0.000025
2014 4 17 56764 0.058285 0.433345 -0.2259156 0.0011908 0.000174 -0.000102 0.000055 0.000050 0.0000104 0.0000204 0.000027 0.000026
2014 4 18 56765 0.059603 0.434397 -0.2271391 0.0012129 0.000204 -0.000106 0.000055 0.000050 0.0000107 0.0000203 0.000028 0.000027
2014 4 19 56766 0.060277 0.435889 -0.2283317 0.0012106 0.000233 -0.000109 0.000055 0.000051 0.0000109 0.0000202 0.000029 0.000029
2014 4 20 56767 0.061059 0.436854 -0.2295709 0.0012763 0.000263 -0.000113 0.000055 0.000051 0.0000108 0.0000201 0.000031 0.000032
2014 4 21 56768 0.062226 0.437949 -0.2308728 0.0013690 0.000293 -0.000117 0.000056 0.000052 0.0000106 0.0000200 0.000033 0.000034
2014 4 22 56769 0.063815 0.438636 -0.2323091 0.0015186 0.000323 -0.000120 0.000056 0.000052 0.0000103 0.0000198 0.000035 0.000036
2014 4 23 56770 0.065292 0.439387 -0.2338990 0.0016702 0.000352 -0.000124 0.000056 0.000052 0.0000100 0.0000197 0.000036 0.000038
2014 4 24 56771 0.066921 0.439872 -0.2356278 0.0017850 0.000334 -0.000151 0.000056 0.000052 0.0000098 0.0000196 0.000036 0.000038
2014 4 25 56772 0.068585 0.440441 -0.2374693 0.0019314 0.000246 -0.000097 0.000056 0.000052 0.0000097 0.0000194 0.000036 0.000038
2014 4 26 56773 0.070307 0.441005 -0.2394767 0.0020125 0.000217 -0.000075 0.000056 0.000052 0.0000096 0.0000193 0.000036 0.000038
2014 4 27 56774 0.071805 0.441748 -0.2414570 0.0019375 0.000217 -0.000075 0.000055 0.000052 0.0000096 0.0000191 0.000035 0.000037
2014 4 28 56775 0.072999 0.442322 -0.2433045 0.0017822 0.000217 -0.000075 0.000054 0.000051 0.0000094 0.0000190 0.000033 0.000034
2014 4 29 56776 0.074344 0.442647 -0.2450174 0.0016082 0.000216 -0.000075 0.000053 0.000051 0.0000091 0.0000188 0.000030 0.000030
2014 4 30 56777 0.076138 0.442770 -0.2465525 0.0014022 0.000294 -0.000101 0.000052 0.000050 0.0000084 0.0000187 0.000025 0.000025
2014 5 1 56778 0.078006 0.443141 -0.2478353 0.0012218 0.000389 -0.000122 0.000051 0.000049 0.0000075 0.0000186 0.000021 0.000021
2014 5 2 56779 0.079752 0.443556 -0.2490242 0.0011072 0.000455 -0.000133 0.000049 0.000047 0.0000065 0.0000185 0.000017 0.000017
2014 5 3 56780 0.081711 0.443986 -0.2501264 0.0010898 0.000414 -0.000124 0.000048 0.000045 0.0000055 0.0000184 0.000014 0.000014
2014 5 4 56781 0.083804 0.444551 -0.2512096 0.0011009 0.000373 -0.000115 0.000047 0.000043 0.0000047 0.0000183 0.000012 0.000012
2014 5 5 56782 0.085264 0.444867 -0.2523442 0.0011410 0.000332 -0.000106 0.000046 0.000041 0.0000040 0.0000183 0.000011 0.000010
2014 5 6 56783 0.086218 0.444993 -0.2535314 0.0012144 0.000292 -0.000097 0.000045 0.000038 0.0000035 0.0000183 0.000010 0.000009
2014 5 7 56784 0.087407 0.445508 -0.2547832 0.0012917 0.000228 -0.000090 0.000044 0.000036 0.0000031 0.0000183 0.000009 0.000009
2014 5 8 56785 0.088971 0.446127 -0.2561164 0.0013740 0.000170 -0.000095 0.000043 0.000035 0.0000028 0.0000183 0.000009 0.000008
2014 5 9 56786 0.090412 0.446742 -0.2575222 0.0014280 0.000152 -0.000111 0.000042 0.000034 0.0000026 0.0000183 0.000009 0.000008
2014 5 10 56787 0.091516 0.446842 -0.2589607 0.0014445 0.000150 -0.000128 0.000042 0.000033 0.0000025 0.0000183 0.000009 0.000008
2014 5 11 56788 0.093120 0.446733 -0.2604000 0.0014330 0.000156 -0.000161 0.000041 0.000032 0.0000024 0.0000184 0.000008 0.000008
2014 5 12 56789 0.095450 0.446666 -0.2618050 0.0013731 0.000164 -0.000196 0.000041 0.000032 0.0000023 0.0000185 0.000008 0.000008
2014 5 13 56790 0.097759 0.447045 -0.2631161 0.0012470 0.000150 -0.000189 0.000041 0.000032 0.0000023 0.0000186 0.000008 0.000008
2014 5 14 56791 0.099823 0.447537 -0.2643053 0.0011407 0.000137 -0.000182 0.000041 0.000032 0.0000023 0.0000187 0.000008 0.000007
2014 5 15 56792 0.101336 0.447890 -0.2654073 0.0010624 0.000134 -0.000177 0.000042 0.000032 0.0000023 0.0000189 0.000008 0.000007
2014 5 16 56793 0.102754 0.448019 -0.2664381 0.0010092 0.000137 -0.000186 0.000042 0.000032 0.0000024 0.0000191 0.000008 0.000007
2014 5 17 56794 0.103945 0.448045 -0.2674370 0.0010041 0.000146 -0.000222 0.000043 0.000033 0.0000025 0.0000192 0.000008 0.000007
2014 5 18 56795 0.104918 0.447989 -0.2684767 0.0010704 0.000148 -0.000236 0.000044 0.000034 0.0000026 0.0000194 0.000008 0.000008
2014 5 19 56796 0.105841 0.447812 -0.2696113 0.0012053 0.000142 -0.000227 0.000045 0.000036 0.0000028 0.0000195 0.000009 0.000008
2014 5 20 56797 0.107248 0.447607 -0.2708972 0.0013566 0.000133 -0.000197 0.000046 0.000037 0.0000031 0.0000196 0.000009 0.000008
2014 5 21 56798 0.108980 0.447694 -0.2723098 0.0014569 0.000134 -0.000167 0.000047 0.000039 0.0000035 0.0000196 0.000010 0.000009
2014 5 22 56799 0.110853 0.448038 -0.2737784 0.0014631 0.000147 -0.000153 0.000048 0.000041 0.0000040 0.0000197 0.000011 0.000010
2014 5 23 56800 0.112172 0.448263 -0.2752192 0.0014141 0.000173 -0.000157 0.000049 0.000043 0.0000047 0.0000196 0.000012 0.000011
2014 5 24 56801 0.113669 0.448048 -0.2766489 0.0013577 0.000189 -0.000156 0.000050 0.000045 0.0000056 0.0000196 0.000013 0.000012
2014 5 25 56802 0.115160 0.447700 -0.2779098 0.0011981 0.000202 -0.000151 0.000050 0.000046 0.0000068 0.0000195 0.000016 0.000014
2014 5 26 56803 0.116710 0.446966 -0.2790136 0.0010390 0.000214 -0.000146 0.000051 0.000047 0.0000081 0.0000193 0.000018 0.000017
2014 5 27 56804 0.118078 0.446334 -0.2799649 0.0008563 0.000225 -0.000144 0.000051 0.000048 0.0000095 0.0000192 0.000022 0.000021
2014 5 28 56805 0.120155 0.445401 -0.2807220 0.0006981 0.000233 -0.000154 0.000051 0.000048 0.0000107 0.0000190 0.000025 0.000024
2014 5 29 56806 0.122767 0.444962 -0.2813525 0.0005656 0.000274 -0.000170 0.000051 0.000048 0.0000112 0.0000189 0.000027 0.000027
2014 5 30 56807 0.125428 0.444159 -0.2818407 0.0004248 0.000324 -0.000189 0.000051 0.000048 0.0000112 0.0000188 0.000027 0.000029
2014 5 31 56808 0.127751 0.443535 -0.2822207 0.0003855 0.000323 -0.000187 0.000051 0.000047 0.0000109 0.0000187 0.000027 0.000028
2014 6 1 56809 0.129382 0.442901 -0.2826269 0.0003870 0.000302 -0.000178 0.000051 0.000047 0.0000105 0.0000185 0.000025 0.000027
2014 6 2 56810 0.130672 0.441904 -0.2830313 0.0004260 0.000281 -0.000169 0.000051 0.000047 0.0000102 0.0000184 0.000024 0.000026
2014 6 3 56811 0.131670 0.440946 -0.2834755 0.0004692 0.000260 -0.000160 0.000051 0.000047 0.0000100 0.0000183 0.000024 0.000026
2014 6 4 56812 0.133002 0.439682 -0.2839682 0.0005757 0.000148 -0.000196 0.000051 0.000048 0.0000099 0.0000182 0.000024 0.000025
2014 6 5 56813 0.134479 0.438899 -0.2846041 0.0006269 0.000050 -0.000238 0.000051 0.000048 0.0000100 0.0000181 0.000024 0.000026
2014 6 6 56814 0.136334 0.437847 -0.2852191 0.0006864 0.000099 -0.000260 0.000051 0.000048 0.0000103 0.0000180 0.000024 0.000026
2014 6 7 56815 0.138475 0.437411 -0.2859542 0.0007247 0.000122 -0.000259 0.000051 0.000049 0.0000108 0.0000179 0.000024 0.000026
2014 6 8 56816 0.140267 0.436583 -0.2866897 0.0007540 0.000136 -0.000249 0.000051 0.000049 0.0000114 0.0000179 0.000024 0.000026
2014 6 9 56817 0.142193 0.435883 -0.2874319 0.0007277 0.000150 -0.000239 0.000051 0.000049 0.0000120 0.0000179 0.000025 0.000026
2014 6 10 56818 0.143900 0.435273 -0.2881091 0.0006877 0.000164 -0.000229 0.000051 0.000049 0.0000126 0.0000179 0.000025 0.000027
2014 6 11 56819 0.145742 0.434729 -0.2887678 0.0006694 0.000178 -0.000218 0.000052 0.000049 0.0000132 0.0000179 0.000026 0.000027
2014 6 12 56820 0.147475 0.434263 -0.2894086 0.0006460 0.000134 -0.000256 0.000052 0.000049 0.0000136 0.0000179 0.000027 0.000028
2014 6 13 56821 0.149117 0.433486 -0.2900394 0.0006312 0.000120 -0.000264 0.000052 0.000049 0.0000138 0.0000179 0.000027 0.000028
2014 6 14 56822 0.150723 0.432699 -0.2906975 0.0006772 0.000116 -0.000250 0.000052 0.000049 0.0000138 0.0000179 0.000028 0.000029
2014 6 15 56823 0.152515 0.431573 -0.2914277 0.0007752 0.000109 -0.000232 0.000052 0.000049 0.0000135 0.0000179 0.000029 0.000030
2014 6 16 56824 0.154208 0.430685 -0.2922723 0.0008985 0.000102 -0.000215 0.000052 0.000049 0.0000130 0.0000178 0.000029 0.000030
2014 6 17 56825 0.155920 0.430008 -0.2932342 0.0010492 0.000096 -0.000197 0.000052 0.000049 0.0000123 0.0000177 0.000028 0.000030
2014 6 18 56826 0.157288 0.429487 -0.2943547 0.0011434 0.000089 -0.000179 0.000052 0.000049 0.0000115 0.0000176 0.000027 0.000028
2014 6 19 56827 0.158508 0.428886 -0.2955066 0.0011746 0.000085 -0.000200 0.000052 0.000049 0.0000107 0.0000175 0.000025 0.000027
2014 6 20 56828 0.159865 0.428145 -0.2966774 0.0011326 0.000082 -0.000230 0.000051 0.000048 0.0000098 0.0000173 0.000024 0.000026
2014 6 21 56829 0.160944 0.427272 -0.2977446 0.0009942 0.000086 -0.000229 0.000051 0.000048 0.0000090 0.0000172 0.000022 0.000024
2014 6 22 56830 0.161869 0.426250 -0.2986714 0.0008196 0.000093 -0.000216 0.000051 0.000047 0.0000084 0.0000171 0.000022 0.000023
2014 6 23 56831 0.163248 0.425126 -0.2993918 0.0006487 0.000100 -0.000202 0.000051 0.000047 0.0000078 0.0000170 0.000021 0.000023
2014 6 24 56832 0.164735 0.423900 -0.2999778 0.0004974 0.000107 -0.000189 0.000050 0.000047 0.0000074 0.0000170 0.000021 0.000023
2014 6 25 56833 0.166018 0.422594 -0.3003892 0.0003641 0.000086 -0.000181 0.000051 0.000047 0.0000072 0.0000171 0.000021 0.000023
2014 6 26 56834 0.166820 0.421456 -0.3007069 0.0002290 0.000102 -0.000217 0.000051 0.000047 0.0000071 0.0000172 0.000022 0.000023
2014 6 27 56835 0.167441 0.420226 -0.3008703 0.0001372 0.000115 -0.000328 0.000051 0.000047 0.0000071 0.0000174 0.000022 0.000024
2014 6 28 56836 0.168132 0.419090 -0.3010214 0.0001603 0.000145 -0.000340 0.000051 0.000047 0.0000072 0.0000175 0.000023 0.000024
2014 6 29 56837 0.168884 0.417834 -0.3013068 0.0002438 0.000184 -0.000308 0.000051 0.000047 0.0000074 0.0000177 0.000023 0.000025
2014 6 30 56838 0.169659 0.416477 -0.3015470 0.0003249 0.000223 -0.000275 0.000051 0.000047 0.0000076 0.0000179 0.000024 0.000025
2014 7 1 56839 0.170584 0.414989 -0.3018456 0.0003594 0.000262 -0.000242 0.000051 0.000048 0.0000080 0.0000180 0.000024 0.000025
2014 7 2 56840 0.171897 0.413791 -0.3022202 0.0004117 0.000205 -0.000263 0.000051 0.000048 0.0000084 0.0000181 0.000024 0.000025
2014 7 3 56841 0.173223 0.412770 -0.3026915 0.0004952 0.000123 -0.000297 0.000051 0.000048 0.0000089 0.0000181 0.000025 0.000025
2014 7 4 56842 0.174571 0.411718 -0.3032412 0.0005552 0.000007 -0.000313 0.000051 0.000048 0.0000095 0.0000181 0.000025 0.000025
2014 7 5 56843 0.175531 0.410939 -0.3037563 0.0005275 -0.000021 -0.000314 0.000052 0.000049 0.0000101 0.0000181 0.000025 0.000025
2014 7 6 56844 0.176357 0.409851 -0.3042825 0.0004529 -0.000007 -0.000311 0.000052 0.000049 0.0000105 0.0000181 0.000026 0.000026
2014 7 7 56845 0.177000 0.408770 -0.3047259 0.0003754 0.000007 -0.000309 0.000052 0.000049 0.0000108 0.0000181 0.000027 0.000026
2014 7 8 56846 0.177602 0.407704 -0.3050529 0.0003262 0.000021 -0.000306 0.000052 0.000049 0.0000107 0.0000181 0.000028 0.000027
2014 7 9 56847 0.178395 0.406780 -0.3053678 0.0002828 0.000086 -0.000273 0.000053 0.000049 0.0000105 0.0000181 0.000030 0.000028
2014 7 10 56848 0.179056 0.405874 -0.3056340 0.0002779 0.000164 -0.000231 0.000053 0.000049 0.0000102 0.0000181 0.000031 0.000029
2014 7 11 56849 0.180057 0.404783 -0.3059835 0.0003438 0.000129 -0.000256 0.000054 0.000049 0.0000099 0.0000181 0.000032 0.000029
2014 7 12 56850 0.181119 0.403702 -0.3063784 0.0004383 0.000083 -0.000308 0.000054 0.000050 0.0000097 0.0000182 0.000033 0.000030
2014 7 13 56851 0.182012 0.402757 -0.3069232 0.0006128 0.000076 -0.000333 0.000054 0.000050 0.0000096 0.0000182 0.000033 0.000031
2014 7 14 56852 0.182718 0.401707 -0.3076397 0.0007925 0.000084 -0.000324 0.000054 0.000050 0.0000096 0.0000182 0.000033 0.000031
2014 7 15 56853 0.183180 0.400689 -0.3085068 0.0008957 0.000076 -0.000310 0.000054 0.000050 0.0000098 0.0000182 0.000033 0.000031
2014 7 16 56854 0.183580 0.399238 -0.3094178 0.0009376 0.000078 -0.000284 0.000054 0.000051 0.0000101 0.0000183 0.000032 0.000031
2014 7 17 56855 0.184079 0.397872 -0.3103601 0.0008741 0.000083 -0.000256 0.000053 0.000051 0.0000104 0.0000183 0.000031 0.000031
2014 7 18 56856 0.184391 0.396246 -0.3111826 0.0007416 0.000090 -0.000233 0.000053 0.000051 0.0000107 0.0000183 0.000030 0.000030
2014 7 19 56857 0.185390 0.394567 -0.3118750 0.0006218 0.000042 -0.000255 0.000053 0.000051 0.0000110 0.0000183 0.000028 0.000028
2014 7 20 56858 0.186474 0.393185 -0.3124351 0.0004699 -0.000027 -0.000293 0.000053 0.000051 0.0000111 0.0000183 0.000026 0.000027
2014 7 21 56859 0.187769 0.391873 -0.3127786 0.0003072 0.000002 -0.000301 0.000053 0.000051 0.0000111 0.0000184 0.000025 0.000026
2014 7 22 56860 0.188753 0.391086 -0.3129974 0.0001613 0.000035 -0.000307 0.000053 0.000051 0.0000109 0.0000185 0.000024 0.000025
2014 7 23 56861 0.189334 0.390032 -0.3131121 0.0000722 0.000074 -0.000303 0.000053 0.000051 0.0000107 0.0000186 0.000023 0.000024
2014 7 24 56862 0.189640 0.389271 -0.3131225 0.0000335 0.000115 -0.000296 0.000053 0.000051 0.0000105 0.0000188 0.000023 0.000024
2014 7 25 56863 0.190008 0.388135 -0.3131583 0.0000343 0.000156 -0.000290 0.000053 0.000051 0.0000103 0.0000190 0.000023 0.000024
2014 7 26 56864 0.190391 0.387076 -0.3131772 0.0000312 0.000149 -0.000291 0.000053 0.000051 0.0000101 0.0000193 0.000023 0.000024
2014 7 27 56865 0.190974 0.385960 -0.3132633 0.0000862 0.000124 -0.000296 0.000054 0.000051 0.0000101 0.0000195 0.000024 0.000024
2014 7 28 56866 0.191997 0.384965 -0.3134113 0.0002046 0.000100 -0.000301 0.000054 0.000051 0.0000100 0.0000198 0.000024 0.000024
2014 7 29 56867 0.193138 0.383991 -0.3136698 0.0003182 0.000075 -0.000307 0.000053 0.000051 0.0000099 0.0000200 0.000025 0.000023
2014 7 30 56868 0.194141 0.382918 -0.3140305 0.0004095 0.000045 -0.000312 0.000053 0.000051 0.0000097 0.0000202 0.000026 0.000024
2014 7 31 56869 0.194699 0.381742 -0.3144635 0.0004349 0.000015 -0.000317 0.000053 0.000051 0.0000094 0.0000203 0.000027 0.000024
2014 8 1 56870 0.195488 0.380228 -0.3149182 0.0004241 -0.000016 -0.000322 0.000052 0.000051 0.0000091 0.0000204 0.000028 0.000025
2014 8 2 56871 0.196059 0.379053 -0.3153248 0.0003616 -0.000025 -0.000347 0.000051 0.000051 0.0000087 0.0000203 0.000030 0.000026
2014 8 3 56872 0.196656 0.377635 -0.3156566 0.0002911 -0.000027 -0.000380 0.000051 0.000052 0.0000084 0.0000202 0.000032 0.000028
2014 8 4 56873 0.197587 0.376138 -0.3159315 0.0002340 -0.000029 -0.000413 0.000051 0.000052 0.0000081 0.0000201 0.000034 0.000030
2014 8 5 56874 0.198589 0.374538 -0.3161114 0.0001770 -0.000030 -0.000446 0.000051 0.000052 0.0000079 0.0000199 0.000036 0.000032
2014 8 6 56875 0.199846 0.373215 -0.3162507 0.0001105 -0.000050 -0.000405 0.000051 0.000052 0.0000078 0.0000196 0.000037 0.000034
2014 8 7 56876 0.201159 0.372190 -0.3163214 0.0000620 -0.000070 -0.000340 0.000052 0.000052 0.0000078 0.0000193 0.000039 0.000035
2014 8 8 56877 0.202153 0.371221 -0.3164116 0.0001605 -0.000071 -0.000262 0.000053 0.000052 0.0000078 0.0000191 0.000040 0.000037
2014 8 9 56878 0.203137 0.370129 -0.3166555 0.0003461 -0.000069 -0.000176 0.000053 0.000051 0.0000077 0.0000188 0.000040 0.000038
2014 8 10 56879 0.204271 0.369117 -0.3170684 0.0005045 -0.000046 -0.000094 0.000054 0.000051 0.0000077 0.0000185 0.000040 0.000039
2014 8 11 56880 0.205468 0.368306 -0.3176686 0.0006516 -0.000010 -0.000108 0.000054 0.000051 0.0000076 0.0000183 0.000039 0.000038
2014 8 12 56881 0.206550 0.367611 -0.3183718 0.0007662 0.000022 -0.000211 0.000054 0.000050 0.0000076 0.0000181 0.000037 0.000037
2014 8 13 56882 0.207368 0.366875 -0.3192080 0.0008445 -0.000019 -0.000222 0.000054 0.000050 0.0000077 0.0000180 0.000035 0.000035
2014 8 14 56883 0.207974 0.366035 -0.3200390 0.0008306 -0.000077 -0.000212 0.000054 0.000050 0.0000079 0.0000180 0.000032 0.000032
2014 8 15 56884 0.208833 0.364879 -0.3208085 0.0007058 -0.000136 -0.000201 0.000054 0.000050 0.0000081 0.0000180 0.000030 0.000030
2014 8 16 56885 0.209661 0.363515 -0.3214366 0.0005738 -0.000170 -0.000163 0.000054 0.000050 0.0000085 0.0000181 0.000028 0.000028
2014 8 17 56886 0.210175 0.362120 -0.3219543 0.0004646 -0.000161 -0.000173 0.000054 0.000050 0.0000088 0.0000182 0.000026 0.000027
2014 8 18 56887 0.210355 0.360764 -0.3223442 0.0003724 -0.000098 -0.000240 0.000054 0.000050 0.0000091 0.0000183 0.000025 0.000025
2014 8 19 56888 0.210028 0.359301 -0.3226751 0.0002670 -0.000015 -0.000307 0.000054 0.000050 0.0000094 0.0000183 0.000024 0.000024
2014 8 20 56889 0.209735 0.357770 -0.3228524 0.0002028 0.000001 -0.000286 0.000054 0.000050 0.0000096 0.0000184 0.000023 0.000023
2014 8 21 56890 0.209563 0.356134 -0.3230781 0.0001720 -0.000002 -0.000242 0.000054 0.000050 0.0000097 0.0000185 0.000023 0.000023
2014 8 22 56891 0.209708 0.354414 -0.3232281 0.0001736 -0.000004 -0.000198 0.000054 0.000049 0.0000097 0.0000185 0.000023 0.000022
2014 8 23 56892 0.209551 0.352545 -0.3234436 0.0002298 -0.000010 -0.000200 0.000053 0.000049 0.0000097 0.0000186 0.000023 0.000022
2014 8 24 56893 0.209543 0.350682 -0.3237039 0.0002452 -0.000017 -0.000207 0.000053 0.000049 0.0000097 0.0000187 0.000023 0.000022
2014 8 25 56894 0.209475 0.348842 -0.3239090 0.0002474 -0.000023 -0.000213 0.000053 0.000049 0.0000097 0.0000188 0.000023 0.000023
2014 8 26 56895 0.209267 0.346963 -0.3242008 0.0003407 -0.000030 -0.000220 0.000053 0.000049 0.0000098 0.0000190 0.000024 0.000023
2014 8 27 56896 0.209107 0.344999 -0.3245986 0.0004474 0.000026 -0.000244 0.000054 0.000049 0.0000098 0.0000191 0.000025 0.000024
2014 8 28 56897 0.208963 0.342830 -0.3250684 0.0004737 0.000034 -0.000246 0.000054 0.000049 0.0000098 0.0000193 0.000026 0.000026
2014 8 29 56898 0.209048 0.340905 -0.3255777 0.0004849 0.000017 -0.000238 0.000054 0.000050 0.0000097 0.0000194 0.000027 0.000027
2014 8 30 56899 0.209434 0.339465 -0.3260537 0.0004954 -0.000031 -0.000225 0.000055 0.000050 0.0000094 0.0000196 0.000027 0.000028
2014 8 31 56900 0.209548 0.338221 -0.3266006 0.0004995 -0.000083 -0.000221 0.000055 0.000050 0.0000090 0.0000197 0.000026 0.000028
2014 9 1 56901 0.209607 0.336852 -0.3270808 0.0005307 -0.000109 -0.000254 0.000054 0.000050 0.0000086 0.0000198 0.000026 0.000027
2014 9 2 56902 0.209660 0.335219 -0.3276267 0.0005246 -0.000117 -0.000313 0.000054 0.000049 0.0000083 0.0000199 0.000025 0.000027
2014 9 3 56903 0.209254 0.333379 -0.3281446 0.0005189 -0.000069 -0.000363 0.000054 0.000049 0.0000082 0.0000200 0.000024 0.000026
2014 9 4 56904 0.209037 0.331518 -0.3286903 0.0005579 -0.000050 -0.000362 0.000053 0.000049 0.0000082 0.0000201 0.000024 0.000026
2014 9 5 56905 0.209082 0.329809 -0.3292897 0.0006737 -0.000058 -0.000375 0.000053 0.000049 0.0000084 0.0000202 0.000023 0.000025
2014 9 6 56906 0.209238 0.328265 -0.3300526 0.0008447 -0.000075 -0.000395 0.000053 0.000049 0.0000087 0.0000203 0.000024 0.000026
2014 9 7 56907 0.209075 0.326903 -0.3309917 0.0010230 -0.000094 -0.000413 0.000053 0.000049 0.0000091 0.0000204 0.000024 0.000027
2014 9 8 56908 0.208594 0.325623 -0.3321123 0.0011996 -0.000113 -0.000431 0.000054 0.000049 0.0000096 0.0000205 0.000025 0.000028
2014 9 9 56909 0.207951 0.324033 -0.3333886 0.0013211 -0.000132 -0.000449 0.000054 0.000050 0.0000100 0.0000205 0.000027 0.000030
2014 9 10 56910 0.207098 0.322101 -0.3346961 0.0012611 -0.000221 -0.000459 0.000054 0.000050 0.0000104 0.0000205 0.000029 0.000031
2014 9 11 56911 0.205714 0.319840 -0.3359035 0.0011188 -0.000329 -0.000466 0.000054 0.000050 0.0000109 0.0000205 0.000030 0.000032
2014 9 12 56912 0.204830 0.317418 -0.3369368 0.0009453 -0.000436 -0.000474 0.000054 0.000050 0.0000114 0.0000205 0.000031 0.000031
2014 9 13 56913 0.203746 0.315472 -0.3377901 0.0007631 -0.000415 -0.000426 0.000054 0.000050 0.0000119 0.0000205 0.000032 0.000029
2014 9 14 56914 0.203351 0.313633 -0.3385102 0.0006530 -0.000346 -0.000358 0.000054 0.000050 0.0000125 0.0000205 0.000031 0.000028
2014 9 15 56915 0.203062 0.312329 -0.3391052 0.0006022 -0.000278 -0.000290 0.000053 0.000050 0.0000131 0.0000205 0.000031 0.000027
2014 9 16 56916 0.202703 0.310813 -0.3396756 0.0006015 -0.000209 -0.000222 0.000053 0.000050 0.0000137 0.0000205 0.000031 0.000026
2014 9 17 56917 0.201975 0.309541 -0.3402466 0.0006290 -0.000153 -0.000209 0.000053 0.000050 0.0000142 0.0000206 0.000031 0.000026
2014 9 18 56918 0.201157 0.308055 -0.3409406 0.0006813 -0.000100 -0.000210 0.000053 0.000050 0.0000144 0.0000207 0.000032 0.000027
2014 9 19 56919 0.200493 0.306730 -0.3416155 0.0007148 -0.000047 -0.000212 0.000053 0.000050 0.0000143 0.0000209 0.000033 0.000028
2014 9 20 56920 0.199681 0.304945 -0.3423293 0.0007276 -0.000051 -0.000214 0.000053 0.000050 0.0000140 0.0000211 0.000034 0.000029
2014 9 21 56921 0.198904 0.303294 -0.3430954 0.0007874 -0.000076 -0.000216 0.000053 0.000049 0.0000136 0.0000213 0.000035 0.000030
2014 9 22 56922 0.198190 0.301444 -0.3438868 0.0008758 -0.000102 -0.000218 0.000053 0.000049 0.0000133 0.0000215 0.000035 0.000031
2014 9 23 56923 0.197758 0.299623 -0.3448344 0.0009302 -0.000127 -0.000220 0.000053 0.000049 0.0000131 0.0000216 0.000036 0.000032
2014 9 24 56924 0.196669 0.297934 -0.3456979 0.0009282 -0.000217 -0.000269 0.000053 0.000049 0.0000130 0.0000218 0.000036 0.000032
2014 9 25 56925 0.196285 0.296429 -0.3466961 0.0009287 -0.000291 -0.000313 0.000053 0.000049 0.0000130 0.0000219 0.000036 0.000033
2014 9 26 56926 0.195452 0.295342 -0.3475984 0.0008548 -0.000238 -0.000294 0.000053 0.000049 0.0000131 0.0000220 0.000037 0.000033
2014 9 27 56927 0.194323 0.294143 -0.3483783 0.0007903 -0.000185 -0.000275 0.000053 0.000049 0.0000132 0.0000221 0.000037 0.000034
2014 9 28 56928 0.193133 0.293124 -0.3491591 0.0007253 -0.000132 -0.000256 0.000053 0.000050 0.0000132 0.0000221 0.000037 0.000035
2014 9 29 56929 0.192130 0.291847 -0.3498723 0.0006986 -0.000079 -0.000237 0.000053 0.000050 0.0000130 0.0000222 0.000038 0.000036
2014 9 30 56930 0.190874 0.290408 -0.3505685 0.0007170 -0.000027 -0.000217 0.000053 0.000050 0.0000127 0.0000223 0.000038 0.000037
2014 10 1 56931 0.189318 0.288872 -0.3512817 0.0007456 -0.000070 -0.000253 0.000054 0.000050 0.0000124 0.0000223 0.000038 0.000038
2014 10 2 56932 0.187956 0.287386 -0.3520651 0.0008343 -0.000123 -0.000253 0.000054 0.000051 0.0000122 0.0000224 0.000038 0.000039
2014 10 3 56933 0.186389 0.286356 -0.3529013 0.0009827 -0.000130 -0.000236 0.000054 0.000051 0.0000119 0.0000224 0.000039 0.000040
2014 10 4 56934 0.184585 0.285100 -0.3540176 0.0011724 -0.000122 -0.000218 0.000055 0.000051 0.0000117 0.0000224 0.000039 0.000041
2014 10 5 56935 0.182947 0.283920 -0.3553087 0.0013635 -0.000133 -0.000208 0.000055 0.000051 0.0000114 0.0000223 0.000039 0.000042
2014 10 6 56936 0.180779 0.282637 -0.3567623 0.0014976 -0.000178 -0.000232 0.000055 0.000051 0.0000111 0.0000222 0.000039 0.000043
2014 10 7 56937 0.178546 0.281129 -0.3583110 0.0015901 -0.000238 -0.000282 0.000055 0.000051 0.0000105 0.0000221 0.000040 0.000042
2014 10 8 56938 0.176423 0.279499 -0.3599026 0.0015963 -0.000241 -0.000323 0.000055 0.000051 0.0000098 0.0000219 0.000040 0.000042
2014 10 9 56939 0.174485 0.277995 -0.3614595 0.0014670 -0.000231 -0.000362 0.000055 0.000051 0.0000090 0.0000217 0.000041 0.000042
2014 10 10 56940 0.172103 0.276889 -0.3628250 0.0012614 -0.000185 -0.000301 0.000055 0.000050 0.0000081 0.0000215 0.000041 0.000041
2014 10 11 56941 0.169489 0.275710 -0.3640201 0.0011266 -0.000118 -0.000230 0.000055 0.000050 0.0000074 0.0000212 0.000040 0.000040
2014 10 12 56942 0.167093 0.274277 -0.3650786 0.0010459 -0.000090 -0.000172 0.000054 0.000050 0.0000068 0.0000210 0.000039 0.000039
2014 10 13 56943 0.164890 0.272948 -0.3660776 0.0009488 -0.000143 -0.000156 0.000054 0.000049 0.0000064 0.0000208 0.000038 0.000037
2014 10 14 56944 0.163203 0.271598 -0.3670147 0.0008930 -0.000238 -0.000175 0.000054 0.000049 0.0000061 0.0000205 0.000036 0.000036
2014 10 15 56945 0.161813 0.270633 -0.3679173 0.0009194 -0.000256 -0.000159 0.000054 0.000049 0.0000061 0.0000203 0.000035 0.000034
2014 10 16 56946 0.160357 0.269562 -0.3688404 0.0009498 -0.000235 -0.000163 0.000054 0.000048 0.0000061 0.0000201 0.000033 0.000033
2014 10 17 56947 0.158884 0.268422 -0.3698100 0.0009706 -0.000203 -0.000182 0.000053 0.000048 0.0000064 0.0000199 0.000031 0.000031
2014 10 18 56948 0.157651 0.267426 -0.3707614 0.0010505 -0.000184 -0.000187 0.000053 0.000048 0.0000068 0.0000197 0.000029 0.000030
2014 10 19 56949 0.156177 0.266392 -0.3718725 0.0011320 -0.000168 -0.000176 0.000052 0.000048 0.0000119 0.0000191 0.000028 0.000029
2014 10 20 56950 0.154958 0.265161 -0.3730236 0.0012036 -0.000150 -0.000152 0.000051 0.000048 0.0000122 0.0000189 0.000027 0.000028
2014 10 21 56951 0.153574 0.264153 -0.3742883 0.0012982 -0.000179 -0.000101 0.000050 0.000047 0.0000127 0.0000187 0.000026 0.000027
2014 10 22 56952 0.152558 0.263215 -0.3756233 0.0013706 -0.000212 -0.000142 0.000050 0.000046 0.0000133 0.0000185 0.000025 0.000026
2014 10 23 56953 0.151228 0.262577 -0.3770429 0.0013424 -0.000223 -0.000162 0.000049 0.000046 0.0000140 0.0000183 0.000024 0.000026
2014 10 24 56954 0.149374 0.261563 -0.3782634 0.0012589 -0.000225 -0.000165 0.000049 0.000046 0.0000149 0.0000182 0.000024 0.000026
2014 10 25 56955 0.147315 0.260313 -0.3794844 0.0011439 -0.000227 -0.000169 0.000049 0.000046 0.0000157 0.0000181 0.000025 0.000026
2014 10 26 56956 0.144800 0.259081 -0.3805927 0.0010413 -0.000229 -0.000172 0.000049 0.000046 0.0000164 0.0000180 0.000026 0.000027
2014 10 27 56957 0.142599 0.257845 -0.3816086 0.0009903 -0.000231 -0.000176 0.000049 0.000046 0.0000167 0.0000179 0.000027 0.000028
2014 10 28 56958 0.140679 0.257127 -0.3825964 0.0009869 -0.000233 -0.000179 0.000050 0.000046 0.0000166 0.0000178 0.000028 0.000028
2014 10 29 56959 0.138887 0.256743 -0.3835977 0.0010428 -0.000100 -0.000170 0.000050 0.000046 0.0000161 0.0000178 0.000029 0.000029
2014 10 30 56960 0.137040 0.256321 -0.3846857 0.0011201 -0.000106 -0.000171 0.000051 0.000046 0.0000154 0.0000178 0.000030 0.000028
2014 10 31 56961 0.134912 0.256031 -0.3858282 0.0012020 -0.000164 -0.000175 0.000051 0.000046 0.0000146 0.0000177 0.000030 0.000028
2014 11 1 56962 0.132543 0.255442 -0.3870941 0.0013929 -0.000264 -0.000146 0.000051 0.000046 0.0000140 0.0000178 0.000030 0.000027
2014 11 2 56963 0.130232 0.254603 -0.3886673 0.0016179 -0.000325 -0.000118 0.000050 0.000046 0.0000134 0.0000178 0.000030 0.000027
2014 11 3 56964 0.128111 0.253639 -0.3903225 0.0017023 -0.000293 -0.000108 0.000050 0.000046 0.0000129 0.0000179 0.000029 0.000026
2014 11 4 56965 0.126579 0.253032 -0.3920284 0.0016677 -0.000220 -0.000102 0.000049 0.000045 0.0000126 0.0000180 0.000028 0.000025
2014 11 5 56966 0.125141 0.253027 -0.3936675 0.0015860 -0.000209 -0.000088 0.000048 0.000045 0.0000123 0.0000180 0.000028 0.000025
2014 11 6 56967 0.123815 0.253026 -0.3951817 0.0014313 -0.000215 -0.000070 0.000047 0.000045 0.0000120 0.0000181 0.000028 0.000025
2014 11 7 56968 0.122208 0.252696 -0.3965231 0.0012679 -0.000220 -0.000054 0.000047 0.000045 0.0000116 0.0000181 0.000028 0.000026
2014 11 8 56969 0.120656 0.252119 -0.3977619 0.0011141 -0.000219 -0.000054 0.000047 0.000045 0.0000112 0.0000181 0.000030 0.000027
2014 11 9 56970 0.118629 0.251863 -0.3987632 0.0009721 -0.000215 -0.000061 0.000047 0.000045 0.0000106 0.0000181 0.000032 0.000030
2014 11 10 56971 0.116099 0.251414 -0.3996572 0.0008666 -0.000211 -0.000068 0.000047 0.000045 0.0000099 0.0000181 0.000034 0.000032
2014 11 11 56972 0.113500 0.251104 -0.4005712 0.0008330 -0.000206 -0.000076 0.000048 0.000046 0.0000093 0.0000182 0.000036 0.000034
2014 11 12 56973 0.111312 0.251020 -0.4013550 0.0008731 -0.000064 -0.000090 0.000049 0.000046 0.0000088 0.0000182 0.000038 0.000036
2014 11 13 56974 0.110003 0.251216 -0.4022787 0.0009455 -0.000010 -0.000073 0.000049 0.000046 0.0000083 0.0000182 0.000039 0.000036
2014 11 14 56975 0.108964 0.251454 -0.4032330 0.0009924 -0.000098 -0.000070 0.000050 0.000046 0.0000081 0.0000183 0.000039 0.000036
2014 11 15 56976 0.107343 0.251845 -0.4042386 0.0010344 -0.000201 -0.000106 0.000050 0.000047 0.0000080 0.0000184 0.000038 0.000036
2014 11 16 56977 0.105169 0.252103 -0.4053017 0.0010816 -0.000230 -0.000137 0.000051 0.000047 0.0000080 0.0000185 0.000038 0.000035
2014 11 17 56978 0.103098 0.252264 -0.4064406 0.0011913 -0.000200 -0.000147 0.000051 0.000047 0.0000082 0.0000186 0.000037 0.000034
2014 11 18 56979 0.101176 0.252904 -0.4076887 0.0012782 -0.000177 -0.000150 0.000051 0.000048 0.0000084 0.0000187 0.000037 0.000034
2014 11 19 56980 0.098823 0.253529 -0.4089627 0.0012457 -0.000103 -0.000086 0.000052 0.000048 0.0000088 0.0000187 0.000037 0.000035
2014 11 20 56981 0.096626 0.253739 -0.4101964 0.0011806 -0.000046 -0.000032 0.000052 0.000049 0.0000091 0.0000187 0.000038 0.000035
2014 11 21 56982 0.094796 0.254068 -0.4113558 0.0011239 -0.000064 -0.000043 0.000052 0.000049 0.0000095 0.0000186 0.000039 0.000036
2014 11 22 56983 0.093033 0.254309 -0.4124488 0.0010861 -0.000143 -0.000093 0.000052 0.000050 0.0000098 0.0000185 0.000039 0.000037
2014 11 23 56984 0.091069 0.254329 -0.4135358 0.0010290 -0.000188 -0.000143 0.000051 0.000050 0.0000100 0.0000183 0.000040 0.000038
2014 11 24 56985 0.089517 0.254009 -0.4145314 0.0009889 -0.000186 -0.000155 0.000051 0.000049 0.0000103 0.0000182 0.000041 0.000039
2014 11 25 56986 0.088570 0.253867 -0.4155405 0.0009985 -0.000184 -0.000138 0.000050 0.000049 0.0000105 0.0000181 0.000041 0.000039
2014 11 26 56987 0.087552 0.254012 -0.4165209 0.0010051 -0.000220 -0.000041 0.000050 0.000049 0.0000108 0.0000180 0.000041 0.000039
2014 11 27 56988 0.086952 0.254412 -0.4175542 0.0010750 -0.000231 -0.000056 0.000049 0.000048 0.0000110 0.0000179 0.000040 0.000038
2014 11 28 56989 0.086367 0.255252 -0.4187206 0.0012647 -0.000231 -0.000120 0.000048 0.000047 0.0000110 0.0000179 0.000039 0.000037
2014 11 29 56990 0.085070 0.256037 -0.4200715 0.0014259 -0.000262 -0.000127 0.000048 0.000047 0.0000109 0.0000179 0.000037 0.000035
2014 11 30 56991 0.083120 0.256681 -0.4215380 0.0014966 -0.000293 -0.000133 0.000047 0.000046 0.0000105 0.0000178 0.000035 0.000034
2014 12 1 56992 0.080978 0.257672 -0.4230161 0.0014853 -0.000286 -0.000097 0.000047 0.000046 0.0000100 0.0000178 0.000034 0.000033
2014 12 2 56993 0.078981 0.258716 -0.4244986 0.0014275 -0.000240 -0.000018 0.000047 0.000045 0.0000095 0.0000177 0.000033 0.000033
2014 12 3 56994 0.076898 0.259439 -0.4258737 0.0013708 -0.000264 -0.000014 0.000047 0.000045 0.0000091 0.0000177 0.000033 0.000033
2014 12 4 56995 0.074791 0.259882 -0.4272193 0.0012975 -0.000307 -0.000031 0.000047 0.000045 0.0000088 0.0000176 0.000033 0.000033
2014 12 5 56996 0.073083 0.260106 -0.4284390 0.0011619 -0.000267 -0.000037 0.000047 0.000045 0.0000087 0.0000175 0.000034 0.000034
2014 12 6 56997 0.072034 0.260884 -0.4295289 0.0010376 -0.000169 -0.000078 0.000047 0.000045 0.0000087 0.0000175 0.000035 0.000034
2014 12 7 56998 0.070757 0.261940 -0.4304876 0.0009493 -0.000047 -0.000113 0.000047 0.000045 0.0000089 0.0000174 0.000036 0.000035
2014 12 8 56999 0.069469 0.262554 -0.4314576 0.0009544 -0.000017 -0.000090 0.000047 0.000045 0.0000093 0.0000173 0.000037 0.000035
2014 12 9 57000 0.067567 0.263597 -0.4324674 0.0010075 -0.000090 -0.000030 0.000047 0.000045 0.0000098 0.0000172 0.000038 0.000036
2014 12 10 57001 0.065145 0.264300 -0.4334841 0.0010518 -0.000163 0.000029 0.000047 0.000045 0.0000104 0.0000171 0.000039 0.000036
2014 12 11 57002 0.062825 0.265096 -0.4345153 0.0011051 -0.000241 -0.000014 0.000048 0.000045 0.0000111 0.0000169 0.000040 0.000037
2014 12 12 57003 0.060561 0.266065 -0.4357137 0.0011878 -0.000319 -0.000085 0.000048 0.000045 0.0000116 0.0000167 0.000041 0.000037
2014 12 13 57004 0.058293 0.267322 -0.4369425 0.0012474 -0.000501 -0.000113 0.000049 0.000045 0.0000121 0.0000165 0.000042 0.000038
2014 12 14 57005 0.055679 0.268340 -0.4381775 0.0012208 -0.000610 -0.000077 0.000049 0.000046 0.0000124 0.0000162 0.000042 0.000040
2014 12 15 57006 0.052986 0.269413 -0.4394006 0.0012083 -0.000461 -0.000011 0.000049 0.000046 0.0000127 0.0000160 0.000043 0.000041
2014 12 16 57007 0.050226 0.270617 -0.4406638 0.0012955 -0.000179 0.000033 0.000049 0.000046 0.0000128 0.0000157 0.000044 0.000042
2014 12 17 57008 0.047395 0.271695 -0.4419602 0.0013058 -0.000193 -0.000004 0.000049 0.000045 0.0000128 0.0000155 0.000044 0.000042
2014 12 18 57009 0.044864 0.272181 -0.4432150 0.0012082 -0.000207 -0.000041 0.000049 0.000045 0.0000126 0.0000153 0.000044 0.000042
2014 12 19 57010 0.043407 0.272545 -0.4443986 0.0011341 -0.000239 -0.000044 0.000048 0.000045 0.0000121 0.0000151 0.000043 0.000042
2014 12 20 57011 0.042148 0.273277 -0.4454748 0.0010236 -0.000190 0.000030 0.000048 0.000045 0.0000116 0.0000151 0.000043 0.000041
2014 12 21 57012 0.040840 0.273577 -0.4464585 0.0009500 -0.000110 0.000131 0.000047 0.000045 0.0000109 0.0000150 0.000042 0.000040
2014 12 22 57013 0.039590 0.273952 -0.4473797 0.0009382 -0.000162 0.000113 0.000047 0.000044 0.0000103 0.0000151 0.000041 0.000038
2014 12 23 57014 0.038666 0.274210 -0.4483439 0.0009982 -0.000229 0.000042 0.000045 0.000042 0.0000081 0.0000153 0.000040 0.000037
2014 12 24 57015 0.037870 0.274918 -0.4494034 0.0011122 -0.000290 0.000011 0.000045 0.000042 0.0000082 0.0000154 0.000040 0.000037
2014 12 25 57016 0.037163 0.275526 -0.4505958 0.0012892 -0.000294 0.000013 0.000044 0.000042 0.0000083 0.0000156 0.000040 0.000036
2014 12 26 57017 0.036199 0.276339 -0.4519426 0.0013927 -0.000277 0.000024 0.000044 0.000042 0.0000086 0.0000158 0.000040 0.000037
2014 12 27 57018 0.035254 0.276908 -0.4533618 0.0014596 -0.000261 0.000034 0.000044 0.000042 0.0000089 0.0000160 0.000042 0.000038
2014 12 28 57019 0.034671 0.277735 -0.4548710 0.0015214 -0.000244 0.000044 0.000044 0.000043 0.0000093 0.0000161 0.000045 0.000041
2014 12 29 57020 0.034235 0.278643 -0.4563799 0.0014219 -0.000227 0.000054 0.000044 0.000043 0.0000097 0.0000163 0.000048 0.000044
2014 12 30 57021 0.033509 0.279530 -0.4577134 0.0012444 -0.000210 0.000065 0.000045 0.000043 0.0000101 0.0000165 0.000051 0.000047
2014 12 31 57022 0.032209 0.280349 -0.4589043 0.0010847 -0.000128 -0.000017 0.000045 0.000043 0.0000106 0.0000168 0.000054 0.000051
INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE
EARTH ORIENTATION PARAMETERS
EOP (IERS) 08 C04
FORMAT(3(I4),I7,2(F11.6),2(F12.7),2(F11.6),2(F11.6),2(F11.7),2(F12.6))
##################################################################################
Date MJD x y UT1-UTC LOD dX dY x Err y Err UT1-UTC Err LOD Err dX Err dY Err
" " s s " " " " s s " "
(0h UTC)
2015 1 1 57023 0.030755 0.280757 -0.4599141 0.0009645 -0.000125 -0.000016 0.000045 0.000044 0.0000111 0.0000170 0.000056 0.000053
2015 1 2 57024 0.029642 0.281240 -0.4608362 0.0008627 -0.000156 0.000025 0.000045 0.000044 0.0000116 0.0000172 0.000056 0.000054
2015 1 3 57025 0.028927 0.281584 -0.4616231 0.0007614 -0.000188 0.000065 0.000045 0.000044 0.0000120 0.0000173 0.000056 0.000054
2015 1 4 57026 0.028695 0.282072 -0.4623262 0.0006640 -0.000220 0.000105 0.000045 0.000044 0.0000125 0.0000174 0.000055 0.000054
2015 1 5 57027 0.028436 0.282760 -0.4629914 0.0006480 -0.000251 0.000146 0.000045 0.000043 0.0000128 0.0000174 0.000054 0.000053
2015 1 6 57028 0.027924 0.283523 -0.4636603 0.0006430 -0.000283 0.000187 0.000046 0.000043 0.0000129 0.0000173 0.000053 0.000052
2015 1 7 57029 0.027100 0.284477 -0.4643221 0.0007019 -0.000221 0.000168 0.000046 0.000044 0.0000129 0.0000172 0.000052 0.000051
2015 1 8 57030 0.025860 0.285475 -0.4651370 0.0008367 -0.000134 0.000133 0.000047 0.000044 0.0000126 0.0000170 0.000050 0.000049
2015 1 9 57031 0.024611 0.286017 -0.4660225 0.0009932 -0.000047 0.000098 0.000047 0.000044 0.0000123 0.0000168 0.000047 0.000047
2015 1 10 57032 0.023566 0.286671 -0.4670552 0.0010988 -0.000054 0.000086 0.000048 0.000044 0.0000117 0.0000166 0.000044 0.000044
2015 1 11 57033 0.022566 0.287813 -0.4681949 0.0011100 -0.000096 0.000067 0.000048 0.000045 0.0000112 0.0000165 0.000040 0.000041
2015 1 12 57034 0.021554 0.288794 -0.4693091 0.0011106 -0.000137 0.000043 0.000048 0.000045 0.0000105 0.0000164 0.000038 0.000038
2015 1 13 57035 0.020380 0.289829 -0.4703965 0.0011209 -0.000179 0.000018 0.000049 0.000045 0.0000100 0.0000164 0.000035 0.000036
2015 1 14 57036 0.018920 0.290885 -0.4715306 0.0011408 -0.000220 -0.000007 0.000049 0.000046 0.0000094 0.0000164 0.000034 0.000035
2015 1 15 57037 0.017150 0.292166 -0.4726903 0.0011301 -0.000205 0.000045 0.000050 0.000046 0.0000089 0.0000165 0.000033 0.000034
2015 1 16 57038 0.015039 0.293614 -0.4737918 0.0011265 -0.000181 0.000107 0.000050 0.000046 0.0000085 0.0000167 0.000032 0.000033
2015 1 17 57039 0.012983 0.294524 -0.4749088 0.0010921 -0.000149 0.000196 0.000050 0.000046 0.0000082 0.0000169 0.000031 0.000033
2015 1 18 57040 0.010821 0.295287 -0.4759788 0.0010651 -0.000090 0.000248 0.000049 0.000045 0.0000078 0.0000171 0.000030 0.000033
2015 1 19 57041 0.009293 0.296094 -0.4770274 0.0010956 -0.000046 0.000195 0.000049 0.000045 0.0000076 0.0000174 0.000030 0.000032
2015 1 20 57042 0.008155 0.296838 -0.4781485 0.0011727 -0.000039 0.000083 0.000049 0.000044 0.0000075 0.0000177 0.000029 0.000032
2015 1 21 57043 0.007383 0.297599 -0.4793840 0.0013175 -0.000134 0.000018 0.000048 0.000044 0.0000075 0.0000179 0.000029 0.000032
2015 1 22 57044 0.006883 0.298544 -0.4807969 0.0014700 -0.000174 -0.000010 0.000048 0.000044 0.0000076 0.0000181 0.000029 0.000032
2015 1 23 57045 0.006172 0.299519 -0.4823340 0.0015558 -0.000199 -0.000028 0.000048 0.000044 0.0000078 0.0000182 0.000029 0.000032
2015 1 24 57046 0.005110 0.300156 -0.4838699 0.0015515 -0.000221 -0.000030 0.000048 0.000044 0.0000082 0.0000182 0.000030 0.000033
2015 1 25 57047 0.004055 0.301196 -0.4854420 0.0014779 -0.000209 -0.000005 0.000048 0.000044 0.0000086 0.0000183 0.000031 0.000033
2015 1 26 57048 0.002890 0.302200 -0.4868056 0.0012969 -0.000202 0.000025 0.000048 0.000044 0.0000091 0.0000183 0.000031 0.000033
2015 1 27 57049 0.002389 0.303074 -0.4880122 0.0011473 -0.000233 0.000040 0.000049 0.000044 0.0000095 0.0000183 0.000032 0.000034
2015 1 28 57050 0.002280 0.304472 -0.4890704 0.0009855 -0.000210 0.000037 0.000051 0.000044 0.0000106 0.0000184 0.000032 0.000034
2015 1 29 57051 0.002250 0.306164 -0.4899900 0.0008624 -0.000174 0.000030 0.000050 0.000045 0.0000101 0.0000185 0.000033 0.000034
2015 1 30 57052 0.002907 0.308446 -0.4908338 0.0008432 -0.000138 0.000085 0.000052 0.000046 0.0000103 0.0000185 0.000033 0.000035
2015 1 31 57053 0.003734 0.310824 -0.4916590 0.0008530 -0.000132 0.000120 0.000052 0.000046 0.0000106 0.0000184 0.000034 0.000036
2015 2 1 57054 0.004581 0.313150 -0.4925413 0.0008838 -0.000138 0.000135 0.000052 0.000047 0.0000133 0.0000183 0.000035 0.000037
2015 2 2 57055 0.004619 0.315536 -0.4934671 0.0009429 -0.000154 0.000097 0.000052 0.000046 0.0000124 0.0000181 0.000035 0.000038
2015 2 3 57056 0.004217 0.317774 -0.4944232 0.0010524 -0.000170 0.000059 0.000053 0.000046 0.0000116 0.0000180 0.000036 0.000039
2015 2 4 57057 0.003887 0.319757 -0.4955055 0.0011210 -0.000007 0.000052 0.000056 0.000035 0.0000100 0.0000205 0.000041 0.000049
2015 2 5 57058 0.003175 0.321289 -0.4966561 0.0011723 0.000077 0.000074 0.000056 0.000031 0.0000095 0.0000205 0.000041 0.000046
2015 2 6 57059 0.002657 0.322728 -0.4978629 0.0012449 -0.000004 0.000186 0.000054 0.000028 0.0000087 0.0000204 0.000035 0.000039
2015 2 7 57060 0.002130 0.324406 -0.4991369 0.0013319 -0.000061 0.000223 0.000053 0.000027 0.0000084 0.0000204 0.000035 0.000038
2015 2 8 57061 0.001897 0.325726 -0.5004974 0.0013735 -0.000078 0.000223 0.000053 0.000027 0.0000081 0.0000204 0.000034 0.000037
2015 2 9 57062 0.002028 0.327098 -0.5018688 0.0013196 -0.000094 0.000223 0.000052 0.000027 0.0000079 0.0000204 0.000034 0.000036
2015 2 10 57063 0.002165 0.328334 -0.5031555 0.0012434 -0.000125 0.000291 0.000048 0.000023 0.0000070 0.0000204 0.000033 0.000034
2015 2 11 57064 0.002226 0.329746 -0.5043648 0.0011767 -0.000071 -0.000024 0.000048 0.000025 0.0000070 0.0000203 0.000033 0.000034
2015 2 12 57065 0.002247 0.331130 -0.5055317 0.0011622 0.000000 -0.000007 0.000047 0.000045 0.0000067 0.0000201 0.000037 0.000038
2015 2 13 57066 0.002452 0.332428 -0.5067078 0.0011679 -0.000034 0.000085 0.000046 0.000044 0.0000068 0.0000200 0.000036 0.000036
2015 2 14 57067 0.002709 0.333441 -0.5078993 0.0011703 -0.000030 0.000078 0.000045 0.000043 0.0000068 0.0000199 0.000034 0.000035
2015 2 15 57068 0.002772 0.334600 -0.5090558 0.0011846 0.000007 0.000054 0.000045 0.000042 0.0000068 0.0000198 0.000033 0.000034
2015 2 16 57069 0.002853 0.335660 -0.5102609 0.0012601 0.000044 0.000030 0.000044 0.000041 0.0000068 0.0000198 0.000031 0.000032
2015 2 17 57070 0.002883 0.337244 -0.5115772 0.0013998 0.000176 -0.000012 0.000042 0.000038 0.0000065 0.0000193 0.000029 0.000030
2015 2 18 57071 0.002725 0.338391 -0.5130691 0.0015847 -0.000180 0.000039 0.000042 0.000038 0.0000067 0.0000196 0.000028 0.000029
2015 2 19 57072 0.002801 0.339634 -0.5147528 0.0017207 -0.000192 0.000092 0.000042 0.000037 0.0000068 0.0000205 0.000025 0.000025
2015 2 20 57073 0.002588 0.341044 -0.5165086 0.0017656 -0.000094 0.000148 0.000042 0.000037 0.0000071 0.0000207 0.000025 0.000025
2015 2 21 57074 0.002360 0.342683 -0.5182696 0.0017118 -0.000061 0.000158 0.000042 0.000037 0.0000075 0.0000209 0.000025 0.000025
2015 2 22 57075 0.002437 0.344446 -0.5199491 0.0016270 -0.000054 0.000150 0.000042 0.000038 0.0000079 0.0000211 0.000026 0.000025
2015 2 23 57076 0.003045 0.346352 -0.5215083 0.0014717 -0.000046 0.000142 0.000042 0.000038 0.0000084 0.0000214 0.000027 0.000026
2015 2 24 57077 0.003329 0.348503 -0.5228845 0.0012605 -0.000044 0.000117 0.000042 0.000038 0.0000107 0.0000224 0.000035 0.000030
2015 2 25 57078 0.003149 0.350319 -0.5240254 0.0010829 -0.000011 0.000186 0.000041 0.000038 0.0000106 0.0000224 0.000035 0.000030
2015 2 26 57079 0.003145 0.351727 -0.5250580 0.0009507 0.000081 0.000391 0.000040 0.000038 0.0000109 0.0000226 0.000035 0.000031
2015 2 27 57080 0.003314 0.353155 -0.5259543 0.0008523 0.000067 0.000353 0.000040 0.000038 0.0000106 0.0000226 0.000034 0.000031
2015 2 28 57081 0.003178 0.354806 -0.5268047 0.0008553 0.000053 0.000316 0.000040 0.000038 0.0000103 0.0000227 0.000033 0.000031
2015 3 1 57082 0.003156 0.356584 -0.5276825 0.0009042 0.000039 0.000279 0.000040 0.000038 0.0000101 0.0000227 0.000033 0.000030
2015 3 2 57083 0.003458 0.358634 -0.5286064 0.0009424 0.000025 0.000242 0.000040 0.000038 0.0000098 0.0000227 0.000032 0.000030
2015 3 3 57084 0.003877 0.360608 -0.5295677 0.0010061 -0.000058 0.000194 0.000041 0.000038 0.0000090 0.0000226 0.000030 0.000029
2015 3 4 57085 0.003917 0.362237 -0.5306013 0.0010955 -0.000015 0.000166 0.000041 0.000038 0.0000090 0.0000224 0.000031 0.000030
2015 3 5 57086 0.004230 0.363714 -0.5317110 0.0011306 0.000027 0.000138 0.000041 0.000038 0.0000090 0.0000218 0.000032 0.000031
2015 3 6 57087 0.004793 0.364942 -0.5328663 0.0011797 0.000070 0.000110 0.000041 0.000038 0.0000089 0.0000217 0.000033 0.000031
2015 3 7 57088 0.004982 0.366149 -0.5340979 0.0012441 0.000075 0.000102 0.000041 0.000038 0.0000087 0.0000216 0.000034 0.000032
2015 3 8 57089 0.004646 0.367314 -0.5353578 0.0012801 0.000066 0.000103 0.000042 0.000038 0.0000085 0.0000216 0.000035 0.000033
2015 3 9 57090 0.004016 0.368176 -0.5366638 0.0013469 0.000057 0.000103 0.000042 0.000038 0.0000084 0.0000215 0.000036 0.000034
2015 3 10 57091 0.003635 0.369248 -0.5380376 0.0013832 0.000015 0.000115 0.000042 0.000038 0.0000079 0.0000214 0.000037 0.000035
2015 3 11 57092 0.003397 0.370481 -0.5394256 0.0013935 0.000150 0.000065 0.000042 0.000038 0.0000079 0.0000215 0.000038 0.000035
2015 3 12 57093 0.003195 0.371597 -0.5408538 0.0014178 0.000123 0.000077 0.000042 0.000038 0.0000084 0.0000220 0.000040 0.000038
2015 3 13 57094 0.002938 0.372683 -0.5422712 0.0013999 0.000011 0.000119 0.000042 0.000038 0.0000083 0.0000220 0.000039 0.000037
2015 3 14 57095 0.002704 0.373620 -0.5436702 0.0014642 -0.000046 0.000150 0.000042 0.000037 0.0000082 0.0000221 0.000038 0.000036
2015 3 15 57096 0.002816 0.374562 -0.5452153 0.0015602 0.000024 0.000110 0.000042 0.000037 0.0000080 0.0000223 0.000037 0.000034
2015 3 16 57097 0.002752 0.375498 -0.5468044 0.0016734 0.000126 0.000115 0.000042 0.000037 0.0000078 0.0000224 0.000035 0.000033
2015 3 17 57098 0.002856 0.376461 -0.5485375 0.0018229 0.000170 0.000275 0.000043 0.000037 0.0000073 0.0000233 0.000026 0.000024
2015 3 18 57099 0.002796 0.377477 -0.5504344 0.0020042 0.000121 0.000217 0.000043 0.000037 0.0000072 0.0000235 0.000026 0.000024
2015 3 19 57100 0.003449 0.378369 -0.5525460 0.0021746 0.000128 -0.000224 0.000044 0.000037 0.0000065 0.0000238 0.000026 0.000024
2015 3 20 57101 0.004608 0.379521 -0.5547638 0.0022520 0.000035 0.000018 0.000044 0.000037 0.0000066 0.0000238 0.000026 0.000025
2015 3 21 57102 0.006233 0.381247 -0.5570251 0.0022586 -0.000059 0.000261 0.000044 0.000037 0.0000069 0.0000238 0.000027 0.000025
2015 3 22 57103 0.007578 0.383336 -0.5593699 0.0021234 -0.000174 0.000482 0.000044 0.000037 0.0000071 0.0000238 0.000028 0.000026
2015 3 23 57104 0.008506 0.385223 -0.5614147 0.0019474 -0.000154 0.000510 0.000044 0.000037 0.0000073 0.0000238 0.000028 0.000026
2015 3 24 57105 0.009349 0.387119 -0.5632128 0.0018110 0.000064 0.000332 0.000042 0.000036 0.0000081 0.0000235 0.000027 0.000025
2015 3 25 57106 0.010087 0.388563 -0.5649964 0.0016983 0.000089 0.000316 0.000042 0.000036 0.0000081 0.0000236 0.000027 0.000026
2015 3 26 57107 0.010619 0.389763 -0.5666450 0.0015475 0.000130 0.000304 0.000042 0.000036 0.0000082 0.0000235 0.000029 0.000028
2015 3 27 57108 0.010896 0.390956 -0.5681220 0.0014342 0.000094 0.000266 0.000042 0.000036 0.0000080 0.0000235 0.000031 0.000029
2015 3 28 57109 0.011090 0.392089 -0.5695382 0.0013906 0.000077 0.000209 0.000042 0.000036 0.0000078 0.0000235 0.000032 0.000030
2015 3 29 57110 0.011489 0.393192 -0.5709432 0.0013824 0.000101 0.000151 0.000043 0.000036 0.0000076 0.0000234 0.000033 0.000032
2015 3 30 57111 0.012075 0.394088 -0.5723235 0.0013803 0.000114 0.000129 0.000043 0.000037 0.0000075 0.0000233 0.000035 0.000033
2015 3 31 57112 0.012636 0.395246 -0.5736668 0.0013763 0.000114 0.000171 0.000044 0.000038 0.0000070 0.0000226 0.000046 0.000040
2015 4 1 57113 0.013766 0.396398 -0.5750804 0.0013722 -0.000050 0.000050 0.000044 0.000038 0.0000072 0.0000225 0.000046 0.000041
2015 4 2 57114 0.015717 0.397860 -0.5764163 0.0013572 -0.000006 0.000131 0.000044 0.000038 0.0000091 0.0000218 0.000060 0.000062
2015 4 3 57115 0.017547 0.399721 -0.5777256 0.0013064 0.000057 0.000180 0.000044 0.000038 0.0000091 0.0000219 0.000056 0.000057
2015 4 4 57116 0.018546 0.401646 -0.5789910 0.0012401 0.000094 0.000177 0.000044 0.000038 0.0000092 0.0000219 0.000052 0.000053
2015 4 5 57117 0.019139 0.403443 -0.5801961 0.0011980 0.000131 0.000174 0.000044 0.000038 0.0000093 0.0000219 0.000048 0.000049
2015 4 6 57118 0.019595 0.404834 -0.5813837 0.0012086 0.000168 0.000171 0.000044 0.000038 0.0000095 0.0000219 0.000046 0.000045
2015 4 7 57119 0.020228 0.406046 -0.5825963 0.0012583 0.000173 0.000083 0.000043 0.000038 0.0000109 0.0000217 0.000042 0.000041
2015 4 8 57120 0.020919 0.407009 -0.5838611 0.0012656 0.000236 0.000150 0.000043 0.000038 0.0000104 0.0000215 0.000041 0.000040
2015 4 9 57121 0.021450 0.407845 -0.5851137 0.0012596 0.000299 0.000216 0.000043 0.000038 0.0000107 0.0000214 0.000041 0.000040
2015 4 10 57122 0.021563 0.409266 -0.5863913 0.0013083 0.000245 0.000225 0.000042 0.000038 0.0000105 0.0000213 0.000041 0.000039
2015 4 11 57123 0.021218 0.410692 -0.5877493 0.0014261 0.000187 0.000138 0.000042 0.000038 0.0000103 0.0000211 0.000040 0.000038
2015 4 12 57124 0.021040 0.411653 -0.5892619 0.0015758 0.000213 0.000052 0.000042 0.000038 0.0000102 0.0000210 0.000039 0.000037
2015 4 13 57125 0.021201 0.412396 -0.5908944 0.0017187 0.000255 0.000045 0.000042 0.000038 0.0000100 0.0000208 0.000038 0.000036
2015 4 14 57126 0.021522 0.413139 -0.5926785 0.0018398 0.000249 0.000098 0.000041 0.000037 0.0000096 0.0000199 0.000032 0.000031
2015 4 15 57127 0.021899 0.414276 -0.5945657 0.0019457 0.000195 0.000088 0.000042 0.000037 0.0000095 0.0000199 0.000033 0.000032
2015 4 16 57128 0.023284 0.415201 -0.5965793 0.0020217 -0.000058 0.000109 0.000042 0.000037 0.0000090 0.0000200 0.000035 0.000034
2015 4 17 57129 0.024243 0.417058 -0.5985686 0.0019442 0.000041 0.000076 0.000042 0.000037 0.0000087 0.0000202 0.000035 0.000033
2015 4 18 57130 0.025253 0.417782 -0.6004342 0.0018111 0.000140 0.000042 0.000042 0.000037 0.0000085 0.0000203 0.000035 0.000033
2015 4 19 57131 0.026229 0.419020 -0.6022001 0.0016388 0.000168 0.000109 0.000042 0.000037 0.0000083 0.0000203 0.000035 0.000032
2015 4 20 57132 0.027106 0.419586 -0.6037230 0.0014194 0.000165 0.000209 0.000042 0.000037 0.0000081 0.0000204 0.000035 0.000032
2015 4 21 57133 0.028116 0.420975 -0.6050414 0.0012042 0.000219 0.000249 0.000043 0.000037 0.0000075 0.0000204 0.000033 0.000029
2015 4 22 57134 0.028885 0.421699 -0.6061599 0.0010441 0.000198 0.000255 0.000043 0.000037 0.0000077 0.0000203 0.000034 0.000030
2015 4 23 57135 0.030130 0.422473 -0.6071956 0.0010030 0.000167 0.000274 0.000044 0.000037 0.0000077 0.0000196 0.000040 0.000041
2015 4 24 57136 0.031197 0.423879 -0.6082112 0.0010141 0.000191 0.000232 0.000044 0.000037 0.0000080 0.0000197 0.000041 0.000041
2015 4 25 57137 0.032065 0.425071 -0.6092471 0.0011076 0.000276 0.000170 0.000044 0.000037 0.0000083 0.0000198 0.000041 0.000042
2015 4 26 57138 0.033522 0.426193 -0.6104411 0.0012078 0.000331 0.000199 0.000043 0.000038 0.0000086 0.0000199 0.000041 0.000042
2015 4 27 57139 0.035361 0.427735 -0.6116804 0.0012836 0.000334 0.000213 0.000043 0.000038 0.0000088 0.0000200 0.000042 0.000043
2015 4 28 57140 0.036905 0.429331 -0.6129723 0.0013305 0.000345 0.000083 0.000043 0.000038 0.0000094 0.0000208 0.000038 0.000044
2015 4 29 57141 0.038196 0.430522 -0.6143816 0.0013832 0.000300 0.000087 0.000043 0.000038 0.0000093 0.0000207 0.000039 0.000045
2015 4 30 57142 0.038947 0.431573 -0.6157310 0.0014129 0.000271 0.000090 0.000043 0.000038 0.0000092 0.0000205 0.000041 0.000047
2015 5 1 57143 0.039877 0.432280 -0.6171725 0.0013898 0.000167 0.000097 0.000043 0.000038 0.0000092 0.0000204 0.000042 0.000047
2015 5 2 57144 0.040070 0.433256 -0.6185209 0.0013359 0.000156 0.000102 0.000044 0.000038 0.0000093 0.0000202 0.000044 0.000046
2015 5 3 57145 0.040241 0.434073 -0.6197888 0.0012406 0.000182 0.000107 0.000044 0.000038 0.0000095 0.0000200 0.000046 0.000046
2015 5 4 57146 0.040722 0.435565 -0.6209736 0.0011594 0.000208 0.000112 0.000044 0.000038 0.0000097 0.0000199 0.000048 0.000046
2015 5 5 57147 0.041654 0.436909 -0.6220730 0.0010783 0.000306 0.000080 0.000045 0.000039 0.0000121 0.0000196 0.000053 0.000045
2015 5 6 57148 0.042183 0.438365 -0.6230821 0.0010132 0.000004 0.000253 0.000045 0.000039 0.0000117 0.0000197 0.000052 0.000045
2015 5 7 57149 0.043472 0.439555 -0.6241298 0.0010293 -0.000064 0.000289 0.000046 0.000039 0.0000112 0.0000203 0.000055 0.000049
2015 5 8 57150 0.045056 0.440905 -0.6251640 0.0010796 0.000127 0.000159 0.000045 0.000039 0.0000105 0.0000204 0.000052 0.000047
2015 5 9 57151 0.047151 0.442141 -0.6262781 0.0011878 0.000382 0.000024 0.000045 0.000039 0.0000100 0.0000204 0.000050 0.000045
2015 5 10 57152 0.049052 0.443714 -0.6275273 0.0013324 0.000560 -0.000037 0.000044 0.000039 0.0000095 0.0000205 0.000048 0.000044
2015 5 11 57153 0.050599 0.444604 -0.6289352 0.0015274 0.000514 -0.000013 0.000044 0.000039 0.0000093 0.0000205 0.000046 0.000043
2015 5 12 57154 0.052199 0.445078 -0.6305801 0.0017196 0.000155 0.000086 0.000043 0.000039 0.0000079 0.0000204 0.000038 0.000036
2015 5 13 57155 0.053819 0.445646 -0.6324967 0.0018313 0.000615 -0.000084 0.000043 0.000040 0.0000103 0.0000202 0.000039 0.000038
2015 5 14 57156 0.055439 0.445986 -0.6343671 0.0018857 0.000449 -0.000190 0.000043 0.000039 0.0000106 0.0000202 0.000051 0.000057
2015 5 15 57157 0.057287 0.446867 -0.6361734 0.0019085 0.000191 0.000020 0.000043 0.000038 0.0000104 0.0000202 0.000052 0.000056
2015 5 16 57158 0.059007 0.447108 -0.6379890 0.0017892 0.000143 0.000161 0.000042 0.000038 0.0000103 0.0000201 0.000052 0.000057
2015 5 17 57159 0.061406 0.447172 -0.6397554 0.0016413 0.000203 0.000220 0.000041 0.000038 0.0000102 0.0000200 0.000053 0.000057
2015 5 18 57160 0.063855 0.448161 -0.6413301 0.0014941 0.000270 0.000245 0.000040 0.000038 0.0000101 0.0000199 0.000053 0.000057
2015 5 19 57161 0.065734 0.448961 -0.6427435 0.0013674 0.000211 0.000324 0.000038 0.000037 0.0000100 0.0000195 0.000051 0.000056
2015 5 20 57162 0.067900 0.449237 -0.6440744 0.0012655 0.000536 0.000184 0.000038 0.000037 0.0000097 0.0000193 0.000050 0.000055
2015 5 21 57163 0.070097 0.449461 -0.6453102 0.0011717 0.000601 0.000123 0.000037 0.000036 0.0000095 0.0000189 0.000052 0.000057
2015 5 22 57164 0.071713 0.449507 -0.6464266 0.0011047 0.000300 0.000090 0.000038 0.000036 0.0000091 0.0000189 0.000048 0.000051
2015 5 23 57165 0.074017 0.449700 -0.6475041 0.0010966 0.000226 0.000100 0.000038 0.000036 0.0000088 0.0000188 0.000043 0.000045
2015 5 24 57166 0.075727 0.450800 -0.6485716 0.0010386 0.000244 0.000089 0.000038 0.000036 0.0000085 0.0000187 0.000039 0.000040
2015 5 25 57167 0.077445 0.451147 -0.6496066 0.0010336 0.000262 0.000079 0.000038 0.000036 0.0000083 0.0000187 0.000036 0.000036
2015 5 26 57168 0.079256 0.452140 -0.6506225 0.0010316 0.000384 0.000084 0.000038 0.000035 0.0000077 0.0000185 0.000028 0.000027
2015 5 27 57169 0.080949 0.452585 -0.6516333 0.0010263 0.000316 0.000062 0.000038 0.000035 0.0000078 0.0000185 0.000028 0.000028
2015 5 28 57170 0.083136 0.453243 -0.6526491 0.0010319 0.000249 0.000039 0.000037 0.000036 0.0000081 0.0000186 0.000027 0.000028
2015 5 29 57171 0.085112 0.453899 -0.6536723 0.0009912 0.000181 0.000016 0.000037 0.000036 0.0000081 0.0000185 0.000027 0.000028
2015 5 30 57172 0.087285 0.454620 -0.6545886 0.0009021 0.000153 0.000003 0.000038 0.000035 0.0000082 0.0000184 0.000026 0.000027
2015 5 31 57173 0.089059 0.455446 -0.6554638 0.0008105 0.000140 -0.000006 0.000038 0.000035 0.0000082 0.0000182 0.000025 0.000027
2015 6 1 57174 0.091088 0.455998 -0.6562421 0.0007287 0.000146 0.000026 0.000038 0.000035 0.0000083 0.0000181 0.000024 0.000026
2015 6 2 57175 0.092430 0.456456 -0.6569172 0.0006741 0.000169 0.000152 0.000039 0.000035 0.0000081 0.0000175 0.000022 0.000025
2015 6 3 57176 0.093323 0.456862 -0.6575507 0.0006395 0.000209 0.000015 0.000039 0.000035 0.0000083 0.0000175 0.000022 0.000025
2015 6 4 57177 0.093747 0.457107 -0.6582050 0.0006284 0.000230 -0.000065 0.000039 0.000036 0.0000093 0.0000175 0.000023 0.000027
2015 6 5 57178 0.094883 0.456873 -0.6588283 0.0006761 0.000210 -0.000009 0.000039 0.000036 0.0000094 0.0000177 0.000023 0.000027
2015 6 6 57179 0.096134 0.456825 -0.6595690 0.0008052 0.000239 -0.000012 0.000039 0.000036 0.0000094 0.0000178 0.000023 0.000027
2015 6 7 57180 0.096680 0.456719 -0.6604199 0.0009158 0.000107 0.000044 0.000039 0.000037 0.0000095 0.0000180 0.000023 0.000027
2015 6 8 57181 0.097075 0.456092 -0.6613820 0.0010382 0.000094 0.000050 0.000039 0.000037 0.0000095 0.0000181 0.000023 0.000027
2015 6 9 57182 0.098098 0.455588 -0.6624561 0.0010812 0.000224 -0.000023 0.000040 0.000037 0.0000097 0.0000186 0.000024 0.000027
2015 6 10 57183 0.099062 0.455347 -0.6635237 0.0010403 0.000241 -0.000017 0.000041 0.000037 0.0000097 0.0000186 0.000025 0.000028
2015 6 11 57184 0.100456 0.455207 -0.6645557 0.0010037 0.000259 -0.000011 0.000041 0.000037 0.0000094 0.0000186 0.000025 0.000029
2015 6 12 57185 0.102301 0.455181 -0.6655031 0.0009073 0.000222 -0.000049 0.000042 0.000037 0.0000100 0.0000186 0.000029 0.000034
2015 6 13 57186 0.104680 0.454920 -0.6663246 0.0007428 0.000139 -0.000088 0.000042 0.000037 0.0000100 0.0000185 0.000029 0.000034
2015 6 14 57187 0.107222 0.454684 -0.6669959 0.0005541 0.000087 -0.000176 0.000042 0.000037 0.0000099 0.0000184 0.000029 0.000035
2015 6 15 57188 0.109964 0.454471 -0.6674240 0.0003906 0.000129 -0.000144 0.000042 0.000037 0.0000098 0.0000184 0.000030 0.000035
2015 6 16 57189 0.112548 0.454084 -0.6677546 0.0002888 0.000225 0.000013 0.000042 0.000037 0.0000096 0.0000181 0.000032 0.000037
2015 6 17 57190 0.115103 0.453606 -0.6679877 0.0001938 0.000247 -0.000037 0.000042 0.000037 0.0000094 0.0000181 0.000030 0.000035
2015 6 18 57191 0.116994 0.453414 -0.6681856 0.0002150 0.000255 -0.000051 0.000040 0.000036 0.0000091 0.0000182 0.000027 0.000031
2015 6 19 57192 0.119140 0.453235 -0.6684361 0.0003132 0.000237 -0.000006 0.000040 0.000036 0.0000090 0.0000182 0.000026 0.000031
2015 6 20 57193 0.121325 0.452998 -0.6688166 0.0004130 0.000262 0.000016 0.000040 0.000036 0.0000088 0.0000183 0.000025 0.000030
2015 6 21 57194 0.123086 0.452951 -0.6693000 0.0005197 0.000253 -0.000006 0.000040 0.000036 0.0000087 0.0000184 0.000025 0.000029
2015 6 22 57195 0.125050 0.452964 -0.6698955 0.0006034 0.000227 -0.000018 0.000039 0.000036 0.0000086 0.0000185 0.000025 0.000029
2015 6 23 57196 0.127121 0.452299 -0.6705445 0.0006970 0.000206 0.000044 0.000038 0.000036 0.0000082 0.0000189 0.000030 0.000038
2015 6 24 57197 0.129210 0.452009 -0.6713241 0.0007962 0.000151 0.000138 0.000039 0.000036 0.0000082 0.0000189 0.000031 0.000038
2015 6 25 57198 0.131403 0.451511 -0.6721426 0.0008084 0.000123 0.000025 0.000041 0.000037 0.0000086 0.0000208 0.000033 0.000041
2015 6 26 57199 0.134091 0.451186 -0.6729611 0.0008103 0.000157 -0.000034 0.000041 0.000037 0.0000081 0.0000208 0.000032 0.000040
2015 6 27 57200 0.136187 0.450799 -0.6738051 0.0008242 0.000162 -0.000085 0.000041 0.000036 0.0000076 0.0000208 0.000031 0.000039
2015 6 28 57201 0.137914 0.450451 -0.6746394 0.0007877 0.000150 -0.000150 0.000041 0.000036 0.0000072 0.0000209 0.000029 0.000037
2015 6 29 57202 0.139464 0.449684 -0.6753678 0.0006927 0.000161 -0.000167 0.000041 0.000036 0.0000068 0.0000210 0.000028 0.000035
2015 6 30 57203 0.140846 0.448889 -0.6760310 0.0006004 0.000196 -0.000135 0.000041 0.000036 0.0000065 0.0000211 0.000027 0.000034
2015 7 1 57204 0.142153 0.448180 0.3233763 0.0005848 0.000191 -0.000141 0.000042 0.000036 0.0000063 0.0000212 0.000026 0.000032
2015 7 2 57205 0.143584 0.447342 0.3227706 0.0006338 0.000176 -0.000156 0.000042 0.000036 0.0000061 0.0000213 0.000025 0.000030
2015 7 3 57206 0.145011 0.446661 0.3220640 0.0007407 0.000166 -0.000154 0.000042 0.000036 0.0000060 0.0000214 0.000024 0.000028
2015 7 4 57207 0.146541 0.445610 0.3212606 0.0009149 0.000156 -0.000153 0.000042 0.000036 0.0000059 0.0000215 0.000023 0.000027
2015 7 5 57208 0.148574 0.444629 0.3202377 0.0011166 0.000145 -0.000151 0.000042 0.000036 0.0000058 0.0000215 0.000022 0.000025
2015 7 6 57209 0.150893 0.444037 0.3190503 0.0012359 0.000135 -0.000149 0.000042 0.000036 0.0000058 0.0000214 0.000021 0.000024
2015 7 7 57210 0.152846 0.443796 0.3177631 0.0013056 0.000125 -0.000147 0.000042 0.000037 0.0000058 0.0000213 0.000020 0.000023
2015 7 8 57211 0.154887 0.443772 0.3164339 0.0013492 0.000131 -0.000152 0.000041 0.000037 0.0000058 0.0000211 0.000020 0.000022
2015 7 9 57212 0.156784 0.443514 0.3151117 0.0012925 0.000143 -0.000159 0.000041 0.000037 0.0000058 0.0000210 0.000020 0.000022
2015 7 10 57213 0.158557 0.442832 0.3138450 0.0011777 0.000154 -0.000165 0.000041 0.000037 0.0000059 0.0000210 0.000020 0.000022
2015 7 11 57214 0.160529 0.441792 0.3127485 0.0010255 0.000144 -0.000155 0.000041 0.000037 0.0000059 0.0000210 0.000020 0.000023
2015 7 12 57215 0.162971 0.440565 0.3117937 0.0008403 0.000126 -0.000138 0.000041 0.000037 0.0000060 0.0000210 0.000020 0.000023
2015 7 13 57216 0.165680 0.439427 0.3111093 0.0006380 0.000108 -0.000121 0.000042 0.000037 0.0000061 0.0000211 0.000021 0.000024
2015 7 14 57217 0.168251 0.438486 0.3105489 0.0004952 0.000091 -0.000104 0.000042 0.000037 0.0000061 0.0000212 0.000021 0.000024
2015 7 15 57218 0.170435 0.437564 0.3101281 0.0004296 0.000178 -0.000166 0.000042 0.000037 0.0000061 0.0000213 0.000021 0.000024
2015 7 16 57219 0.172211 0.436343 0.3097057 0.0004346 0.000172 -0.000108 0.000042 0.000037 0.0000060 0.0000215 0.000022 0.000025
2015 7 17 57220 0.173804 0.434920 0.3092340 0.0004502 0.000172 -0.000073 0.000043 0.000037 0.0000060 0.0000216 0.000022 0.000025
2015 7 18 57221 0.175731 0.433873 0.3088155 0.0004804 0.000178 -0.000102 0.000043 0.000037 0.0000059 0.0000217 0.000022 0.000025
2015 7 19 57222 0.177407 0.432895 0.3083276 0.0004764 0.000180 -0.000147 0.000043 0.000037 0.0000058 0.0000218 0.000022 0.000025
2015 7 20 57223 0.178885 0.432062 0.3078486 0.0004891 0.000183 -0.000192 0.000043 0.000037 0.0000057 0.0000218 0.000023 0.000025
2015 7 21 57224 0.180124 0.431351 0.3073369 0.0005093 0.000185 -0.000237 0.000043 0.000037 0.0000057 0.0000218 0.000023 0.000026
2015 7 22 57225 0.181079 0.430400 0.3068048 0.0005285 0.000140 -0.000222 0.000043 0.000037 0.0000056 0.0000219 0.000023 0.000026
2015 7 23 57226 0.182033 0.429559 0.3062745 0.0005103 0.000082 -0.000191 0.000043 0.000037 0.0000056 0.0000219 0.000024 0.000026
2015 7 24 57227 0.183025 0.428787 0.3058020 0.0004788 0.000025 -0.000160 0.000043 0.000037 0.0000056 0.0000219 0.000024 0.000027
2015 7 25 57228 0.184491 0.427885 0.3052924 0.0004843 0.000047 -0.000156 0.000043 0.000037 0.0000057 0.0000220 0.000024 0.000027
2015 7 26 57229 0.185865 0.426819 0.3048751 0.0004413 0.000098 -0.000162 0.000043 0.000037 0.0000057 0.0000220 0.000024 0.000027
2015 7 27 57230 0.187283 0.425437 0.3044798 0.0003946 0.000149 -0.000168 0.000043 0.000037 0.0000058 0.0000220 0.000024 0.000027
2015 7 28 57231 0.189234 0.424094 0.3040866 0.0003796 0.000200 -0.000174 0.000043 0.000037 0.0000059 0.0000219 0.000024 0.000027
2015 7 29 57232 0.191151 0.422995 0.3037075 0.0004191 0.000168 -0.000190 0.000043 0.000037 0.0000060 0.0000219 0.000025 0.000027
2015 7 30 57233 0.192957 0.421592 0.3032492 0.0005362 0.000114 -0.000208 0.000043 0.000037 0.0000061 0.0000220 0.000025 0.000028
2015 7 31 57234 0.194609 0.420207 0.3026492 0.0006933 0.000060 -0.000225 0.000043 0.000037 0.0000061 0.0000221 0.000025 0.000028
2015 8 1 57235 0.196310 0.418685 0.3018496 0.0008829 -0.000030 -0.000244 0.000043 0.000037 0.0000062 0.0000222 0.000025 0.000028
2015 8 2 57236 0.198114 0.417357 0.3008662 0.0010790 -0.000135 -0.000264 0.000043 0.000037 0.0000063 0.0000224 0.000025 0.000028
2015 8 3 57237 0.200104 0.415856 0.2996988 0.0011972 -0.000239 -0.000283 0.000043 0.000037 0.0000063 0.0000227 0.000024 0.000028
2015 8 4 57238 0.202192 0.414622 0.2984794 0.0012597 -0.000343 -0.000302 0.000043 0.000037 0.0000063 0.0000230 0.000024 0.000027
2015 8 5 57239 0.204592 0.413481 0.2972208 0.0012302 0.000011 -0.000221 0.000043 0.000037 0.0000063 0.0000232 0.000023 0.000026
2015 8 6 57240 0.206930 0.412294 0.2960044 0.0011240 0.000051 -0.000188 0.000043 0.000037 0.0000062 0.0000235 0.000023 0.000025
2015 8 7 57241 0.208764 0.411131 0.2949969 0.0009639 0.000010 -0.000168 0.000043 0.000037 0.0000062 0.0000236 0.000022 0.000024
2015 8 8 57242 0.210035 0.410097 0.2941193 0.0008248 0.000006 -0.000164 0.000043 0.000037 0.0000062 0.0000237 0.000021 0.000023
2015 8 9 57243 0.210643 0.408559 0.2933426 0.0007052 0.000016 -0.000166 0.000043 0.000037 0.0000062 0.0000237 0.000021 0.000022
2015 8 10 57244 0.211293 0.406640 0.2926987 0.0006085 0.000025 -0.000167 0.000043 0.000037 0.0000061 0.0000237 0.000020 0.000021
2015 8 11 57245 0.212082 0.404949 0.2921211 0.0005560 0.000035 -0.000169 0.000043 0.000037 0.0000061 0.0000235 0.000019 0.000020
2015 8 12 57246 0.212760 0.403372 0.2915351 0.0005881 0.000045 -0.000170 0.000043 0.000037 0.0000060 0.0000234 0.000019 0.000019
2015 8 13 57247 0.213726 0.401430 0.2909029 0.0006613 0.000070 -0.000175 0.000043 0.000037 0.0000058 0.0000231 0.000018 0.000018
2015 8 14 57248 0.215333 0.399594 0.2901809 0.0007464 0.000099 -0.000180 0.000043 0.000036 0.0000057 0.0000229 0.000017 0.000018
2015 8 15 57249 0.217063 0.398003 0.2894219 0.0007832 0.000106 -0.000174 0.000043 0.000036 0.0000056 0.0000227 0.000017 0.000017
2015 8 16 57250 0.218471 0.396822 0.2885983 0.0008078 0.000104 -0.000164 0.000043 0.000036 0.0000056 0.0000224 0.000017 0.000017
2015 8 17 57251 0.219489 0.395483 0.2877663 0.0008399 0.000103 -0.000154 0.000043 0.000036 0.0000055 0.0000222 0.000016 0.000017
2015 8 18 57252 0.219943 0.394037 0.2869271 0.0008128 0.000101 -0.000144 0.000043 0.000036 0.0000054 0.0000220 0.000016 0.000017
2015 8 19 57253 0.219466 0.392366 0.2861320 0.0007991 0.000094 -0.000166 0.000043 0.000036 0.0000053 0.0000219 0.000017 0.000017
2015 8 20 57254 0.219453 0.390450 0.2853066 0.0008118 0.000085 -0.000198 0.000043 0.000036 0.0000053 0.0000219 0.000017 0.000018
2015 8 21 57255 0.220036 0.388501 0.2844737 0.0008338 0.000076 -0.000229 0.000043 0.000036 0.0000052 0.0000220 0.000018 0.000018
2015 8 22 57256 0.221255 0.386449 0.2836427 0.0008077 0.000071 -0.000213 0.000043 0.000036 0.0000051 0.0000222 0.000019 0.000019
2015 8 23 57257 0.222255 0.384660 0.2828631 0.0007619 0.000068 -0.000179 0.000043 0.000037 0.0000050 0.0000225 0.000020 0.000020
2015 8 24 57258 0.223086 0.382834 0.2821139 0.0007837 0.000065 -0.000145 0.000042 0.000037 0.0000049 0.0000228 0.000021 0.000021
2015 8 25 57259 0.224080 0.381115 0.2813086 0.0008440 0.000062 -0.000110 0.000042 0.000037 0.0000048 0.0000230 0.000022 0.000022
2015 8 26 57260 0.225375 0.379172 0.2804279 0.0009201 0.000056 -0.000185 0.000042 0.000037 0.0000048 0.0000233 0.000022 0.000022
2015 8 27 57261 0.226047 0.377184 0.2794698 0.0010333 0.000102 -0.000259 0.000043 0.000037 0.0000047 0.0000234 0.000023 0.000022
2015 8 28 57262 0.226137 0.374940 0.2783356 0.0012129 0.000129 -0.000277 0.000043 0.000037 0.0000048 0.0000234 0.000023 0.000023
2015 8 29 57263 0.226136 0.373230 0.2770368 0.0013994 0.000109 -0.000271 0.000043 0.000037 0.0000048 0.0000234 0.000024 0.000023
2015 8 30 57264 0.225979 0.371887 0.2755050 0.0016042 0.000075 -0.000261 0.000043 0.000037 0.0000049 0.0000233 0.000024 0.000024
2015 8 31 57265 0.226105 0.370644 0.2738080 0.0017519 0.000040 -0.000251 0.000043 0.000037 0.0000051 0.0000232 0.000025 0.000024
2015 9 1 57266 0.226159 0.369688 0.2720088 0.0018065 0.000006 -0.000241 0.000042 0.000037 0.0000052 0.0000231 0.000026 0.000025
2015 9 2 57267 0.226254 0.368692 0.2702026 0.0017414 -0.000006 -0.000361 0.000042 0.000037 0.0000054 0.0000231 0.000026 0.000026
2015 9 3 57268 0.226639 0.367229 0.2685163 0.0015875 0.000000 -0.000320 0.000042 0.000037 0.0000055 0.0000231 0.000027 0.000027
2015 9 4 57269 0.227426 0.365669 0.2670179 0.0014125 0.000008 -0.000221 0.000042 0.000037 0.0000056 0.0000232 0.000027 0.000027
2015 9 5 57270 0.227931 0.364625 0.2656803 0.0012802 0.000040 -0.000202 0.000042 0.000036 0.0000057 0.0000233 0.000027 0.000027
2015 9 6 57271 0.227975 0.363324 0.2644683 0.0011842 0.000081 -0.000213 0.000042 0.000036 0.0000057 0.0000234 0.000026 0.000026
2015 9 7 57272 0.228121 0.361815 0.2633431 0.0011165 0.000122 -0.000222 0.000042 0.000036 0.0000057 0.0000236 0.000025 0.000025
2015 9 8 57273 0.227918 0.360242 0.2622594 0.0010532 0.000162 -0.000233 0.000042 0.000036 0.0000057 0.0000237 0.000024 0.000024
2015 9 9 57274 0.227477 0.358366 0.2612482 0.0010457 0.000112 -0.000250 0.000042 0.000036 0.0000056 0.0000238 0.000023 0.000023
2015 9 10 57275 0.226678 0.356453 0.2601824 0.0010446 0.000067 -0.000222 0.000042 0.000036 0.0000055 0.0000239 0.000022 0.000022
2015 9 11 57276 0.225685 0.354564 0.2591351 0.0010907 0.000009 -0.000183 0.000042 0.000036 0.0000054 0.0000240 0.000021 0.000021
2015 9 12 57277 0.224883 0.352314 0.2579741 0.0012093 -0.000012 -0.000174 0.000042 0.000036 0.0000053 0.0000240 0.000020 0.000020
2015 9 13 57278 0.224834 0.350345 0.2566642 0.0013047 -0.000016 -0.000175 0.000042 0.000036 0.0000052 0.0000240 0.000019 0.000019
2015 9 14 57279 0.224826 0.348391 0.2553799 0.0013355 -0.000021 -0.000177 0.000042 0.000036 0.0000051 0.0000240 0.000018 0.000018
2015 9 15 57280 0.224661 0.346558 0.2540488 0.0013116 -0.000026 -0.000178 0.000042 0.000036 0.0000050 0.0000241 0.000018 0.000017
2015 9 16 57281 0.224285 0.345189 0.2527143 0.0012580 -0.000027 -0.000163 0.000042 0.000036 0.0000049 0.0000241 0.000018 0.000017
2015 9 17 57282 0.223574 0.343743 0.2514941 0.0012140 -0.000027 -0.000143 0.000042 0.000037 0.0000048 0.0000241 0.000018 0.000017
2015 9 18 57283 0.222455 0.342330 0.2503085 0.0011814 -0.000028 -0.000122 0.000042 0.000037 0.0000047 0.0000241 0.000018 0.000017
2015 9 19 57284 0.221417 0.340422 0.2491300 0.0011811 -0.000013 -0.000117 0.000041 0.000037 0.0000047 0.0000242 0.000019 0.000017
2015 9 20 57285 0.220525 0.338489 0.2479690 0.0011854 0.000007 -0.000116 0.000041 0.000037 0.0000046 0.0000242 0.000019 0.000018
2015 9 21 57286 0.219470 0.336281 0.2467427 0.0012139 0.000027 -0.000115 0.000040 0.000036 0.0000044 0.0000243 0.000020 0.000019
2015 9 22 57287 0.218788 0.334067 0.2455169 0.0012940 0.000047 -0.000115 0.000039 0.000036 0.0000044 0.0000244 0.000021 0.000019
2015 9 23 57288 0.218317 0.332050 0.2441966 0.0013745 0.000049 -0.000161 0.000039 0.000036 0.0000043 0.0000244 0.000021 0.000020
2015 9 24 57289 0.218149 0.329959 0.2427433 0.0014875 0.000045 -0.000221 0.000038 0.000036 0.0000042 0.0000245 0.000021 0.000020
2015 9 25 57290 0.218124 0.328219 0.2411798 0.0016980 0.000042 -0.000280 0.000038 0.000036 0.0000042 0.0000246 0.000021 0.000020
2015 9 26 57291 0.218222 0.326765 0.2393843 0.0019379 0.000047 -0.000089 0.000038 0.000036 0.0000042 0.0000247 0.000021 0.000020
2015 9 27 57292 0.217700 0.325161 0.2373350 0.0020938 0.000025 0.000012 0.000039 0.000036 0.0000042 0.0000248 0.000020 0.000020
2015 9 28 57293 0.216363 0.323525 0.2352100 0.0021262 -0.000028 -0.000068 0.000040 0.000036 0.0000043 0.0000249 0.000020 0.000019
2015 9 29 57294 0.214364 0.321254 0.2331141 0.0020575 -0.000081 -0.000148 0.000040 0.000036 0.0000044 0.0000249 0.000019 0.000019
2015 9 30 57295 0.212128 0.318772 0.2311423 0.0019043 -0.000127 -0.000175 0.000041 0.000037 0.0000045 0.0000249 0.000019 0.000019
2015 10 1 57296 0.210154 0.315940 0.2293563 0.0016806 -0.000087 -0.000191 0.000041 0.000037 0.0000047 0.0000248 0.000019 0.000018
2015 10 2 57297 0.209372 0.313714 0.2277956 0.0014195 -0.000023 -0.000208 0.000042 0.000037 0.0000049 0.0000247 0.000019 0.000018
2015 10 3 57298 0.209309 0.311983 0.2264605 0.0012729 -0.000005 -0.000191 0.000042 0.000037 0.0000051 0.0000245 0.000019 0.000018
2015 10 4 57299 0.209040 0.310085 0.2252165 0.0012310 -0.000004 -0.000163 0.000042 0.000037 0.0000053 0.0000243 0.000020 0.000018
2015 10 5 57300 0.208642 0.307983 0.2240212 0.0012479 -0.000003 -0.000134 0.000042 0.000037 0.0000054 0.0000240 0.000020 0.000018
2015 10 6 57301 0.208173 0.306267 0.2227485 0.0013025 -0.000002 -0.000106 0.000041 0.000037 0.0000054 0.0000237 0.000020 0.000018
2015 10 7 57302 0.207405 0.304663 0.2214283 0.0013574 -0.000058 -0.000126 0.000041 0.000037 0.0000054 0.0000234 0.000020 0.000018
2015 10 8 57303 0.206711 0.303243 0.2200227 0.0013977 -0.000001 -0.000154 0.000041 0.000037 0.0000054 0.0000232 0.000020 0.000018
2015 10 9 57304 0.205815 0.302033 0.2186103 0.0014645 0.000092 -0.000180 0.000041 0.000037 0.0000053 0.0000229 0.000020 0.000018
2015 10 10 57305 0.204312 0.300736 0.2170553 0.0015802 0.000093 -0.000183 0.000040 0.000037 0.0000053 0.0000227 0.000019 0.000018
2015 10 11 57306 0.202086 0.299153 0.2154592 0.0016430 0.000086 -0.000186 0.000040 0.000037 0.0000053 0.0000224 0.000019 0.000017
2015 10 12 57307 0.199969 0.297463 0.2138035 0.0016608 0.000079 -0.000190 0.000040 0.000037 0.0000052 0.0000222 0.000018 0.000016
2015 10 13 57308 0.197971 0.295785 0.2121670 0.0016277 0.000072 -0.000193 0.000041 0.000037 0.0000052 0.0000220 0.000017 0.000016
2015 10 14 57309 0.195980 0.294038 0.2105459 0.0015663 0.000066 -0.000197 0.000041 0.000037 0.0000051 0.0000218 0.000016 0.000015
2015 10 15 57310 0.193994 0.292082 0.2089934 0.0014524 0.000049 -0.000161 0.000042 0.000037 0.0000050 0.0000216 0.000016 0.000015
2015 10 16 57311 0.192102 0.290369 0.2076086 0.0013855 0.000030 -0.000115 0.000042 0.000037 0.0000050 0.0000215 0.000015 0.000014
2015 10 17 57312 0.190068 0.288934 0.2061901 0.0014394 0.000015 -0.000117 0.000043 0.000037 0.0000050 0.0000214 0.000015 0.000014
2015 10 18 57313 0.188345 0.287223 0.2047215 0.0015264 0.000002 -0.000138 0.000043 0.000037 0.0000051 0.0000215 0.000014 0.000014
2015 10 19 57314 0.186873 0.285643 0.2031873 0.0015520 -0.000011 -0.000159 0.000043 0.000037 0.0000051 0.0000216 0.000014 0.000014
2015 10 20 57315 0.185756 0.284233 0.2016303 0.0015486 -0.000024 -0.000179 0.000043 0.000037 0.0000052 0.0000217 0.000014 0.000014
2015 10 21 57316 0.184816 0.283207 0.2000706 0.0015994 -0.000025 -0.000189 0.000043 0.000037 0.0000052 0.0000220 0.000014 0.000014
2015 10 22 57317 0.183803 0.282406 0.1983996 0.0017629 -0.000022 -0.000196 0.000043 0.000037 0.0000053 0.0000222 0.000015 0.000014
2015 10 23 57318 0.182488 0.281529 0.1965325 0.0019635 -0.000020 -0.000203 0.000043 0.000037 0.0000053 0.0000224 0.000015 0.000015
2015 10 24 57319 0.180780 0.280319 0.1944731 0.0021304 -0.000029 -0.000189 0.000042 0.000037 0.0000053 0.0000226 0.000015 0.000015
2015 10 25 57320 0.179130 0.278925 0.1922502 0.0022662 -0.000044 -0.000168 0.000042 0.000037 0.0000052 0.0000227 0.000016 0.000016
2015 10 26 57321 0.178074 0.277767 0.1899642 0.0023219 -0.000058 -0.000146 0.000041 0.000037 0.0000052 0.0000228 0.000016 0.000016
2015 10 27 57322 0.177441 0.276623 0.1876673 0.0022573 -0.000072 -0.000125 0.000041 0.000037 0.0000051 0.0000228 0.000016 0.000017
2015 10 28 57323 0.176444 0.275666 0.1854819 0.0021076 -0.000081 -0.000112 0.000041 0.000037 0.0000050 0.0000227 0.000016 0.000017
2015 10 29 57324 0.174595 0.275010 0.1834392 0.0019114 -0.000089 -0.000101 0.000040 0.000037 0.0000050 0.0000226 0.000017 0.000017
2015 10 30 57325 0.171943 0.274100 0.1816567 0.0017199 -0.000097 -0.000090 0.000040 0.000037 0.0000050 0.0000224 0.000017 0.000017
2015 10 31 57326 0.168810 0.272491 0.1800089 0.0015698 -0.000088 -0.000088 0.000040 0.000037 0.0000049 0.0000222 0.000016 0.000017
2015 11 1 57327 0.166156 0.270723 0.1785290 0.0014971 -0.000073 -0.000090 0.000040 0.000037 0.0000049 0.0000221 0.000016 0.000017
2015 11 2 57328 0.164208 0.269307 0.1770163 0.0014625 -0.000058 -0.000092 0.000041 0.000037 0.0000049 0.0000220 0.000016 0.000017
2015 11 3 57329 0.162424 0.268456 0.1755812 0.0014188 -0.000044 -0.000094 0.000041 0.000037 0.0000049 0.0000219 0.000016 0.000017
2015 11 4 57330 0.161037 0.267840 0.1741809 0.0014232 -0.000029 -0.000095 0.000041 0.000037 0.0000049 0.0000219 0.000016 0.000017
2015 11 5 57331 0.159896 0.267488 0.1727286 0.0014705 -0.000032 -0.000087 0.000041 0.000037 0.0000049 0.0000219 0.000017 0.000017
2015 11 6 57332 0.158099 0.267016 0.1712422 0.0015442 -0.000041 -0.000076 0.000040 0.000037 0.0000049 0.0000219 0.000017 0.000018
2015 11 7 57333 0.156027 0.266152 0.1696467 0.0016051 -0.000046 -0.000085 0.000040 0.000037 0.0000049 0.0000220 0.000018 0.000018
2015 11 8 57334 0.154445 0.265055 0.1680384 0.0016053 -0.000050 -0.000101 0.000040 0.000037 0.0000049 0.0000220 0.000019 0.000019
2015 11 9 57335 0.153166 0.264102 0.1664229 0.0015843 -0.000055 -0.000117 0.000039 0.000037 0.0000049 0.0000222 0.000020 0.000019
2015 11 10 57336 0.151445 0.263446 0.1648753 0.0015328 -0.000059 -0.000133 0.000038 0.000037 0.0000049 0.0000223 0.000020 0.000020
2015 11 11 57337 0.149754 0.262700 0.1633557 0.0014865 -0.000033 -0.000079 0.000038 0.000037 0.0000049 0.0000225 0.000020 0.000020
2015 11 12 57338 0.148099 0.261850 0.1618909 0.0014441 -0.000031 -0.000108 0.000037 0.000037 0.0000049 0.0000226 0.000020 0.000019
2015 11 13 57339 0.146319 0.260967 0.1604690 0.0013756 -0.000064 -0.000127 0.000036 0.000037 0.0000048 0.0000227 0.000019 0.000019
2015 11 14 57340 0.144456 0.260038 0.1591063 0.0013553 -0.000068 -0.000129 0.000036 0.000037 0.0000048 0.0000228 0.000019 0.000019
2015 11 15 57341 0.142731 0.259238 0.1577101 0.0013775 -0.000057 -0.000129 0.000036 0.000036 0.0000048 0.0000228 0.000018 0.000018
2015 11 16 57342 0.140900 0.258808 0.1563522 0.0014333 -0.000046 -0.000130 0.000036 0.000036 0.0000049 0.0000228 0.000018 0.000018
2015 11 17 57343 0.138907 0.258423 0.1549179 0.0014687 -0.000036 -0.000130 0.000036 0.000036 0.0000049 0.0000226 0.000018 0.000018
2015 11 18 57344 0.136946 0.257706 0.1534306 0.0015223 -0.000071 -0.000024 0.000037 0.000036 0.0000049 0.0000224 0.000018 0.000018
2015 11 19 57345 0.134583 0.256998 0.1518710 0.0015940 -0.000114 -0.000023 0.000038 0.000036 0.0000049 0.0000221 0.000019 0.000019
2015 11 20 57346 0.132128 0.256163 0.1502380 0.0016825 -0.000105 -0.000196 0.000038 0.000036 0.0000050 0.0000218 0.000019 0.000019
2015 11 21 57347 0.129959 0.255573 0.1485168 0.0017796 -0.000081 -0.000220 0.000039 0.000036 0.0000050 0.0000215 0.000020 0.000020
2015 11 22 57348 0.127960 0.255413 0.1466887 0.0018310 -0.000059 -0.000174 0.000040 0.000036 0.0000050 0.0000213 0.000021 0.000020
2015 11 23 57349 0.125630 0.255243 0.1448814 0.0018330 -0.000036 -0.000129 0.000040 0.000036 0.0000051 0.0000212 0.000021 0.000020
2015 11 24 57350 0.123068 0.254701 0.1430838 0.0017535 -0.000013 -0.000083 0.000040 0.000036 0.0000051 0.0000212 0.000022 0.000021
2015 11 25 57351 0.120745 0.254087 0.1413886 0.0016554 -0.000031 -0.000118 0.000040 0.000036 0.0000052 0.0000212 0.000022 0.000020
2015 11 26 57352 0.119468 0.254047 0.1397754 0.0015413 -0.000048 -0.000124 0.000041 0.000036 0.0000052 0.0000212 0.000021 0.000020
2015 11 27 57353 0.118483 0.254296 0.1383466 0.0013942 -0.000058 -0.000124 0.000041 0.000036 0.0000053 0.0000213 0.000020 0.000019
2015 11 28 57354 0.117794 0.254320 0.1369809 0.0013553 -0.000068 -0.000129 0.000041 0.000036 0.0000052 0.0000213 0.000019 0.000019
2015 11 29 57355 0.116456 0.254411 0.1355925 0.0014264 -0.000078 -0.000134 0.000042 0.000036 0.0000052 0.0000214 0.000018 0.000018
2015 11 30 57356 0.114626 0.254026 0.1341180 0.0014999 -0.000088 -0.000139 0.000042 0.000036 0.0000050 0.0000215 0.000017 0.000017
2015 12 1 57357 0.112660 0.253834 0.1325841 0.0015767 -0.000098 -0.000144 0.000042 0.000036 0.0000049 0.0000217 0.000016 0.000017
2015 12 2 57358 0.110582 0.253584 0.1309677 0.0016403 -0.000086 -0.000117 0.000042 0.000036 0.0000048 0.0000218 0.000016 0.000017
2015 12 3 57359 0.108751 0.253219 0.1292905 0.0016987 -0.000067 -0.000082 0.000042 0.000036 0.0000047 0.0000220 0.000016 0.000016
2015 12 4 57360 0.107184 0.253277 0.1276066 0.0016938 0.000022 -0.000069 0.000042 0.000036 0.0000047 0.0000222 0.000016 0.000017
2015 12 5 57361 0.105955 0.253099 0.1259228 0.0016638 0.000023 -0.000075 0.000042 0.000036 0.0000046 0.0000223 0.000016 0.000017
2015 12 6 57362 0.104973 0.252908 0.1242668 0.0016525 -0.000016 -0.000087 0.000042 0.000036 0.0000046 0.0000223 0.000016 0.000017
2015 12 7 57363 0.103637 0.252704 0.1226218 0.0016787 -0.000056 -0.000098 0.000042 0.000036 0.0000046 0.0000223 0.000016 0.000017
2015 12 8 57364 0.102411 0.252173 0.1209561 0.0016652 -0.000095 -0.000109 0.000042 0.000036 0.0000045 0.0000222 0.000016 0.000017
2015 12 9 57365 0.101167 0.251588 0.1193168 0.0016225 -0.000122 -0.000069 0.000042 0.000037 0.0000045 0.0000220 0.000016 0.000017
2015 12 10 57366 0.099239 0.251226 0.1177389 0.0015619 -0.000166 -0.000081 0.000042 0.000037 0.0000045 0.0000219 0.000016 0.000017
2015 12 11 57367 0.096448 0.250751 0.1162064 0.0014793 -0.000215 -0.000113 0.000042 0.000037 0.0000045 0.0000218 0.000016 0.000017
2015 12 12 57368 0.093870 0.250481 0.1147837 0.0014297 -0.000209 -0.000125 0.000042 0.000037 0.0000046 0.0000218 0.000017 0.000018
2015 12 13 57369 0.091538 0.250499 0.1133531 0.0013910 -0.000183 -0.000130 0.000042 0.000037 0.0000047 0.0000218 0.000017 0.000018
2015 12 14 57370 0.089415 0.250557 0.1119732 0.0014111 -0.000156 -0.000135 0.000042 0.000037 0.0000049 0.0000218 0.000017 0.000019
2015 12 15 57371 0.087128 0.250719 0.1105165 0.0015100 -0.000129 -0.000139 0.000042 0.000037 0.0000052 0.0000218 0.000018 0.000020
2015 12 16 57372 0.085011 0.250367 0.1089197 0.0016307 -0.000243 0.000062 0.000042 0.000037 0.0000054 0.0000219 0.000018 0.000020
2015 12 17 57373 0.083503 0.249852 0.1072284 0.0017430 -0.000245 0.000081 0.000042 0.000037 0.0000057 0.0000220 0.000019 0.000021
2015 12 18 57374 0.082075 0.250115 0.1054011 0.0018760 -0.000144 -0.000109 0.000042 0.000037 0.0000059 0.0000221 0.000019 0.000021
2015 12 19 57375 0.080164 0.250752 0.1035078 0.0019666 -0.000117 -0.000179 0.000042 0.000037 0.0000060 0.0000222 0.000019 0.000021
2015 12 20 57376 0.078060 0.251157 0.1015048 0.0020001 -0.000122 -0.000187 0.000042 0.000037 0.0000061 0.0000222 0.000019 0.000021
2015 12 21 57377 0.075774 0.251412 0.0995028 0.0019250 -0.000128 -0.000196 0.000042 0.000037 0.0000061 0.0000223 0.000019 0.000021
2015 12 22 57378 0.073426 0.251536 0.0976242 0.0017973 -0.000133 -0.000205 0.000042 0.000037 0.0000061 0.0000223 0.000019 0.000022
2015 12 23 57379 0.071342 0.251594 0.0958754 0.0016463 -0.000068 -0.000006 0.000042 0.000037 0.0000062 0.0000222 0.000020 0.000022
2015 12 24 57380 0.069079 0.252097 0.0942958 0.0014966 -0.000050 0.000054 0.000042 0.000037 0.0000062 0.0000221 0.000020 0.000023
2015 12 25 57381 0.066462 0.252990 0.0927963 0.0014157 -0.000057 0.000043 0.000042 0.000037 0.0000061 0.0000220 0.000021 0.000023
2015 12 26 57382 0.063962 0.253383 0.0914549 0.0013974 -0.000063 0.000032 0.000042 0.000037 0.0000061 0.0000219 0.000023 0.000025
2015 12 27 57383 0.061922 0.253786 0.0900983 0.0014389 -0.000069 0.000021 0.000042 0.000037 0.0000060 0.0000218 0.000025 0.000026
2015 12 28 57384 0.059705 0.254375 0.0885900 0.0015384 -0.000076 0.000010 0.000042 0.000037 0.0000059 0.0000217 0.000027 0.000027
2015 12 29 57385 0.057554 0.254946 0.0869669 0.0016555 -0.000082 -0.000001 0.000042 0.000037 0.0000057 0.0000215 0.000029 0.000028
2015 12 30 57386 0.055411 0.255686 0.0852545 0.0017608 -0.000217 0.000064 0.000042 0.000036 0.0000055 0.0000214 0.000030 0.000029
2015 12 31 57387 0.053426 0.256136 0.0834519 0.0018661 -0.000247 0.000068 0.000042 0.000036 0.0000053 0.0000214 0.000030 0.000029
INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE
EARTH ORIENTATION PARAMETERS
EOP (IERS) 08 C04
FORMAT(3(I4),I7,2(F11.6),2(F12.7),2(F11.6),2(F11.6),2(F11.7),2(F12.6))
##################################################################################
Date MJD x y UT1-UTC LOD dX dY x Err y Err UT1-UTC Err LOD Err dX Err dY Err
" " s s " " " " s s " "
(0h UTC)
2016 1 1 57388 0.051192 0.256748 0.0815227 0.0019387 -0.000224 0.000043 0.000042 0.000036 0.0000051 0.0000213 0.000030 0.000028
2016 1 2 57389 0.048884 0.257339 0.0796099 0.0019279 -0.000202 0.000017 0.000042 0.000036 0.0000048 0.0000213 0.000029 0.000027
2016 1 3 57390 0.047084 0.257651 0.0776974 0.0019252 -0.000180 -0.000009 0.000042 0.000036 0.0000047 0.0000213 0.000027 0.000027
2016 1 4 57391 0.045708 0.258474 0.0757504 0.0019391 -0.000157 -0.000035 0.000042 0.000036 0.0000045 0.0000214 0.000027 0.000026
2016 1 5 57392 0.044165 0.260137 0.0738379 0.0018963 -0.000135 -0.000061 0.000042 0.000036 0.0000045 0.0000215 0.000026 0.000025
2016 1 6 57393 0.042274 0.261816 0.0719566 0.0018716 -0.000116 -0.000118 0.000043 0.000036 0.0000045 0.0000216 0.000025 0.000025
2016 1 7 57394 0.040643 0.263278 0.0700847 0.0018213 -0.000097 -0.000184 0.000043 0.000036 0.0000046 0.0000217 0.000024 0.000024
2016 1 8 57395 0.039552 0.265034 0.0682959 0.0017826 -0.000079 -0.000250 0.000043 0.000036 0.0000049 0.0000218 0.000023 0.000023
2016 1 9 57396 0.037981 0.267190 0.0665817 0.0017632 -0.000097 -0.000217 0.000043 0.000036 0.0000052 0.0000218 0.000022 0.000023
2016 1 10 57397 0.035902 0.268863 0.0647877 0.0017923 -0.000128 -0.000146 0.000043 0.000036 0.0000055 0.0000218 0.000021 0.000022
2016 1 11 57398 0.034247 0.270651 0.0629640 0.0018818 -0.000159 -0.000076 0.000043 0.000036 0.0000058 0.0000218 0.000021 0.000021
2016 1 12 57399 0.032744 0.272516 0.0610230 0.0019880 -0.000170 -0.000048 0.000043 0.000036 0.0000059 0.0000217 0.000020 0.000021
2016 1 13 57400 0.031082 0.274414 0.0589884 0.0021058 -0.000115 -0.000160 0.000043 0.000036 0.0000059 0.0000214 0.000020 0.000020
2016 1 14 57401 0.029457 0.275683 0.0569494 0.0022054 -0.000088 -0.000138 0.000043 0.000036 0.0000057 0.0000211 0.000019 0.000020
2016 1 15 57402 0.028261 0.276662 0.0546535 0.0022000 -0.000161 -0.000136 0.000043 0.000036 0.0000055 0.0000206 0.000019 0.000020
2016 1 16 57403 0.026706 0.278103 0.0524799 0.0021266 -0.000178 -0.000124 0.000043 0.000036 0.0000052 0.0000201 0.000019 0.000019
2016 1 17 57404 0.025055 0.279509 0.0503846 0.0020482 -0.000166 -0.000101 0.000043 0.000036 0.0000050 0.0000196 0.000019 0.000019
2016 1 18 57405 0.023259 0.281313 0.0484094 0.0019464 -0.000153 -0.000079 0.000043 0.000036 0.0000048 0.0000193 0.000019 0.000019
2016 1 19 57406 0.021331 0.283168 0.0465094 0.0018275 -0.000140 -0.000056 0.000043 0.000037 0.0000047 0.0000192 0.000019 0.000019
2016 1 20 57407 0.019010 0.285046 0.0447171 0.0016849 -0.000158 -0.000137 0.000043 0.000037 0.0000046 0.0000193 0.000019 0.000019
2016 1 21 57408 0.016469 0.286452 0.0431279 0.0015859 -0.000133 -0.000113 0.000043 0.000037 0.0000046 0.0000196 0.000019 0.000019
2016 1 22 57409 0.013864 0.287781 0.0415489 0.0015395 -0.000094 -0.000049 0.000044 0.000037 0.0000047 0.0000200 0.000019 0.000019
2016 1 23 57410 0.011033 0.288838 0.0400284 0.0015751 -0.000107 -0.000051 0.000044 0.000037 0.0000049 0.0000207 0.000019 0.000020
2016 1 24 57411 0.008536 0.289377 0.0383959 0.0016290 -0.000138 -0.000078 0.000044 0.000037 0.0000050 0.0000213 0.000019 0.000020
2016 1 25 57412 0.006775 0.289827 0.0368259 0.0016152 -0.000169 -0.000105 0.000044 0.000038 0.0000052 0.0000218 0.000019 0.000020
2016 1 26 57413 0.005656 0.290531 0.0351759 0.0016117 -0.000200 -0.000131 0.000044 0.000038 0.0000052 0.0000222 0.000019 0.000020
2016 1 27 57414 0.004681 0.291717 0.0335796 0.0016125 -0.000103 -0.000106 0.000044 0.000038 0.0000052 0.0000225 0.000019 0.000020
2016 1 28 57415 0.003500 0.292993 0.0319914 0.0015516 -0.000063 -0.000115 0.000043 0.000038 0.0000051 0.0000226 0.000019 0.000020
2016 1 29 57416 0.002324 0.294091 0.0304699 0.0015304 -0.000038 -0.000132 0.000043 0.000038 0.0000049 0.0000226 0.000019 0.000020
2016 1 30 57417 0.000874 0.295737 0.0289247 0.0014487 -0.000055 -0.000124 0.000043 0.000038 0.0000047 0.0000226 0.000019 0.000020
2016 1 31 57418 -0.001284 0.297543 0.0275506 0.0013186 -0.000087 -0.000106 0.000043 0.000038 0.0000046 0.0000226 0.000020 0.000021
2016 2 1 57419 -0.003291 0.299538 0.0262812 0.0012871 -0.000119 -0.000088 0.000042 0.000038 0.0000044 0.0000226 0.000021 0.000021
2016 2 2 57420 -0.004753 0.301342 0.0249960 0.0012581 -0.000151 -0.000070 0.000042 0.000038 0.0000043 0.0000226 0.000021 0.000021
2016 2 3 57421 -0.005723 0.302650 0.0238278 0.0012101 -0.000125 -0.000070 0.000042 0.000038 0.0000043 0.0000227 0.000022 0.000022
2016 2 4 57422 -0.006419 0.304497 0.0226256 0.0011848 -0.000105 -0.000080 0.000042 0.000038 0.0000044 0.0000228 0.000022 0.000022
2016 2 5 57423 -0.007479 0.306467 0.0213895 0.0011833 -0.000090 -0.000092 0.000042 0.000038 0.0000045 0.0000229 0.000023 0.000022
2016 2 6 57424 -0.008648 0.308133 0.0201540 0.0013129 -0.000103 -0.000100 0.000042 0.000038 0.0000046 0.0000230 0.000023 0.000022
2016 2 7 57425 -0.009562 0.309800 0.0187240 0.0015112 -0.000126 -0.000107 0.000042 0.000038 0.0000047 0.0000231 0.000023 0.000022
2016 2 8 57426 -0.009605 0.311454 0.0171274 0.0016999 -0.000148 -0.000112 0.000042 0.000038 0.0000048 0.0000232 0.000023 0.000023
2016 2 9 57427 -0.009693 0.313159 0.0153236 0.0018830 -0.000171 -0.000119 0.000042 0.000038 0.0000049 0.0000233 0.000023 0.000023
2016 2 10 57428 -0.009850 0.314970 0.0133076 0.0020455 -0.000187 -0.000050 0.000042 0.000038 0.0000050 0.0000235 0.000024 0.000023
2016 2 11 57429 -0.010523 0.317115 0.0112435 0.0020899 -0.000215 -0.000053 0.000042 0.000037 0.0000051 0.0000236 0.000024 0.000024
2016 2 12 57430 -0.011203 0.319000 0.0091456 0.0020529 -0.000247 -0.000084 0.000042 0.000037 0.0000052 0.0000237 0.000025 0.000024
2016 2 13 57431 -0.011886 0.321069 0.0071327 0.0019533 -0.000247 -0.000082 0.000042 0.000037 0.0000054 0.0000238 0.000026 0.000025
2016 2 14 57432 -0.012447 0.323270 0.0052530 0.0018166 -0.000235 -0.000070 0.000042 0.000037 0.0000054 0.0000239 0.000027 0.000026
2016 2 15 57433 -0.013068 0.325382 0.0035053 0.0016672 -0.000224 -0.000057 0.000042 0.000037 0.0000055 0.0000239 0.000028 0.000027
2016 2 16 57434 -0.013915 0.327075 0.0019129 0.0015250 -0.000212 -0.000044 0.000041 0.000037 0.0000055 0.0000239 0.000029 0.000028
2016 2 17 57435 -0.014731 0.328473 0.0004621 0.0013770 -0.000220 0.000054 0.000041 0.000037 0.0000055 0.0000238 0.000029 0.000028
2016 2 18 57436 -0.015932 0.330416 -0.0008748 0.0012882 -0.000149 -0.000010 0.000041 0.000037 0.0000054 0.0000238 0.000029 0.000028
2016 2 19 57437 -0.017366 0.332402 -0.0021565 0.0012939 -0.000053 -0.000127 0.000041 0.000037 0.0000053 0.0000237 0.000029 0.000028
2016 2 20 57438 -0.018643 0.334093 -0.0034510 0.0013757 -0.000056 -0.000140 0.000042 0.000037 0.0000051 0.0000236 0.000029 0.000027
2016 2 21 57439 -0.019326 0.335460 -0.0048802 0.0014925 -0.000096 -0.000113 0.000042 0.000037 0.0000050 0.0000235 0.000028 0.000027
2016 2 22 57440 -0.019866 0.337622 -0.0064333 0.0015967 -0.000136 -0.000087 0.000042 0.000037 0.0000049 0.0000235 0.000028 0.000027
2016 2 23 57441 -0.020901 0.339831 -0.0080735 0.0016757 -0.000176 -0.000060 0.000042 0.000036 0.0000048 0.0000235 0.000028 0.000026
2016 2 24 57442 -0.021620 0.342061 -0.0098282 0.0017449 -0.000380 0.000080 0.000042 0.000036 0.0000047 0.0000235 0.000028 0.000026
2016 2 25 57443 -0.021906 0.344417 -0.0115525 0.0018338 -0.000315 0.000115 0.000042 0.000036 0.0000046 0.0000235 0.000028 0.000026
2016 2 26 57444 -0.022015 0.346306 -0.0134217 0.0018335 -0.000202 -0.000010 0.000042 0.000036 0.0000046 0.0000236 0.000027 0.000026
2016 2 27 57445 -0.022268 0.348403 -0.0152149 0.0017669 -0.000169 -0.000068 0.000042 0.000036 0.0000046 0.0000237 0.000026 0.000025
2016 2 28 57446 -0.023224 0.350814 -0.0169788 0.0017221 -0.000159 -0.000088 0.000042 0.000036 0.0000045 0.0000238 0.000026 0.000024
2016 2 29 57447 -0.024248 0.352864 -0.0186919 0.0017159 -0.000149 -0.000107 0.000042 0.000036 0.0000044 0.0000240 0.000025 0.000024
2016 3 1 57448 -0.024924 0.354450 -0.0203692 0.0016585 -0.000138 -0.000127 0.000042 0.000036 0.0000044 0.0000242 0.000024 0.000023
2016 3 2 57449 -0.024691 0.355901 -0.0219835 0.0016741 -0.000114 -0.000088 0.000042 0.000036 0.0000043 0.0000244 0.000023 0.000022
2016 3 3 57450 -0.023997 0.357828 -0.0236783 0.0017145 -0.000086 -0.000033 0.000042 0.000036 0.0000043 0.0000247 0.000023 0.000021
2016 3 4 57451 -0.023639 0.360189 -0.0254408 0.0017376 -0.000058 0.000021 0.000042 0.000036 0.0000042 0.0000250 0.000022 0.000021
2016 3 5 57452 -0.023780 0.362634 -0.0272280 0.0018614 -0.000041 0.000011 0.000042 0.000037 0.0000042 0.0000254 0.000022 0.000020
2016 3 6 57453 -0.023652 0.365027 -0.0292095 0.0020493 -0.000028 -0.000022 0.000043 0.000037 0.0000041 0.0000257 0.000022 0.000020
2016 3 7 57454 -0.024020 0.367580 -0.0313538 0.0022002 -0.000015 -0.000056 0.000043 0.000037 0.0000041 0.0000259 0.000021 0.000020
2016 3 8 57455 -0.024453 0.370046 -0.0335645 0.0022925 -0.000002 -0.000089 0.000043 0.000037 0.0000041 0.0000261 0.000021 0.000020
2016 3 9 57456 -0.024839 0.372514 -0.0359344 0.0023896 -0.000031 -0.000071 0.000043 0.000036 0.0000042 0.0000261 0.000021 0.000020
2016 3 10 57457 -0.025099 0.374927 -0.0383581 0.0024751 -0.000071 -0.000038 0.000043 0.000036 0.0000043 0.0000259 0.000022 0.000020
2016 3 11 57458 -0.025070 0.377065 -0.0408637 0.0024456 -0.000111 -0.000006 0.000043 0.000036 0.0000044 0.0000256 0.000022 0.000021
2016 3 12 57459 -0.025173 0.378947 -0.0432770 0.0023506 -0.000109 0.000007 0.000043 0.000036 0.0000045 0.0000252 0.000023 0.000022
2016 3 13 57460 -0.025263 0.380807 -0.0455819 0.0022077 -0.000091 0.000013 0.000043 0.000036 0.0000046 0.0000249 0.000023 0.000023
2016 3 14 57461 -0.024789 0.382604 -0.0477471 0.0020830 -0.000073 0.000019 0.000043 0.000036 0.0000048 0.0000247 0.000024 0.000024
2016 3 15 57462 -0.024001 0.384765 -0.0497714 0.0019397 -0.000055 0.000025 0.000043 0.000037 0.0000049 0.0000246 0.000025 0.000025
2016 3 16 57463 -0.022791 0.387141 -0.0516346 0.0018420 -0.000148 0.000080 0.000043 0.000037 0.0000051 0.0000245 0.000026 0.000025
2016 3 17 57464 -0.020842 0.389449 -0.0534475 0.0018275 -0.000269 0.000146 0.000043 0.000037 0.0000053 0.0000245 0.000027 0.000026
2016 3 18 57465 -0.018331 0.392014 -0.0552911 0.0018242 -0.000140 0.000116 0.000042 0.000037 0.0000055 0.0000244 0.000028 0.000028
2016 3 19 57466 -0.016085 0.394476 -0.0571403 0.0018940 -0.000102 0.000075 0.000042 0.000037 0.0000058 0.0000242 0.000030 0.000029
2016 3 20 57467 -0.014474 0.396975 -0.0590949 0.0019937 -0.000127 0.000041 0.000042 0.000037 0.0000061 0.0000239 0.000033 0.000031
2016 3 21 57468 -0.013667 0.399504 -0.0611053 0.0020831 -0.000153 0.000008 0.000042 0.000037 0.0000063 0.0000235 0.000035 0.000032
2016 3 22 57469 -0.013497 0.402067 -0.0631832 0.0021006 -0.000179 -0.000026 0.000041 0.000037 0.0000066 0.0000231 0.000038 0.000034
2016 3 23 57470 -0.013647 0.404400 -0.0652885 0.0020802 -0.000226 0.000133 0.000041 0.000037 0.0000067 0.0000226 0.000041 0.000036
2016 3 24 57471 -0.013657 0.406400 -0.0673452 0.0020184 -0.000255 0.000150 0.000040 0.000037 0.0000068 0.0000222 0.000043 0.000037
2016 3 25 57472 -0.013267 0.408429 -0.0693305 0.0020241 -0.000249 0.000121 0.000040 0.000037 0.0000067 0.0000218 0.000043 0.000038
2016 3 26 57473 -0.012632 0.410456 -0.0713826 0.0020437 -0.000232 0.000095 0.000040 0.000037 0.0000066 0.0000214 0.000041 0.000037
2016 3 27 57474 -0.011831 0.412651 -0.0733875 0.0019734 -0.000216 0.000070 0.000040 0.000037 0.0000064 0.0000212 0.000038 0.000035
2016 3 28 57475 -0.011105 0.414517 -0.0753416 0.0018838 -0.000199 0.000044 0.000040 0.000037 0.0000061 0.0000210 0.000035 0.000033
2016 3 29 57476 -0.010240 0.416349 -0.0771835 0.0018231 -0.000182 0.000019 0.000040 0.000037 0.0000058 0.0000210 0.000032 0.000031
2016 3 30 57477 -0.009342 0.418025 -0.0789539 0.0017625 -0.000165 -0.000007 0.000040 0.000037 0.0000055 0.0000211 0.000030 0.000030
2016 3 31 57478 -0.008698 0.419749 -0.0807084 0.0017400 -0.000133 0.000008 0.000040 0.000037 0.0000053 0.0000213 0.000029 0.000029
2016 4 1 57479 -0.008411 0.421218 -0.0824621 0.0017695 -0.000098 0.000033 0.000041 0.000037 0.0000052 0.0000215 0.000028 0.000029
2016 4 2 57480 -0.008084 0.422691 -0.0842463 0.0018530 -0.000087 0.000018 0.000041 0.000037 0.0000051 0.0000218 0.000028 0.000029
2016 4 3 57481 -0.007601 0.424120 -0.0861539 0.0019491 -0.000084 -0.000011 0.000042 0.000037 0.0000051 0.0000221 0.000028 0.000030
2016 4 4 57482 -0.006471 0.425825 -0.0881492 0.0020879 -0.000082 -0.000040 0.000042 0.000037 0.0000051 0.0000224 0.000028 0.000031
2016 4 5 57483 -0.004770 0.427896 -0.0902897 0.0022231 -0.000079 -0.000069 0.000042 0.000038 0.0000052 0.0000226 0.000029 0.000031
2016 4 6 57484 -0.002512 0.429860 -0.0925838 0.0023292 -0.000111 0.000062 0.000042 0.000038 0.0000053 0.0000228 0.000029 0.000032
2016 4 7 57485 -0.000718 0.432209 -0.0949386 0.0023391 -0.000076 0.000122 0.000042 0.000038 0.0000054 0.0000231 0.000029 0.000032
2016 4 8 57486 0.000683 0.434742 -0.0972745 0.0023196 -0.000124 0.000051 0.000042 0.000038 0.0000056 0.0000233 0.000029 0.000033
2016 4 9 57487 0.002092 0.437126 -0.0995873 0.0022204 -0.000129 0.000046 0.000042 0.000038 0.0000058 0.0000236 0.000028 0.000033
2016 4 10 57488 0.003351 0.439048 -0.1017375 0.0020369 -0.000104 0.000077 0.000042 0.000038 0.0000060 0.0000239 0.000028 0.000033
2016 4 11 57489 0.004600 0.440984 -0.1036532 0.0018561 -0.000079 0.000108 0.000042 0.000038 0.0000063 0.0000241 0.000028 0.000033
2016 4 12 57490 0.006136 0.442704 -0.1054682 0.0017349 -0.000055 0.000139 0.000042 0.000038 0.0000065 0.0000243 0.000028 0.000032
2016 4 13 57491 0.007806 0.444226 -0.1071712 0.0016287 0.000156 0.000214 0.000042 0.000038 0.0000066 0.0000243 0.000028 0.000032
2016 4 14 57492 0.009124 0.445648 -0.1087689 0.0015508 0.000137 0.000177 0.000042 0.000038 0.0000066 0.0000241 0.000027 0.000031
2016 4 15 57493 0.010474 0.447430 -0.1103103 0.0015721 0.000037 0.000103 0.000042 0.000038 0.0000066 0.0000239 0.000027 0.000030
2016 4 16 57494 0.011955 0.449626 -0.1118877 0.0016227 0.000009 0.000084 0.000042 0.000037 0.0000065 0.0000236 0.000027 0.000028
2016 4 17 57495 0.013637 0.451920 -0.1135633 0.0016460 0.000007 0.000085 0.000042 0.000037 0.0000064 0.0000233 0.000026 0.000027
2016 4 18 57496 0.015491 0.454113 -0.1151881 0.0017156 0.000005 0.000087 0.000042 0.000037 0.0000062 0.0000230 0.000026 0.000026
2016 4 19 57497 0.017083 0.455931 -0.1168915 0.0017489 0.000004 0.000088 0.000042 0.000037 0.0000061 0.0000228 0.000025 0.000025
2016 4 20 57498 0.018542 0.456814 -0.1186454 0.0017370 0.000011 0.000136 0.000042 0.000037 0.0000060 0.0000225 0.000025 0.000025
2016 4 21 57499 0.020298 0.457636 -0.1203445 0.0016894 0.000004 0.000097 0.000042 0.000037 0.0000060 0.0000224 0.000025 0.000025
2016 4 22 57500 0.022064 0.458678 -0.1219740 0.0016452 -0.000007 0.000029 0.000042 0.000037 0.0000060 0.0000222 0.000026 0.000025
2016 4 23 57501 0.024090 0.460211 -0.1235769 0.0016146 0.000001 0.000029 0.000042 0.000037 0.0000061 0.0000221 0.000027 0.000026
2016 4 24 57502 0.025818 0.461885 -0.1251333 0.0014828 0.000017 0.000054 0.000042 0.000037 0.0000061 0.0000220 0.000028 0.000027
2016 4 25 57503 0.027086 0.463485 -0.1265303 0.0013193 0.000032 0.000078 0.000041 0.000037 0.0000061 0.0000219 0.000029 0.000029
2016 4 26 57504 0.028079 0.465369 -0.1278138 0.0012213 0.000047 0.000103 0.000041 0.000037 0.0000061 0.0000218 0.000030 0.000030
2016 4 27 57505 0.028863 0.467031 -0.1290307 0.0012383 0.000062 0.000128 0.000041 0.000037 0.0000061 0.0000218 0.000032 0.000032
2016 4 28 57506 0.029725 0.468559 -0.1303085 0.0013305 0.000084 0.000137 0.000041 0.000037 0.0000060 0.0000218 0.000033 0.000034
2016 4 29 57507 0.030553 0.469934 -0.1317143 0.0014393 0.000108 0.000142 0.000041 0.000037 0.0000061 0.0000219 0.000033 0.000035
2016 4 30 57508 0.032131 0.470866 -0.1331825 0.0015612 0.000098 0.000140 0.000041 0.000037 0.0000062 0.0000219 0.000034 0.000035
2016 5 1 57509 0.034568 0.472259 -0.1348235 0.0017057 0.000075 0.000136 0.000041 0.000037 0.0000063 0.0000219 0.000034 0.000036
2016 5 2 57510 0.036708 0.474011 -0.1365813 0.0018521 0.000053 0.000131 0.000042 0.000037 0.0000066 0.0000218 0.000035 0.000037
2016 5 3 57511 0.038586 0.475560 -0.1385302 0.0020445 0.000030 0.000127 0.000042 0.000038 0.0000068 0.0000217 0.000035 0.000038
2016 5 4 57512 0.040681 0.476852 -0.1406614 0.0021869 0.000008 0.000123 0.000042 0.000038 0.0000071 0.0000216 0.000036 0.000039
2016 5 5 57513 0.042346 0.478022 -0.1428618 0.0021825 0.000122 0.000088 0.000042 0.000038 0.0000074 0.0000216 0.000037 0.000041
2016 5 6 57514 0.043440 0.479085 -0.1450110 0.0020885 0.000272 0.000045 0.000042 0.000038 0.0000076 0.0000216 0.000038 0.000043
2016 5 7 57515 0.044916 0.480217 -0.1470091 0.0019453 0.000277 0.000052 0.000042 0.000038 0.0000078 0.0000216 0.000038 0.000045
2016 5 8 57516 0.046610 0.481535 -0.1488921 0.0017681 0.000229 0.000077 0.000042 0.000038 0.0000080 0.0000217 0.000039 0.000047
2016 5 9 57517 0.048358 0.482854 -0.1505476 0.0015860 0.000181 0.000102 0.000042 0.000038 0.0000081 0.0000219 0.000039 0.000049
2016 5 10 57518 0.050208 0.484136 -0.1520710 0.0014446 0.000133 0.000127 0.000041 0.000037 0.0000082 0.0000219 0.000039 0.000050
2016 5 11 57519 0.052256 0.485299 -0.1534758 0.0013773 0.000015 0.000148 0.000041 0.000037 0.0000083 0.0000219 0.000038 0.000051
2016 5 12 57520 0.054310 0.486370 -0.1548622 0.0013825 -0.000121 0.000169 0.000040 0.000037 0.0000083 0.0000218 0.000038 0.000051
2016 5 13 57521 0.056404 0.487318 -0.1562674 0.0014833 -0.000116 0.000138 0.000040 0.000037 0.0000083 0.0000217 0.000037 0.000050
2016 5 14 57522 0.058449 0.488227 -0.1578078 0.0015993 -0.000089 0.000111 0.000040 0.000037 0.0000083 0.0000216 0.000037 0.000049
2016 5 15 57523 0.060489 0.488845 -0.1594425 0.0016889 -0.000070 0.000091 0.000040 0.000037 0.0000082 0.0000215 0.000036 0.000047
2016 5 16 57524 0.062541 0.489123 -0.1611736 0.0017588 -0.000052 0.000071 0.000040 0.000037 0.0000081 0.0000214 0.000035 0.000046
2016 5 17 57525 0.064596 0.489631 -0.1629401 0.0017694 -0.000033 0.000052 0.000041 0.000037 0.0000079 0.0000215 0.000035 0.000044
2016 5 18 57526 0.066405 0.490356 -0.1646544 0.0016973 -0.000015 0.000032 0.000041 0.000037 0.0000078 0.0000215 0.000035 0.000044
2016 5 19 57527 0.068072 0.491169 -0.1662751 0.0016208 0.000069 0.000113 0.000041 0.000037 0.0000077 0.0000215 0.000035 0.000044
2016 5 20 57528 0.069465 0.492157 -0.1678518 0.0015314 0.000171 0.000220 0.000042 0.000037 0.0000077 0.0000215 0.000036 0.000044
2016 5 21 57529 0.070490 0.493108 -0.1693837 0.0014891 0.000182 0.000225 0.000042 0.000037 0.0000077 0.0000215 0.000037 0.000045
2016 5 22 57530 0.071177 0.493705 -0.1708579 0.0014614 0.000159 0.000193 0.000042 0.000037 0.0000078 0.0000214 0.000038 0.000046
2016 5 23 57531 0.072365 0.493821 -0.1722878 0.0014738 0.000136 0.000160 0.000042 0.000037 0.0000080 0.0000214 0.000040 0.000047
2016 5 24 57532 0.074321 0.494178 -0.1737417 0.0014532 0.000113 0.000127 0.000042 0.000037 0.0000082 0.0000213 0.000041 0.000049
2016 5 25 57533 0.076385 0.494842 -0.1751964 0.0013919 0.000027 0.000154 0.000042 0.000037 0.0000084 0.0000212 0.000042 0.000049
2016 5 26 57534 0.078772 0.495446 -0.1765603 0.0013722 -0.000076 0.000195 0.000041 0.000037 0.0000086 0.0000212 0.000043 0.000049
2016 5 27 57535 0.080936 0.496149 -0.1779234 0.0014259 -0.000179 0.000237 0.000041 0.000037 0.0000088 0.0000213 0.000042 0.000048
2016 5 28 57536 0.082725 0.496557 -0.1794009 0.0015311 -0.000175 0.000226 0.000041 0.000038 0.0000089 0.0000214 0.000041 0.000045
2016 5 29 57537 0.084953 0.496716 -0.1809563 0.0016745 -0.000132 0.000197 0.000041 0.000038 0.0000089 0.0000216 0.000039 0.000042
2016 5 30 57538 0.087852 0.496543 -0.1827330 0.0017848 -0.000086 0.000163 0.000041 0.000037 0.0000087 0.0000215 0.000037 0.000044
2016 5 31 57539 0.090449 0.496520 -0.1845656 0.0018361 -0.000044 0.000135 0.000041 0.000038 0.0000084 0.0000216 0.000034 0.000042
2016 6 1 57540 0.092811 0.496627 -0.1863573 0.0018505 -0.000002 0.000106 0.000041 0.000038 0.0000082 0.0000217 0.000031 0.000040
2016 6 2 57541 0.095142 0.496954 -0.1881951 0.0018034 0.000056 0.000082 0.000042 0.000037 0.0000079 0.0000217 0.000027 0.000039
2016 6 3 57542 0.097085 0.497198 -0.1899368 0.0016599 0.000119 0.000060 0.000042 0.000038 0.0000077 0.0000216 0.000025 0.000037
2016 6 4 57543 0.098855 0.497407 -0.1914948 0.0014486 0.000132 0.000047 0.000042 0.000038 0.0000076 0.0000216 0.000023 0.000035
2016 6 5 57544 0.100111 0.497487 -0.1928438 0.0012462 0.000127 0.000039 0.000042 0.000038 0.0000075 0.0000216 0.000021 0.000034
2016 6 6 57545 0.101542 0.497506 -0.1940884 0.0011521 0.000120 0.000029 0.000042 0.000037 0.0000074 0.0000204 0.000029 0.000034
2016 6 7 57546 0.102732 0.497897 -0.1951955 0.0010516 0.000115 0.000020 0.000042 0.000037 0.0000072 0.0000208 0.000027 0.000031
2016 6 8 57547 0.103655 0.497923 -0.1961933 0.0009801 0.000110 0.000012 0.000042 0.000037 0.0000067 0.0000210 0.000026 0.000030
2016 6 9 57548 0.104843 0.497744 -0.1971955 0.0009288 0.000124 0.000039 0.000042 0.000037 0.0000065 0.0000209 0.000025 0.000029
2016 6 10 57549 0.106099 0.497199 -0.1981290 0.0009072 0.000143 0.000076 0.000042 0.000037 0.0000063 0.0000210 0.000024 0.000028
2016 6 11 57550 0.107658 0.496365 -0.1990509 0.0009016 0.000126 0.000078 0.000043 0.000038 0.0000062 0.0000210 0.000023 0.000027
2016 6 12 57551 0.109472 0.495358 -0.1999818 0.0008965 0.000097 0.000069 0.000043 0.000038 0.0000060 0.0000212 0.000022 0.000026
2016 6 13 57552 0.112205 0.494198 -0.2008783 0.0008530 0.000065 0.000059 0.000042 0.000038 0.0000059 0.0000211 0.000023 0.000026
2016 6 14 57553 0.115224 0.493967 -0.2016865 0.0007766 0.000038 0.000049 0.000042 0.000038 0.0000058 0.0000213 0.000022 0.000025
2016 6 15 57554 0.118004 0.494529 -0.2024448 0.0006857 0.000045 0.000041 0.000042 0.000038 0.0000057 0.0000214 0.000021 0.000024
2016 6 16 57555 0.120758 0.494841 -0.2030978 0.0005615 0.000062 0.000034 0.000041 0.000038 0.0000056 0.0000216 0.000022 0.000024
2016 6 17 57556 0.123707 0.494587 -0.2036267 0.0004808 0.000078 0.000026 0.000041 0.000038 0.0000055 0.0000217 0.000022 0.000024
2016 6 18 57557 0.126322 0.494015 -0.2040509 0.0003784 0.000094 0.000019 0.000041 0.000038 0.0000054 0.0000218 0.000023 0.000024
2016 6 19 57558 0.128283 0.493229 -0.2043703 0.0002979 0.000110 0.000011 0.000040 0.000038 0.0000054 0.0000219 0.000025 0.000025
2016 6 20 57559 0.130444 0.492181 -0.2046364 0.0002322 0.000121 0.000005 0.000040 0.000038 0.0000055 0.0000220 0.000029 0.000027
2016 6 21 57560 0.132244 0.491491 -0.2048536 0.0002252 0.000136 -0.000002 0.000040 0.000038 0.0000056 0.0000220 0.000032 0.000029
2016 6 22 57561 0.134133 0.490650 -0.2050465 0.0002926 0.000131 0.000083 0.000040 0.000038 0.0000055 0.0000224 0.000035 0.000032
2016 6 23 57562 0.136462 0.490218 -0.2054330 0.0004073 0.000121 0.000192 0.000040 0.000038 0.0000057 0.0000222 0.000038 0.000035
2016 6 24 57563 0.138723 0.489571 -0.2058968 0.0005431 0.000107 0.000177 0.000039 0.000038 0.0000059 0.0000220 0.000040 0.000037
2016 6 25 57564 0.140680 0.488915 -0.2065243 0.0007173 0.000092 0.000121 0.000039 0.000038 0.0000061 0.0000217 0.000040 0.000040
2016 6 26 57565 0.142536 0.488733 -0.2073158 0.0008896 0.000077 0.000065 0.000040 0.000038 0.0000063 0.0000214 0.000039 0.000040
2016 6 27 57566 0.144423 0.488176 -0.2083025 0.0010182 0.000071 0.000004 0.000039 0.000038 0.0000065 0.0000207 0.000035 0.000039
2016 6 28 57567 0.146429 0.487234 -0.2093296 0.0011035 0.000058 -0.000053 0.000039 0.000037 0.0000066 0.0000205 0.000031 0.000035
2016 6 29 57568 0.148617 0.486283 -0.2104126 0.0011016 0.000051 -0.000064 0.000039 0.000037 0.0000066 0.0000203 0.000037 0.000044
2016 6 30 57569 0.150282 0.485394 -0.2114899 0.0010147 0.000045 -0.000063 0.000039 0.000037 0.0000067 0.0000201 0.000034 0.000041
2016 7 1 57570 0.152170 0.483898 -0.2124527 0.0009294 0.000039 -0.000061 0.000039 0.000037 0.0000068 0.0000201 0.000032 0.000037
2016 7 2 57571 0.154471 0.482588 -0.2133200 0.0008298 0.000033 -0.000060 0.000039 0.000037 0.0000068 0.0000201 0.000029 0.000033
2016 7 3 57572 0.156598 0.481581 -0.2141277 0.0007178 0.000027 -0.000059 0.000039 0.000037 0.0000069 0.0000202 0.000027 0.000030
2016 7 4 57573 0.158596 0.480596 -0.2147591 0.0006080 0.000021 -0.000058 0.000039 0.000037 0.0000064 0.0000204 0.000021 0.000023
2016 7 5 57574 0.160581 0.479565 -0.2153081 0.0005503 0.000015 -0.000057 0.000039 0.000037 0.0000063 0.0000205 0.000020 0.000022
2016 7 6 57575 0.162496 0.478474 -0.2158672 0.0005186 0.000103 -0.000011 0.000039 0.000037 0.0000063 0.0000207 0.000022 0.000024
2016 7 7 57576 0.164394 0.477343 -0.2163752 0.0005161 0.000216 0.000047 0.000040 0.000037 0.0000063 0.0000208 0.000022 0.000024
2016 7 8 57577 0.166448 0.476329 -0.2169021 0.0005582 0.000219 0.000047 0.000040 0.000037 0.0000063 0.0000210 0.000021 0.000023
2016 7 9 57578 0.168610 0.475172 -0.2175152 0.0006023 0.000186 0.000029 0.000041 0.000038 0.0000063 0.0000211 0.000021 0.000023
2016 7 10 57579 0.171376 0.473679 -0.2181624 0.0006066 0.000152 0.000010 0.000042 0.000038 0.0000064 0.0000213 0.000021 0.000022
2016 7 11 57580 0.174133 0.472297 -0.2186829 0.0005217 0.000111 -0.000011 0.000042 0.000037 0.0000065 0.0000213 0.000023 0.000023
2016 7 12 57581 0.176866 0.471119 -0.2191433 0.0004396 0.000072 -0.000030 0.000042 0.000037 0.0000066 0.0000213 0.000023 0.000022
2016 7 13 57582 0.179326 0.470253 -0.2195596 0.0003688 0.000071 -0.000041 0.000042 0.000037 0.0000067 0.0000214 0.000025 0.000024
2016 7 14 57583 0.181011 0.469217 -0.2198827 0.0002382 0.000080 -0.000049 0.000042 0.000037 0.0000068 0.0000214 0.000025 0.000024
2016 7 15 57584 0.182783 0.468072 -0.2200479 0.0000898 0.000089 -0.000057 0.000042 0.000038 0.0000068 0.0000214 0.000025 0.000023
2016 7 16 57585 0.184908 0.466714 -0.2200630 0.0000048 0.000097 -0.000065 0.000041 0.000038 0.0000069 0.0000214 0.000025 0.000022
2016 7 17 57586 0.187160 0.465516 -0.2200451 -0.0000245 0.000106 -0.000073 0.000041 0.000038 0.0000069 0.0000214 0.000023 0.000021
2016 7 18 57587 0.189629 0.464286 -0.2200336 -0.0000156 0.000114 -0.000082 0.000041 0.000038 0.0000069 0.0000214 0.000026 0.000023
2016 7 19 57588 0.192218 0.463087 -0.2200072 0.0000503 0.000122 -0.000089 0.000041 0.000038 0.0000068 0.0000215 0.000025 0.000022
2016 7 20 57589 0.194398 0.461969 -0.2200787 0.0001355 0.000120 -0.000090 0.000042 0.000039 0.0000067 0.0000217 0.000023 0.000021
2016 7 21 57590 0.196209 0.460950 -0.2202607 0.0002237 0.000116 -0.000089 0.000043 0.000040 0.0000066 0.0000221 0.000020 0.000019
2016 7 22 57591 0.198086 0.459731 -0.2205736 0.0003584 0.000113 -0.000088 0.000044 0.000042 0.0000064 0.0000226 0.000018 0.000018
2016 7 23 57592 0.200181 0.458616 -0.2209836 0.0004546 0.000109 -0.000088 0.000046 0.000044 0.0000063 0.0000233 0.000017 0.000016
2016 7 24 57593 0.202241 0.457580 -0.2214412 0.0005103 0.000105 -0.000087 0.000049 0.000047 0.0000061 0.0000240 0.000015 0.000015
2016 7 25 57594 0.204257 0.456654 -0.2220002 0.0005638 0.000101 -0.000059 0.000040 0.000037 0.0000058 0.0000206 0.000017 0.000017
2016 7 26 57595 0.206121 0.455997 -0.2225987 0.0005926 0.000098 -0.000082 0.000040 0.000037 0.0000059 0.0000204 0.000017 0.000017
2016 7 27 57596 0.207505 0.455132 -0.2232011 0.0005739 0.000097 -0.000078 0.000040 0.000037 0.0000060 0.0000201 0.000016 0.000017
2016 7 28 57597 0.208804 0.454230 -0.2237757 0.0005478 0.000096 -0.000066 0.000040 0.000037 0.0000062 0.0000198 0.000017 0.000017
2016 7 29 57598 0.210095 0.453169 -0.2242930 0.0004710 0.000095 -0.000055 0.000040 0.000037 0.0000065 0.0000196 0.000017 0.000018
2016 7 30 57599 0.211489 0.451842 -0.2247073 0.0003990 0.000094 -0.000044 0.000041 0.000037 0.0000068 0.0000195 0.000019 0.000019
2016 7 31 57600 0.212567 0.450630 -0.2250793 0.0003475 0.000093 -0.000032 0.000041 0.000037 0.0000071 0.0000196 0.000021 0.000021
2016 8 1 57601 0.213191 0.449351 -0.2254321 0.0003672 0.000092 -0.000021 0.000041 0.000037 0.0000074 0.0000196 0.000023 0.000022
2016 8 2 57602 0.213304 0.448071 -0.2258343 0.0004298 0.000092 -0.000010 0.000041 0.000037 0.0000076 0.0000199 0.000023 0.000023
2016 8 3 57603 0.214358 0.446083 -0.2263575 0.0005436 0.000094 -0.000011 0.000041 0.000037 0.0000073 0.0000204 0.000020 0.000020
2016 8 4 57604 0.215792 0.444685 -0.2269202 0.0006077 0.000096 -0.000016 0.000041 0.000038 0.0000073 0.0000206 0.000020 0.000020
2016 8 5 57605 0.217119 0.443279 -0.2275827 0.0006467 0.000099 -0.000021 0.000041 0.000038 0.0000074 0.0000209 0.000020 0.000020
2016 8 6 57606 0.218386 0.442123 -0.2282619 0.0006955 0.000102 -0.000025 0.000041 0.000038 0.0000074 0.0000212 0.000021 0.000021
2016 8 7 57607 0.219400 0.440574 -0.2289634 0.0007131 0.000104 -0.000030 0.000042 0.000039 0.0000074 0.0000215 0.000021 0.000021
2016 8 8 57608 0.220583 0.439103 -0.2296718 0.0006977 0.000118 -0.000036 0.000023 0.000021 0.0000032 0.0000123 0.000018 0.000017
2016 8 9 57609 0.221589 0.437692 -0.2303625 0.0006534 0.000114 -0.000053 0.000023 0.000021 0.0000033 0.0000124 0.000018 0.000017
2016 8 10 57610 0.222638 0.436069 -0.2310476 0.0006394 0.000109 -0.000080 0.000031 0.000027 0.0000066 0.0000190 0.000036 0.000035
2016 8 11 57611 0.223407 0.434281 -0.2316284 0.0005453 0.000101 -0.000111 0.000031 0.000027 0.0000067 0.0000192 0.000037 0.000036
2016 8 12 57612 0.224367 0.432053 -0.2320804 0.0004180 0.000092 -0.000141 0.000032 0.000027 0.0000068 0.0000195 0.000038 0.000036
2016 8 13 57613 0.225439 0.429785 -0.2324432 0.0003063 0.000084 -0.000172 0.000033 0.000027 0.0000069 0.0000198 0.000038 0.000037
2016 8 14 57614 0.225998 0.427451 -0.2327313 0.0002609 0.000076 -0.000202 0.000034 0.000028 0.0000070 0.0000201 0.000039 0.000038
2016 8 15 57615 0.226133 0.425003 -0.2329816 0.0003008 0.000057 -0.000168 0.000035 0.000029 0.0000069 0.0000200 0.000035 0.000032
2016 8 16 57616 0.226465 0.422460 -0.2333170 0.0004153 0.000057 -0.000226 0.000035 0.000029 0.0000070 0.0000202 0.000035 0.000033
2016 8 17 57617 0.226721 0.420211 -0.2337884 0.0005508 0.000058 -0.000284 0.000035 0.000030 0.0000071 0.0000204 0.000037 0.000035
2016 8 18 57618 0.226917 0.418138 -0.2344143 0.0007058 0.000121 -0.000102 0.000036 0.000030 0.0000072 0.0000206 0.000038 0.000035
2016 8 19 57619 0.227327 0.416103 -0.2352406 0.0009099 0.000194 -0.000077 0.000036 0.000030 0.0000073 0.0000209 0.000038 0.000035
2016 8 20 57620 0.227569 0.414253 -0.2362207 0.0010253 0.000193 -0.000085 0.000036 0.000031 0.0000074 0.0000211 0.000038 0.000036
2016 8 21 57621 0.227662 0.412192 -0.2373304 0.0010963 0.000165 -0.000081 0.000037 0.000031 0.0000075 0.0000214 0.000039 0.000036
2016 8 22 57622 0.227893 0.410262 -0.2384286 0.0011263 0.000138 -0.000079 0.000035 0.000029 0.0000076 0.0000204 0.000040 0.000038
2016 8 23 57623 0.228268 0.407929 -0.2395340 0.0010774 0.000109 -0.000074 0.000035 0.000029 0.0000076 0.0000206 0.000041 0.000039
2016 8 24 57624 0.229234 0.405703 -0.2405792 0.0009961 0.000103 -0.000078 0.000036 0.000029 0.0000077 0.0000208 0.000039 0.000035
2016 8 25 57625 0.230287 0.403864 -0.2415054 0.0008653 0.000102 -0.000085 0.000036 0.000030 0.0000078 0.0000210 0.000039 0.000036
2016 8 26 57626 0.231434 0.401955 -0.2423223 0.0007521 0.000102 -0.000092 0.000036 0.000030 0.0000079 0.0000212 0.000040 0.000037
2016 8 27 57627 0.232515 0.399947 -0.2430489 0.0006702 0.000102 -0.000098 0.000037 0.000030 0.0000080 0.0000214 0.000040 0.000037
2016 8 28 57628 0.233795 0.397629 -0.2437170 0.0006215 0.000102 -0.000105 0.000037 0.000031 0.0000081 0.0000217 0.000040 0.000038
2016 8 29 57629 0.234778 0.395756 -0.2443293 0.0006232 0.000102 -0.000112 0.000035 0.000029 0.0000080 0.0000207 0.000040 0.000036
2016 8 30 57630 0.235414 0.393302 -0.2449645 0.0006893 0.000101 -0.000118 0.000035 0.000029 0.0000080 0.0000209 0.000040 0.000037
2016 8 31 57631 0.235994 0.391019 -0.2456864 0.0007480 0.000088 -0.000106 0.000035 0.000029 0.0000081 0.0000210 0.000041 0.000037
2016 9 1 57632 0.236472 0.389221 -0.2464507 0.0007861 0.000070 -0.000087 0.000036 0.000029 0.0000081 0.0000212 0.000041 0.000038
2016 9 2 57633 0.236917 0.388023 -0.2472648 0.0008437 0.000053 -0.000068 0.000036 0.000030 0.0000082 0.0000215 0.000042 0.000039
2016 9 3 57634 0.236689 0.387089 -0.2481694 0.0008948 0.000035 -0.000049 0.000036 0.000030 0.0000082 0.0000217 0.000042 0.000040
2016 9 4 57635 0.236047 0.385769 -0.2491250 0.0009488 0.000018 -0.000031 0.000037 0.000030 0.0000082 0.0000220 0.000043 0.000040
2016 9 5 57636 0.235162 0.384058 -0.2500891 0.0009590 0.000001 -0.000017 0.000035 0.000029 0.0000077 0.0000213 0.000043 0.000040
2016 9 6 57637 0.234520 0.382142 -0.2510317 0.0009218 -0.000016 0.000001 0.000035 0.000029 0.0000077 0.0000215 0.000043 0.000041
2016 9 7 57638 0.234348 0.380143 -0.2519171 0.0008790 -0.000020 0.000027 0.000035 0.000029 0.0000075 0.0000217 0.000042 0.000038
2016 9 8 57639 0.234472 0.377961 -0.2527518 0.0008008 0.000000 0.000003 0.000035 0.000029 0.0000075 0.0000219 0.000042 0.000039
2016 9 9 57640 0.234739 0.375707 -0.2535144 0.0007200 0.000029 -0.000032 0.000034 0.000028 0.0000075 0.0000206 0.000043 0.000040
2016 9 10 57641 0.234677 0.373773 -0.2541955 0.0006835 0.000059 -0.000067 0.000034 0.000028 0.0000075 0.0000208 0.000044 0.000040
2016 9 11 57642 0.234635 0.371737 -0.2548795 0.0007185 0.000089 -0.000103 0.000034 0.000029 0.0000075 0.0000209 0.000044 0.000041
2016 9 12 57643 0.235150 0.369842 -0.2556315 0.0007584 0.000118 -0.000138 0.000034 0.000029 0.0000074 0.0000203 0.000045 0.000042
2016 9 13 57644 0.235702 0.367858 -0.2563977 0.0008143 0.000148 -0.000174 0.000034 0.000029 0.0000074 0.0000204 0.000045 0.000042
2016 9 14 57645 0.236140 0.366120 -0.2572526 0.0009618 0.000119 -0.000163 0.000035 0.000029 0.0000071 0.0000215 0.000041 0.000038
2016 9 15 57646 0.236299 0.364419 -0.2583099 0.0011449 0.000071 -0.000138 0.000035 0.000030 0.0000071 0.0000216 0.000041 0.000038
2016 9 16 57647 0.236935 0.362487 -0.2595654 0.0013206 0.000023 -0.000113 0.000036 0.000030 0.0000071 0.0000218 0.000042 0.000039
2016 9 17 57648 0.237304 0.360527 -0.2609397 0.0014492 -0.000025 -0.000088 0.000036 0.000030 0.0000070 0.0000219 0.000042 0.000039
2016 9 18 57649 0.237599 0.358716 -0.2623923 0.0014946 -0.000073 -0.000062 0.000036 0.000031 0.0000070 0.0000221 0.000043 0.000039
2016 9 19 57650 0.237480 0.357023 -0.2638949 0.0014834 -0.000121 -0.000037 0.000033 0.000028 0.0000069 0.0000181 0.000045 0.000041
2016 9 20 57651 0.237348 0.355106 -0.2653634 0.0014397 -0.000169 -0.000012 0.000034 0.000028 0.0000069 0.0000180 0.000045 0.000041
2016 9 21 57652 0.236960 0.353136 -0.2667541 0.0013236 -0.000145 -0.000018 0.000034 0.000029 0.0000069 0.0000157 0.000046 0.000042
2016 9 22 57653 0.236630 0.350957 -0.2679836 0.0011663 -0.000103 -0.000034 0.000034 0.000029 0.0000069 0.0000155 0.000047 0.000043
2016 9 23 57654 0.236354 0.348962 -0.2691070 0.0010850 -0.000061 -0.000049 0.000034 0.000029 0.0000070 0.0000153 0.000047 0.000044
2016 9 24 57655 0.235756 0.346910 -0.2701936 0.0010763 -0.000018 -0.000064 0.000035 0.000029 0.0000070 0.0000151 0.000048 0.000045
2016 9 25 57656 0.235125 0.344548 -0.2712425 0.0011034 0.000024 -0.000080 0.000035 0.000029 0.0000070 0.0000148 0.000048 0.000046
2016 9 26 57657 0.234841 0.342161 -0.2723752 0.0011514 0.000082 -0.000091 0.000033 0.000028 0.0000061 0.0000197 0.000040 0.000037
2016 9 27 57658 0.234186 0.339769 -0.2735790 0.0012251 0.000122 -0.000106 0.000033 0.000028 0.0000062 0.0000197 0.000040 0.000038
2016 9 28 57659 0.233624 0.336981 -0.2748204 0.0012919 0.000122 -0.000114 0.000032 0.000027 0.0000063 0.0000191 0.000041 0.000039
2016 9 29 57660 0.233922 0.334418 -0.2761489 0.0013810 0.000112 -0.000120 0.000032 0.000027 0.0000064 0.0000191 0.000042 0.000040
2016 9 30 57661 0.234157 0.332598 -0.2775772 0.0014116 0.000102 -0.000126 0.000033 0.000027 0.0000065 0.0000191 0.000043 0.000041
2016 10 1 57662 0.233710 0.331033 -0.2789856 0.0013849 0.000092 -0.000132 0.000033 0.000028 0.0000066 0.0000191 0.000043 0.000042
2016 10 2 57663 0.232703 0.329531 -0.2803453 0.0013189 0.000081 -0.000138 0.000033 0.000028 0.0000067 0.0000192 0.000044 0.000043
2016 10 3 57664 0.231388 0.327920 -0.2816152 0.0012207 0.000073 -0.000142 0.000033 0.000028 0.0000064 0.0000178 0.000044 0.000043
2016 10 4 57665 0.229633 0.326142 -0.2827883 0.0011388 0.000062 -0.000149 0.000033 0.000028 0.0000064 0.0000177 0.000044 0.000044
2016 10 5 57666 0.227445 0.324728 -0.2839001 0.0010772 0.000048 -0.000158 0.000032 0.000027 0.0000063 0.0000189 0.000040 0.000040
2016 10 6 57667 0.225248 0.322950 -0.2849592 0.0010297 0.000042 -0.000118 0.000032 0.000027 0.0000063 0.0000189 0.000040 0.000040
2016 10 7 57668 0.223420 0.321404 -0.2859455 0.0009849 0.000037 -0.000065 0.000033 0.000028 0.0000064 0.0000190 0.000041 0.000041
2016 10 8 57669 0.221736 0.319559 -0.2869081 0.0009555 0.000059 -0.000055 0.000033 0.000028 0.0000065 0.0000190 0.000041 0.000042
2016 10 9 57670 0.220903 0.317727 -0.2878658 0.0010113 0.000090 -0.000062 0.000033 0.000028 0.0000065 0.0000190 0.000042 0.000042
2016 10 10 57671 0.220796 0.315984 -0.2889328 0.0011552 0.000112 -0.000065 0.000033 0.000028 0.0000062 0.0000172 0.000031 0.000032
2016 10 11 57672 0.220783 0.314038 -0.2901511 0.0013332 0.000140 -0.000071 0.000034 0.000028 0.0000063 0.0000172 0.000031 0.000032
2016 10 12 57673 0.220486 0.312507 -0.2915676 0.0015189 0.000175 -0.000079 0.000034 0.000029 0.0000064 0.0000174 0.000033 0.000033
2016 10 13 57674 0.220125 0.311194 -0.2931858 0.0017253 0.000169 -0.000070 0.000034 0.000029 0.0000064 0.0000173 0.000033 0.000033
2016 10 14 57675 0.219087 0.310363 -0.2950257 0.0019249 0.000154 -0.000057 0.000034 0.000029 0.0000064 0.0000173 0.000033 0.000033
2016 10 15 57676 0.217450 0.309273 -0.2970388 0.0020662 0.000138 -0.000044 0.000035 0.000030 0.0000064 0.0000172 0.000033 0.000034
2016 10 16 57677 0.215478 0.307920 -0.2991251 0.0020963 0.000123 -0.000030 0.000035 0.000030 0.0000064 0.0000172 0.000034 0.000034
2016 10 17 57678 0.213493 0.306154 -0.3011774 0.0019872 0.000092 -0.000035 0.000034 0.000029 0.0000054 0.0000191 0.000027 0.000027
2016 10 18 57679 0.211726 0.304035 -0.3031004 0.0018485 0.000088 -0.000012 0.000034 0.000029 0.0000055 0.0000192 0.000027 0.000027
2016 10 19 57680 0.210013 0.302114 -0.3048682 0.0016679 0.000080 -0.000011 0.000035 0.000029 0.0000055 0.0000194 0.000029 0.000026
2016 10 20 57681 0.208059 0.300051 -0.3064760 0.0015069 0.000087 -0.000016 0.000035 0.000030 0.0000056 0.0000196 0.000030 0.000026
2016 10 21 57682 0.206220 0.298124 -0.3079303 0.0014439 0.000093 -0.000020 0.000036 0.000030 0.0000056 0.0000198 0.000030 0.000027
2016 10 22 57683 0.204234 0.296491 -0.3093373 0.0014158 0.000099 -0.000024 0.000036 0.000030 0.0000056 0.0000200 0.000030 0.000027
2016 10 23 57684 0.202737 0.294748 -0.3107499 0.0014213 0.000105 -0.000028 0.000037 0.000031 0.0000056 0.0000202 0.000031 0.000027
2016 10 24 57685 0.201485 0.293563 -0.3121853 0.0014284 0.000020 -0.000328 0.000035 0.000029 0.0000057 0.0000195 0.000030 0.000025
2016 10 25 57686 0.199996 0.291844 -0.3136034 0.0014675 0.000098 -0.000100 0.000035 0.000029 0.0000057 0.0000197 0.000030 0.000025
2016 10 26 57687 0.198817 0.289847 -0.3150837 0.0014806 0.000130 -0.000032 0.000036 0.000030 0.0000058 0.0000196 0.000033 0.000031
2016 10 27 57688 0.197049 0.288207 -0.3165577 0.0014575 0.000134 -0.000039 0.000036 0.000030 0.0000059 0.0000197 0.000034 0.000032
2016 10 28 57689 0.194877 0.286749 -0.3180238 0.0014750 0.000137 -0.000046 0.000037 0.000030 0.0000059 0.0000199 0.000034 0.000032
2016 10 29 57690 0.192868 0.285462 -0.3195011 0.0014976 0.000141 -0.000053 0.000037 0.000031 0.0000059 0.0000200 0.000035 0.000033
2016 10 30 57691 0.191533 0.284560 -0.3209768 0.0014901 0.000144 -0.000060 0.000038 0.000031 0.0000060 0.0000202 0.000035 0.000033
2016 10 31 57692 0.190141 0.283654 -0.3224586 0.0013961 0.000147 -0.000073 0.000036 0.000029 0.0000058 0.0000198 0.000036 0.000031
2016 11 1 57693 0.188741 0.282469 -0.3238253 0.0013523 0.000151 -0.000080 0.000036 0.000029 0.0000058 0.0000200 0.000037 0.000032
2016 11 2 57694 0.187251 0.281561 -0.3251438 0.0013031 0.000162 -0.000136 0.000036 0.000030 0.0000058 0.0000165 0.000037 0.000031
2016 11 3 57695 0.185888 0.280438 -0.3264000 0.0012215 0.000184 -0.000213 0.000037 0.000030 0.0000059 0.0000164 0.000038 0.000032
2016 11 4 57696 0.185057 0.279384 -0.3276237 0.0012340 0.000206 -0.000290 0.000037 0.000030 0.0000059 0.0000162 0.000038 0.000033
2016 11 5 57697 0.183910 0.278993 -0.3288929 0.0013017 0.000228 -0.000367 0.000037 0.000031 0.0000060 0.0000161 0.000039 0.000034
2016 11 6 57698 0.182076 0.278910 -0.3302459 0.0014064 0.000250 -0.000444 0.000038 0.000031 0.0000060 0.0000160 0.000039 0.000035
2016 11 7 57699 0.179463 0.278804 -0.3317062 0.0015241 0.000269 -0.000518 0.000038 0.000032 0.0000059 0.0000211 0.000033 0.000030
2016 11 8 57700 0.176446 0.278331 -0.3332821 0.0016384 0.000022 -0.000302 0.000039 0.000032 0.0000059 0.0000213 0.000033 0.000030
2016 11 9 57701 0.173555 0.277697 -0.3350135 0.0018134 -0.000032 -0.000243 0.000036 0.000029 0.0000060 0.0000202 0.000032 0.000030
2016 11 10 57702 0.171310 0.277035 -0.3369133 0.0019826 -0.000022 -0.000239 0.000037 0.000030 0.0000060 0.0000203 0.000033 0.000031
2016 11 11 57703 0.169401 0.276436 -0.3389563 0.0020983 -0.000011 -0.000234 0.000037 0.000030 0.0000060 0.0000205 0.000033 0.000031
2016 11 12 57704 0.167426 0.275398 -0.3411185 0.0021562 0.000000 -0.000230 0.000038 0.000030 0.0000060 0.0000207 0.000034 0.000031
2016 11 13 57705 0.165552 0.274273 -0.3432557 0.0021221 0.000011 -0.000225 0.000038 0.000031 0.0000059 0.0000209 0.000034 0.000032
2016 11 14 57706 0.163590 0.273281 -0.3452758 0.0019493 0.000115 -0.000151 0.000004 0.000004 0.0000112 0.0000032 0.000035 0.000030
2016 11 15 57707 0.161315 0.272206 -0.3471023 0.0017217 0.000129 -0.000142 0.000004 0.000004 0.0000113 0.0000033 0.000035 0.000030
2016 11 16 57708 0.158957 0.271395 -0.3487222 0.0014955 0.000131 -0.000154 0.000004 0.000004 0.0000076 0.0000033 0.000028 0.000029
2016 11 17 57709 0.156640 0.270774 -0.3500768 0.0013363 0.000138 -0.000154 0.000004 0.000004 0.0000080 0.0000033 0.000028 0.000029
2016 11 18 57710 0.155065 0.270416 -0.3513702 0.0012606 0.000146 -0.000153 0.000004 0.000005 0.0000083 0.0000033 0.000029 0.000030
2016 11 19 57711 0.153312 0.270252 -0.3526213 0.0013009 0.000154 -0.000153 0.000005 0.000005 0.0000086 0.0000033 0.000029 0.000030
2016 11 20 57712 0.151082 0.270002 -0.3539606 0.0013752 0.000161 -0.000153 0.000005 0.000005 0.0000089 0.0000033 0.000030 0.000031
2016 11 21 57713 0.148289 0.269509 -0.3553341 0.0014326 0.000168 -0.000152 0.000005 0.000005 0.0000094 0.0000033 0.000029 0.000033
2016 11 22 57714 0.146001 0.268959 -0.3567960 0.0015127 0.000176 -0.000154 0.000005 0.000005 0.0000097 0.0000033 0.000030 0.000034
2016 11 23 57715 0.144034 0.268665 -0.3583384 0.0015707 0.000064 -0.000164 0.000003 0.000004 0.0000083 0.0000034 0.000029 0.000031
2016 11 24 57716 0.142531 0.268381 -0.3599235 0.0016032 -0.000079 -0.000176 0.000003 0.000004 0.0000086 0.0000034 0.000030 0.000032
2016 11 25 57717 0.141273 0.268400 -0.3616385 0.0015676 -0.000223 -0.000188 0.000004 0.000004 0.0000089 0.0000034 0.000030 0.000032
2016 11 26 57718 0.140279 0.268329 -0.3630973 0.0015113 -0.000197 -0.000166 0.000004 0.000004 0.0000092 0.0000034 0.000031 0.000033
2016 11 27 57719 0.139103 0.268540 -0.3645137 0.0014463 -0.000095 -0.000129 0.000004 0.000004 0.0000095 0.0000034 0.000031 0.000033
2016 11 28 57720 0.137064 0.268762 -0.3659093 0.0013474 0.000007 -0.000093 0.000004 0.000004 0.0000078 0.0000034 0.000028 0.000029
2016 11 29 57721 0.134436 0.268375 -0.3672144 0.0012561 0.000109 -0.000057 0.000004 0.000004 0.0000078 0.0000034 0.000028 0.000029
2016 11 30 57722 0.132038 0.267901 -0.3684802 0.0012267 0.000116 -0.000081 0.000004 0.000004 0.0000077 0.0000033 0.000027 0.000026
2016 12 1 57723 0.129858 0.267382 -0.3697225 0.0012334 0.000102 -0.000126 0.000004 0.000004 0.0000077 0.0000033 0.000028 0.000026
2016 12 2 57724 0.127974 0.266993 -0.3709021 0.0012125 0.000086 -0.000129 0.000004 0.000004 0.0000076 0.0000033 0.000028 0.000026
2016 12 3 57725 0.126040 0.266855 -0.3721236 0.0012161 0.000068 -0.000119 0.000004 0.000005 0.0000075 0.0000033 0.000028 0.000027
2016 12 4 57726 0.124161 0.266484 -0.3733167 0.0012461 0.000050 -0.000109 0.000004 0.000005 0.0000074 0.0000032 0.000029 0.000028
2016 12 5 57727 0.122463 0.266303 -0.3746454 0.0013295 0.000033 -0.000098 0.000003 0.000004 0.0000075 0.0000033 0.000031 0.000029
2016 12 6 57728 0.120687 0.266003 -0.3760474 0.0014348 0.000011 -0.000088 0.000003 0.000004 0.0000074 0.0000033 0.000031 0.000030
2016 12 7 57729 0.119514 0.265689 -0.3775610 0.0015512 0.000011 -0.000094 0.000004 0.000004 0.0000078 0.0000033 0.000033 0.000029
2016 12 8 57730 0.118630 0.265515 -0.3791750 0.0016703 0.000000 -0.000102 0.000004 0.000004 0.0000077 0.0000033 0.000034 0.000029
2016 12 9 57731 0.118249 0.265578 -0.3809296 0.0017654 -0.000010 -0.000110 0.000004 0.000004 0.0000076 0.0000034 0.000034 0.000030
2016 12 10 57732 0.118049 0.265938 -0.3827302 0.0017945 -0.000020 -0.000118 0.000004 0.000004 0.0000074 0.0000034 0.000035 0.000030
2016 12 11 57733 0.118091 0.266269 -0.3845245 0.0017381 -0.000030 -0.000126 0.000004 0.000004 0.0000073 0.0000034 0.000035 0.000031
2016 12 12 57734 0.117668 0.266845 -0.3861946 0.0016206 -0.000037 -0.000135 0.000004 0.000004 0.0000071 0.0000033 0.000037 0.000033
2016 12 13 57735 0.116437 0.267264 -0.3877013 0.0014125 -0.000047 -0.000143 0.000004 0.000004 0.0000068 0.0000033 0.000037 0.000034
2016 12 14 57736 0.114709 0.267418 -0.3890154 0.0012512 -0.000077 -0.000209 0.000004 0.000004 0.0000068 0.0000034 0.000026 0.000024
2016 12 15 57737 0.113031 0.267402 -0.3902468 0.0012505 -0.000106 -0.000277 0.000004 0.000004 0.0000071 0.0000034 0.000026 0.000025
2016 12 16 57738 0.111752 0.267236 -0.3915298 0.0012590 -0.000100 -0.000275 0.000004 0.000004 0.0000073 0.0000034 0.000027 0.000025
2016 12 17 57739 0.110836 0.266516 -0.3927593 0.0012788 -0.000080 -0.000247 0.000004 0.000004 0.0000076 0.0000034 0.000027 0.000026
2016 12 18 57740 0.109761 0.266078 -0.3940294 0.0012696 -0.000060 -0.000220 0.000004 0.000004 0.0000079 0.0000034 0.000028 0.000026
2016 12 19 57741 0.108487 0.265822 -0.3953003 0.0012667 -0.000051 -0.000173 0.000003 0.000004 0.0000072 0.0000033 0.000033 0.000031
2016 12 20 57742 0.106552 0.266044 -0.3965651 0.0012727 -0.000031 -0.000146 0.000003 0.000004 0.0000073 0.0000033 0.000033 0.000031
2016 12 21 57743 0.103678 0.265896 -0.3978405 0.0012808 -0.000011 -0.000119 0.000004 0.000004 0.0000073 0.0000032 0.000036 0.000032
2016 12 22 57744 0.100759 0.265703 -0.3990977 0.0012498 -0.000014 -0.000107 0.000004 0.000004 0.0000075 0.0000032 0.000036 0.000033
2016 12 23 57745 0.098049 0.265183 -0.4003418 0.0012025 -0.000021 -0.000099 0.000004 0.000004 0.0000078 0.0000031 0.000037 0.000035
2016 12 24 57746 0.095596 0.264626 -0.4014906 0.0011215 -0.000029 -0.000090 0.000004 0.000004 0.0000080 0.0000031 0.000038 0.000036
2016 12 25 57747 0.093343 0.264470 -0.4025437 0.0010550 -0.000037 -0.000082 0.000004 0.000004 0.0000082 0.0000031 0.000038 0.000037
2016 12 26 57748 0.091182 0.264608 -0.4035274 0.0009454 -0.000014 -0.000045 0.000004 0.000004 0.0000084 0.0000030 0.000034 0.000035
2016 12 27 57749 0.089160 0.264588 -0.4044647 0.0008639 -0.000020 -0.000035 0.000004 0.000004 0.0000086 0.0000030 0.000038 0.000036
2016 12 28 57750 0.086807 0.264711 -0.4052870 0.0008207 -0.000025 -0.000024 0.000004 0.000004 0.0000088 0.0000030 0.000038 0.000037
2016 12 29 57751 0.084589 0.264175 -0.4060935 0.0008091 -0.000024 -0.000029 0.000004 0.000004 0.0000090 0.0000030 0.000039 0.000038
2016 12 30 57752 0.082924 0.263518 -0.4069106 0.0008507 -0.000023 -0.000038 0.000004 0.000004 0.0000091 0.0000030 0.000039 0.000039
2016 12 31 57753 0.081318 0.262990 -0.4077600 0.0009208 -0.000021 -0.000048 0.000004 0.000004 0.0000093 0.0000030 0.000040 0.000039