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 2524 additions and 81 deletions
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-2016 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
......@@ -16,32 +16,31 @@
*/
package org.orekit.rugged.utils;
import org.hipparchus.geometry.euclidean.threed.Line;
import org.hipparchus.geometry.euclidean.threed.Vector3D;
import org.hipparchus.util.FastMath;
import java.io.File;
import java.net.URISyntaxException;
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.errors.RuggedException;
import org.orekit.rugged.errors.RuggedMessages;
import org.orekit.rugged.utils.ExtendedEllipsoid;
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,7 +72,7 @@ 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);
......@@ -88,7 +87,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtLatitudeTwoPointsSameSide() 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
......@@ -124,7 +123,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtLatitudeTwoPointsOppositeSides() throws RuggedException, OrekitException {
public void testPointAtLatitudeTwoPointsOppositeSides() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
Vector3D d = new Vector3D(1.0, 2.0, 0.1);
......@@ -132,7 +131,7 @@ public class ExtendedEllipsoidTest {
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(), 3.0e-16);
Assert.assertEquals(latitude, gpPlus.getLatitude(), 4.0e-16);
Assert.assertEquals(20646364.047, Vector3D.dotProduct(d, pPlus.subtract(p)), 0.001);
Vector3D pMinus = ellipsoid.pointAtLatitude(p, d, latitude, new Vector3D(1, p, -3.0e7, d));
......@@ -143,7 +142,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtLatitudeAlmostEquator() 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;
......@@ -155,7 +154,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtLatitudeErrorQuadraticEquation() throws RuggedException, OrekitException {
public void testPointAtLatitudeErrorQuadraticEquation() {
Vector3D p = new Vector3D(3220103.0, 69623.0, -6449822.0);
Vector3D d = new Vector3D(1.0, 2.0, 3.0);
......@@ -172,7 +171,7 @@ 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);
......@@ -189,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);
......@@ -202,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);
......@@ -215,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);
......@@ -231,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);
......@@ -251,7 +250,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtLatitudeError() throws RuggedException, OrekitException {
public void testPointAtLatitudeError() {
Vector3D p = new Vector3D(-3052690.88784496, 6481300.309857268, 25258.7478104745);
Vector3D d = new Vector3D(0.6, -0.8, 0.0);
......@@ -269,7 +268,7 @@ public class ExtendedEllipsoidTest {
}
@Test
public void testPointAtLatitudeIssue1() throws RuggedException, OrekitException {
public void testPointAtLatitudeIssue1() {
Vector3D position = new Vector3D(-1988136.619268088, -2905373.394638188, 6231185.484365295);
Vector3D los = new Vector3D(0.3489121277213534, 0.3447806500507106, -0.8714279261531437);
......@@ -287,7 +286,7 @@ public class ExtendedEllipsoidTest {
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-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.util.FastMath;
import org.junit.Assert;
import org.junit.Test;
public class NormalizedGeodeticPointTest {
/**
* check {@link NormalizedGeodeticPoint#equals(Object)}.
*/
@Test
public void testEquals() {
// setup
NormalizedGeodeticPoint point = new NormalizedGeodeticPoint(1, 2, 3, 4);
// 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 2013-2016 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
......@@ -16,13 +16,13 @@
*/
package org.orekit.rugged.utils;
import org.hipparchus.ode.nonstiff.DormandPrince853Integrator;
import org.hipparchus.util.FastMath;
import java.io.File;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.List;
import org.hipparchus.ode.nonstiff.DormandPrince853Integrator;
import org.hipparchus.util.FastMath;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
......@@ -34,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;
......@@ -50,8 +50,6 @@ import org.orekit.orbits.PositionAngle;
import org.orekit.propagation.Propagator;
import org.orekit.propagation.SpacecraftState;
import org.orekit.propagation.numerical.NumericalPropagator;
import org.orekit.propagation.sampling.OrekitFixedStepHandler;
import org.orekit.rugged.errors.RuggedException;
import org.orekit.time.AbsoluteDate;
import org.orekit.time.TimeScalesFactory;
import org.orekit.utils.Constants;
......@@ -61,75 +59,64 @@ import org.orekit.utils.TimeStampedPVCoordinates;
public class RoughVisibilityEstimatorTest {
@Test
public void testThreeOrbitsSpan()
throws RuggedException, OrekitException, URISyntaxException {
public void testThreeOrbitsSpan() 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.getMu());
Propagator propagator = createPropagator(earth, gravityField, orbit);
final List<TimeStampedPVCoordinates> pv = new ArrayList<TimeStampedPVCoordinates>();
propagator.setMasterMode(1.0, new OrekitFixedStepHandler() {
public void init(SpacecraftState s0, AbsoluteDate t) {
}
public void handleStep(SpacecraftState currentState, boolean isLast) {
pv.add(currentState.getPVCoordinates());
}
});
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("2012-01-01T03:47:08.814", d.toString(TimeScalesFactory.getUTC()));
Assert.assertEquals(0.0,
new AbsoluteDate("2012-01-01T03:47:08.814121623",
TimeScalesFactory.getUTC()).durationFrom(d),
1.0e-8);
}
@Test
public void testOneOrbitsSpan()
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.getMu());
Propagator propagator = createPropagator(earth, gravityField, orbit);
final List<TimeStampedPVCoordinates> pv = new ArrayList<TimeStampedPVCoordinates>();
propagator.setMasterMode(1.0, new OrekitFixedStepHandler() {
public void init(SpacecraftState s0, AbsoluteDate t) {
}
public void handleStep(SpacecraftState currentState, boolean isLast) {
pv.add(currentState.getPVCoordinates());
}
});
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("2012-01-01T01:02:39.123", d.toString(TimeScalesFactory.getUTC()));
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));
}
private NormalizedSphericalHarmonicsProvider createGravityField()
throws OrekitException {
private NormalizedSphericalHarmonicsProvider createGravityField() {
return GravityFieldFactory.getNormalizedProvider(12, 12);
}
private Orbit createOrbit(double mu)
throws OrekitException {
private Orbit createOrbit(double mu) {
// the following orbital parameters have been computed using
// Orekit tutorial about phasing, using the following configuration:
//
......@@ -153,8 +140,7 @@ public class RoughVisibilityEstimatorTest {
private Propagator createPropagator(BodyShape earth,
NormalizedSphericalHarmonicsProvider gravityField,
Orbit orbit)
throws OrekitException {
Orbit orbit) {
AttitudeProvider yawCompensation = new YawCompensation(orbit.getFrame(), new NadirPointing(orbit.getFrame(), earth));
SpacecraftState state = new SpacecraftState(orbit,
......@@ -187,7 +173,7 @@ public class RoughVisibilityEstimatorTest {
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.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 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
# Rugged library dump file, created on 2015-02-11T14:08:32Z
# all units are SI units (m, m/s, rad ...)
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.547095802227720e-01 6.560590289905073e-01 lightTime true aberration true
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.547095802227720e-01 6.560590289905073e-01 lightTime true aberration true refraction false
span: minDate 2012-01-01T12:29:59.85000000000000Z maxDate 2012-01-01T12:30:00.15000000000000Z tStep 1.000000000000000e-03 tolerance 5.000000000000000e+00 inertialFrame EME2000
transform: index 150 body r -8.085963389171905e-01 -3.465415132416124e-04 4.896468952533136e-04 -5.883634938068593e-01 Ω -8.740475534355121e-08 1.215132763920863e-09 -7.292109805268457e-05 ΩDot -1.642299174832473e-16 8.973031065833714e-17 1.983408395826415e-19 spacecraft p 1.384771423708159e+04 3.157872644483112e+03 -7.179504513218164e+06 v -3.193269831348565e+01 -8.025700179158079e+00 8.276060585645734e+00 a -9.306388141791047e-01 -8.320023410534990e+00 1.352798021525103e-03 r -6.828948932066574e-01 4.142451147005848e-01 -3.878489669799004e-01 4.600312256701621e-01 Ω -1.009835959093257e-03 1.982938126604663e-04 1.645927204535755e-04 ΩDot -3.647403055483546e-07 2.008714378022283e-07 -1.257148591486377e-06
ellipsoid: ae 6.378137000000000e+06 f 3.352810664747481e-03 frame ITRF_CIO_CONV_2010_SIMPLE_EOP
......@@ -30,7 +30,7 @@ DEM cell: t0 latIndex 99 lonIndex 50 elevation 4.265142906455210e+01
DEM cell: t0 latIndex 97 lonIndex 50 elevation 4.500756443755694e+01
DEM cell: t0 latIndex 97 lonIndex 51 elevation 7.421501844304876e+01
direct location result: latitude -3.947445425992010e-01 longitude 2.499243584750142e+00 elevation 8.434706922629509e+01
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.548246479094037e-01 6.559266353095021e-01 lightTime true aberration true
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.548246479094037e-01 6.559266353095021e-01 lightTime true aberration true refraction false
DEM cell: t0 latIndex 96 lonIndex 52 elevation 1.110753711365716e+02
DEM cell: t0 latIndex 97 lonIndex 52 elevation 8.027308091623061e+01
DEM cell: t0 latIndex 96 lonIndex 53 elevation 1.950053829821900e+02
......@@ -40,7 +40,7 @@ DEM cell: t0 latIndex 98 lonIndex 49 elevation -2.653137720265925e+01
DEM cell: t0 latIndex 97 lonIndex 48 elevation -9.460844691182658e+01
DEM cell: t0 latIndex 98 lonIndex 48 elevation -6.303622859747302e+01
direct location result: latitude -3.947611273580563e-01 longitude 2.499133846389992e+00 elevation -4.295871413137783e+01
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.595223858294946e-01 6.504811645419663e-01 lightTime true aberration true
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.595223858294946e-01 6.504811645419663e-01 lightTime true aberration true refraction false
DEM cell: t0 latIndex 91 lonIndex 0 elevation -4.644285910379659e+02
DEM cell: t0 latIndex 92 lonIndex 0 elevation -6.361521230433466e+02
DEM cell: t0 latIndex 91 lonIndex 1 elevation -6.695324221432916e+02
......@@ -62,7 +62,7 @@ DEM cell: t0 latIndex 90 lonIndex 2 elevation -7.924361301694835e+02
DEM cell: t0 latIndex 91 lonIndex 2 elevation -7.590003401646543e+02
DEM cell: t0 latIndex 90 lonIndex 0 elevation -5.786400093316511e+02
direct location result: latitude -3.952555711362365e-01 longitude 2.495847653590435e+00 elevation -5.905034290161145e+02
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.596364750290255e-01 6.503479267326657e-01 lightTime true aberration true
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.596364750290255e-01 6.503479267326657e-01 lightTime true aberration true refraction false
DEM tile: t1 latMin -4.014257279586958e-01 latStep 6.817692390602850e-05 latRows 257 lonMin 2.478367537831948e+00 lonStep 6.817692390602850e-05 lonCols 257
DEM cell: t1 latIndex 192 lonIndex 0 elevation -1.282721242683617e+03
DEM cell: t1 latIndex 80 lonIndex 192 elevation 3.211682285355159e+03
......@@ -74,7 +74,7 @@ DEM cell: t1 latIndex 92 lonIndex 256 elevation -6.361521230433466e+02
DEM cell: t1 latIndex 91 lonIndex 257 elevation -6.361521230433466e+02
DEM cell: t1 latIndex 92 lonIndex 257 elevation -5.119072938899205e+02
direct location result: latitude -3.952672865845636e-01 longitude 2.495769458919830e+00 elevation -5.923807760050810e+02
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.597505408555608e-01 6.502146689130315e-01 lightTime true aberration true
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.597505408555608e-01 6.502146689130315e-01 lightTime true aberration true refraction false
DEM cell: t1 latIndex 92 lonIndex 248 elevation -1.470524675650724e+02
DEM cell: t1 latIndex 93 lonIndex 248 elevation -1.448837787295385e+02
DEM cell: t1 latIndex 92 lonIndex 249 elevation -2.503632800423777e+02
......
# Rugged library dump file, created on 2015-04-23T15:12:38Z
# all units are SI units (m, m/s, rad ...)
direct location: date 2013-07-09T08:04:01.64555485306736Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los -2.397859534323394e-02 1.069618325126766e-01 9.939739399066714e-01 lightTime false aberration false
direct location: date 2013-07-09T08:04:01.64555485306736Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los -2.397859534323394e-02 1.069618325126766e-01 9.939739399066714e-01 lightTime false aberration false refraction false
span: minDate 2013-07-09T07:44:31.00000000000000Z maxDate 2013-07-09T08:13:29.00000000000000Z tStep 1.000000000000000e-01 tolerance 1.000000000000000e+01 inertialFrame EME2000
transform: index 11706 body r -9.126227111915787e-01 2.903948203646350e-04 6.031760832458322e-04 4.088023224821415e-01 Ω -9.759363848525831e-08 2.685469893129743e-09 -7.292108611062513e-05 ΩDot -2.894633518922737e-16 -1.401923338483166e-16 3.822089661987461e-19 spacecraft p -9.813172457506880e-01 -2.293861089274287e-01 -7.170114055550980e+06 v 1.721804626498136e-02 -5.160520845023520e-02 -8.541224850640113e+00 a -3.826063343921664e-01 -2.431259446863342e+00 6.594385725102986e-03 r -5.316321568749174e-01 5.693171838660510e-01 4.158849079021506e-01 -4.693452218895723e-01 Ω 1.024382530168276e-03 -9.422884774760976e-05 1.535223674917447e-04 ΩDot -1.147097938604457e-08 1.286556172365012e-07 3.416768201783130e-07
algorithm: DUVENHAGE
......
# Rugged library dump file, created on 2015-06-17T12:40:59Z
# all units are SI units (m, m/s, rad ...)
direct location: date 2009-12-10T19:49:15.69409696600003Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los -2.222227735527040e-02 -9.103563670459193e-02 9.955996601239552e-01 lightTime false aberration false
direct location: date 2009-12-10T19:49:15.69409696600003Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los -2.222227735527040e-02 -9.103563670459193e-02 9.955996601239552e-01 lightTime false aberration false refraction false
span: minDate 2009-12-10T19:43:11.00000000000000Z maxDate 2009-12-10T19:54:00.00000000000000Z tStep 1.000000000000000e-01 tolerance 1.000000000000000e+01 inertialFrame EME2000
transform: index 3647 body r -9.892006943727071e-01 6.548538144006332e-05 4.928252940714298e-04 1.465665005635631e-01 Ω -7.256918583080753e-08 -1.041477941363816e-09 -7.292111444123439e-05 ΩDot -1.633367752479824e-16 1.747255489539140e-16 1.600518399853031e-19 spacecraft p 1.915468890219927e-01 -8.990556518547237e-01 -7.156923547128990e+06 v -2.488758510805678e-02 8.481932866150421e-02 -4.020837052430704e+00 a -2.066722296571628e-01 -2.090489712840085e+00 -7.003752909213540e-03 r -1.763451310531075e-01 -4.315699021299694e-01 8.655337192606597e-01 1.830333170551214e-01 Ω -8.737537450216512e-04 5.311070290168704e-04 2.103617306756347e-04 ΩDot 1.145446212396803e-07 1.919398959490098e-07 6.635983002829190e-08
algorithm: DUVENHAGE
......
......@@ -3,15 +3,15 @@
sensor: sensorName s0 nbPixels 200 position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01
sensor datation: sensorName s0 lineNumber 1.000000000000000e+02 date 2012-01-01T12:30:00.00000000000000Z
sensor LOS: sensorName s0 date 2012-01-01T12:30:00.00000000000000Z pixelNumber 0 los 0.000000000000000e+00 -7.547095802227720e-01 6.560590289905073e-01
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.547095802227720e-01 6.560590289905073e-01 lightTime true aberration true
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.547095802227720e-01 6.560590289905073e-01 lightTime true aberration true refraction false
span: minDate 2012-01-01T12:29:59.85000000000000Z maxDate 2012-01-01T12:30:00.15000000000000Z tStep 1.000000000000000e-03 tolerance 5.000000000000000e+00 inertialFrame EME2000
transform: index 150 body r -8.085963389171905e-01 -3.465415132634738e-04 4.896468952577882e-04 -5.883634938068593e-01 Ω -8.740475539607400e-08 1.215132816692757e-09 -7.292109805268452e-05 ΩDot -1.641702845856317e-16 8.967282378770661e-17 1.982686818602039e-19 spacecraft p 1.384771423699730e+04 3.157872644810937e+03 -7.179504513218164e+06 v -3.193269795630194e+01 -8.025701643721955e+00 8.276060585691415e+00 a -9.306383564355984e-01 -8.320024052654388e+00 1.352798609222994e-03 r -6.828948932119083e-01 4.142451147050121e-01 -3.878489669751732e-01 4.600312256623658e-01 Ω -1.009835943938631e-03 1.982939067387613e-04 1.645926841490188e-04 ΩDot -3.647402648477413e-07 2.008713174452711e-07 -1.257148546282535e-06
ellipsoid: ae 6.378137000000000e+06 f 3.352810664747481e-03 frame ITRF_CIO_CONV_2010_SIMPLE_EOP
algorithm: CONSTANT_ELEVATION_OVER_ELLIPSOID elevation 1.000000000000000e+02
direct location result: latitude -3.947439031048142e-01 longitude 2.499247813392400e+00 elevation 1.000000008142965e+02
sensor LOS: sensorName s0 date 2012-01-01T12:30:00.00000000000000Z pixelNumber 1 los 0.000000000000000e+00 -7.548246479094037e-01 6.559266353095021e-01
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.548246479094037e-01 6.559266353095021e-01 lightTime true aberration true
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.548246479094037e-01 6.559266353095021e-01 lightTime true aberration true refraction false
direct location result: latitude -3.947552846081879e-01 longitude 2.499172490136166e+00 elevation 1.000000008170387e+02
sensor LOS: sensorName s0 date 2012-01-01T12:30:00.00000000000000Z pixelNumber 2 los 0.000000000000000e+00 -7.549396923710934e-01 6.557942214465139e-01
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.549396923710934e-01 6.557942214465139e-01 lightTime true aberration true
direct location: date 2012-01-01T12:30:00.00000000000000Z position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01 los 0.000000000000000e+00 -7.549396923710934e-01 6.557942214465139e-01 lightTime true aberration true refraction false
direct location result: latitude -3.947666718219440e-01 longitude 2.499097114958829e+00 elevation 1.000000008196107e+02
# Rugged library dump file, created on 2019-02-12T13:28:19Z
# all units are SI units (m, m/s, rad ...)
sensor: sensorName s0 nbPixels 6992 position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00
sensor datation: sensorName s0 lineNumber 1.093179500000000e+04 date 2018-11-17T09:28:13.50738549333433Z
direct location: date 2018-11-17T09:28:13.50738549333433Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.766362001712258e-03 -7.071346636500928e-03 9.999734376572147e-01 lightTime false aberration true refraction false
span: minDate 2018-11-17T09:28:09.75815400000000Z maxDate 2018-11-17T09:28:24.37500000000000Z tStep 1.000000000000000e-03 tolerance 1.000000000000000e+00 inertialFrame EME2000
transform: index 3749 body r -1.582419730578572e-01 -8.877875020391763e-04 1.556906340657658e-04 -9.873999521756794e-01 Ω -1.314379576583188e-07 1.929883563714465e-09 -7.292103298515694e-05 ΩDot -1.238204383721699e-16 -4.429578390177184e-17 2.220234885205757e-19 spacecraft p -2.043780763621181e+06 2.649055676516346e+06 -6.230074460056063e+06 v 8.500193464365886e+03 -1.120156363674237e+04 -7.562611889558547e+03 a -7.774014494482032e+02 -2.165448216679694e+02 2.038618372832540e+02 r -4.471787778551135e-01 -2.556359378108412e-01 7.875656535717214e-01 3.382628404801900e-01 Ω 1.895876683374440e-03 6.208707436271533e-04 6.748857995964048e-04 ΩDot 2.850236048816703e-06 1.374797997377696e-04 -1.976120196823438e-05
algorithm: DUVENHAGE
ellipsoid: ae 6.378137000000000e+06 f 3.352810664747481e-03 frame ITRF_CIO_CONV_2010_SIMPLE_EOP
DEM tile: t0 latMin 7.854054356026650e-01 latStep 1.454441043328608e-05 latRows 1850 lonMin 1.745401974046496e-01 lonStep 1.454441043328608e-05 lonCols 2950
DEM cell: t0 latIndex 1051 lonIndex 2937 elevation 1.309400956268308e+01
DEM cell: t0 latIndex 1809 lonIndex 653 elevation 3.915338283287048e+03
DEM cell: t0 latIndex 1743 lonIndex 2713 elevation 3.241641450760227e+03
DEM cell: t0 latIndex 1744 lonIndex 2713 elevation 3.183645801580853e+03
DEM cell: t0 latIndex 1743 lonIndex 2714 elevation 3.205639259625923e+03
DEM cell: t0 latIndex 1744 lonIndex 2714 elevation 3.139643613453759e+03
DEM cell: t0 latIndex 1744 lonIndex 2704 elevation 2.730665494724698e+03
DEM cell: t0 latIndex 1745 lonIndex 2704 elevation 2.724669818480428e+03
DEM cell: t0 latIndex 1744 lonIndex 2705 elevation 2.812663306597604e+03
DEM cell: t0 latIndex 1745 lonIndex 2705 elevation 2.789667633360545e+03
DEM cell: t0 latIndex 1744 lonIndex 2694 elevation 2.449679932277680e+03
DEM cell: t0 latIndex 1745 lonIndex 2694 elevation 2.324684218138123e+03
DEM cell: t0 latIndex 1744 lonIndex 2695 elevation 2.408678984770245e+03
DEM cell: t0 latIndex 1745 lonIndex 2695 elevation 2.377683274941762e+03
DEM cell: t0 latIndex 1747 lonIndex 2695 elevation 2.284691855284797e+03
DEM cell: t0 latIndex 1748 lonIndex 2695 elevation 2.230696145456314e+03
DEM cell: t0 latIndex 1747 lonIndex 2696 elevation 2.312690920710585e+03
DEM cell: t0 latIndex 1748 lonIndex 2696 elevation 2.265695215193176e+03
DEM cell: t0 latIndex 1749 lonIndex 2696 elevation 2.213699509675768e+03
DEM cell: t0 latIndex 1748 lonIndex 2697 elevation 2.299694284930039e+03
DEM cell: t0 latIndex 1749 lonIndex 2697 elevation 2.243698583723704e+03
DEM cell: t0 latIndex 1748 lonIndex 2694 elevation 2.204697075719452e+03
DEM cell: t0 latIndex 1749 lonIndex 2694 elevation 2.151701361579895e+03
DEM cell: t0 latIndex 1749 lonIndex 2695 elevation 2.179700435627831e+03
DEM cell: t0 latIndex 1750 lonIndex 2692 elevation 2.065707490722317e+03
DEM cell: t0 latIndex 1751 lonIndex 2692 elevation 2.019711767960612e+03
DEM cell: t0 latIndex 1750 lonIndex 2693 elevation 2.084706569081327e+03
DEM cell: t0 latIndex 1751 lonIndex 2693 elevation 2.051710850630697e+03
DEM cell: t0 latIndex 1750 lonIndex 2690 elevation 2.054709334004296e+03
DEM cell: t0 latIndex 1751 lonIndex 2690 elevation 2.052713602620443e+03
DEM cell: t0 latIndex 1750 lonIndex 2691 elevation 2.046708412363307e+03
DEM cell: t0 latIndex 1751 lonIndex 2691 elevation 1.988712685290527e+03
DEM cell: t0 latIndex 1752 lonIndex 2690 elevation 1.767717871236589e+03
DEM cell: t0 latIndex 1752 lonIndex 2691 elevation 1.932716958217748e+03
DEM cell: t0 latIndex 1751 lonIndex 2689 elevation 1.977714519950358e+03
DEM cell: t0 latIndex 1752 lonIndex 2689 elevation 1.812718784255430e+03
DEM cell: t0 latIndex 1753 lonIndex 2689 elevation 1.752723048560503e+03
DEM cell: t0 latIndex 1753 lonIndex 2690 elevation 1.771722139852736e+03
direct location result: latitude 8.108879611499973e-01 longitude 2.136511932240912e-01 elevation 1.806659334316842e+03
# Rugged library dump file, created on 2019-02-12T13:32:28Z
# all units are SI units (m, m/s, rad ...)
sensor: sensorName s0 nbPixels 6992 position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00
sensor datation: sensorName s0 lineNumber 1.555651300000000e+04 date 2018-11-17T09:28:15.00578210106806Z
direct location: date 2018-11-17T09:28:15.00578210106806Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.630437590029585e-03 -1.988452149915022e-02 9.998009539287460e-01 lightTime false aberration true refraction false
span: minDate 2018-11-17T09:28:09.75815400000000Z maxDate 2018-11-17T09:28:24.37500000000000Z tStep 1.000000000000000e-03 tolerance 1.000000000000000e+00 inertialFrame EME2000
transform: index 5248 body r -1.582959385747423e-01 -8.877789928041023e-04 1.557391550098440e-04 -9.873913020806478e-01 Ω -1.314379578439253e-07 1.929883497315641e-09 -7.292103298515672e-05 ΩDot -1.238198063406674e-16 -4.429504278953000e-17 2.220223692809437e-19 spacecraft p -2.031142024066962e+06 2.632378682422574e+06 -6.241283006704280e+06 v 8.397013991525502e+03 -1.122240538848754e+04 -7.476888804772309e+03 a -5.680029219465155e+02 -2.953217064872529e+02 9.484900057803327e+01 r -4.473594211185816e-01 -2.560156449934148e-01 7.879614096264105e-01 3.368120466886735e-01 Ω 1.874199110824172e-03 6.297218887138226e-04 6.941311311658171e-04 ΩDot 2.110863271348145e-05 1.094333236463635e-04 -6.188132051280828e-06
algorithm: DUVENHAGE
ellipsoid: ae 6.378137000000000e+06 f 3.352810664747481e-03 frame ITRF_CIO_CONV_2010_SIMPLE_EOP
DEM tile: t0 latMin 7.854054356026650e-01 latStep 1.454441043328608e-05 latRows 1850 lonMin 1.745401974046496e-01 lonStep 1.454441043328608e-05 lonCols 2950
DEM cell: t0 latIndex 1051 lonIndex 2937 elevation 1.309400956268308e+01
DEM cell: t0 latIndex 1809 lonIndex 653 elevation 3.915338283287048e+03
DEM cell: t0 latIndex 1611 lonIndex 2905 elevation 2.683570229905023e+03
DEM cell: t0 latIndex 1612 lonIndex 2905 elevation 2.659575158110089e+03
DEM cell: t0 latIndex 1611 lonIndex 2906 elevation 2.640567641818916e+03
DEM cell: t0 latIndex 1612 lonIndex 2906 elevation 2.617572573031192e+03
DEM cell: t0 latIndex 1595 lonIndex 2880 elevation 2.623557283660889e+03
DEM cell: t0 latIndex 1596 lonIndex 2880 elevation 2.576562136685689e+03
DEM cell: t0 latIndex 1595 lonIndex 2881 elevation 2.647554647459412e+03
DEM cell: t0 latIndex 1596 lonIndex 2881 elevation 2.594559503491423e+03
DEM cell: t0 latIndex 1592 lonIndex 2872 elevation 2.390563886371358e+03
DEM cell: t0 latIndex 1593 lonIndex 2872 elevation 2.289568715338474e+03
DEM cell: t0 latIndex 1592 lonIndex 2873 elevation 2.342561241148249e+03
DEM cell: t0 latIndex 1593 lonIndex 2873 elevation 2.331566073122576e+03
DEM cell: t0 latIndex 1594 lonIndex 2876 elevation 2.458562987470839e+03
DEM cell: t0 latIndex 1595 lonIndex 2876 elevation 2.494567828466797e+03
DEM cell: t0 latIndex 1594 lonIndex 2877 elevation 2.475560348262151e+03
DEM cell: t0 latIndex 1595 lonIndex 2877 elevation 2.528565192265320e+03
DEM cell: t0 latIndex 1596 lonIndex 2872 elevation 2.190583202239821e+03
DEM cell: t0 latIndex 1597 lonIndex 2872 elevation 2.147588031206936e+03
DEM cell: t0 latIndex 1596 lonIndex 2873 elevation 2.264580569045554e+03
DEM cell: t0 latIndex 1597 lonIndex 2873 elevation 2.203585401019881e+03
DEM cell: t0 latIndex 1596 lonIndex 2868 elevation 2.121593735016887e+03
DEM cell: t0 latIndex 1597 lonIndex 2868 elevation 2.114598551955160e+03
DEM cell: t0 latIndex 1596 lonIndex 2869 elevation 2.106591101822620e+03
DEM cell: t0 latIndex 1597 lonIndex 2869 elevation 2.110595921768104e+03
DEM cell: t0 latIndex 1596 lonIndex 2864 elevation 2.166604267793952e+03
DEM cell: t0 latIndex 1597 lonIndex 2864 elevation 2.083609072703383e+03
DEM cell: t0 latIndex 1596 lonIndex 2865 elevation 2.144601634599685e+03
DEM cell: t0 latIndex 1597 lonIndex 2865 elevation 2.076606442516327e+03
DEM cell: t0 latIndex 1596 lonIndex 2867 elevation 2.148596368211153e+03
DEM cell: t0 latIndex 1597 lonIndex 2867 elevation 2.111601182142215e+03
DEM cell: t0 latIndex 1598 lonIndex 2865 elevation 2.042611250432968e+03
DEM cell: t0 latIndex 1597 lonIndex 2866 elevation 2.091603812329271e+03
DEM cell: t0 latIndex 1598 lonIndex 2866 elevation 2.054608623253123e+03
DEM cell: t0 latIndex 1599 lonIndex 2865 elevation 1.847616058349609e+03
DEM cell: t0 latIndex 1599 lonIndex 2866 elevation 1.838613434176975e+03
DEM cell: t0 latIndex 1598 lonIndex 2864 elevation 1.985613877612813e+03
DEM cell: t0 latIndex 1599 lonIndex 2864 elevation 1.872618682522244e+03
direct location result: latitude 8.086569515781713e-01 longitude 2.161986944259714e-01 elevation 1.912154442728379e+03
# Rugged library dump file, created on 2019-02-08T16:07:07Z
# all units are SI units (m, m/s, rad ...)
sensor: sensorName s0 nbPixels 6992 position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00
sensor datation: sensorName s0 lineNumber -6.400000000000001e+02 date 2018-11-17T09:28:09.75815400000000Z
sensor datation: sensorName s0 lineNumber 4.447408424880824e+04 date 2018-11-17T09:28:24.37500000000000Z
sensor datation: sensorName s0 lineNumber 2.826900000000000e+04 date 2018-11-17T09:28:19.12459483660332Z
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
span: minDate 2018-11-17T09:28:09.75815400000000Z maxDate 2018-11-17T09:28:24.37500000000000Z tStep 1.000000000000000e-03 tolerance 1.000000000000000e+00 inertialFrame EME2000
transform: index 9366 body r -1.584446506666181e-01 -8.881578177468675e-04 1.564888965877765e-04 -9.873674490087516e-01 Ω -1.314379583538120e-07 1.929883314912744e-09 -7.292103298515580e-05 ΩDot -1.238180701885198e-16 -4.429300681876970e-17 2.220189200053709e-19 spacecraft p -1.997175450486062e+06 2.586441579861389e+06 -6.271423934028421e+06 v 8.113280864301501e+03 -1.114024972785023e+04 -7.189075879755639e+03 a -1.053681313757033e+03 -1.503500666930414e+03 -2.459309668330822e+02 r -4.479168627946637e-01 -2.570042078686272e-01 7.890099484043995e-01 3.328402356700476e-01 Ω 1.817311260304385e-03 6.600167203271428e-04 7.119941113907730e-04 ΩDot 4.061126512029496e-05 1.694535855585867e-04 2.046888666103640e-04
algorithm: DUVENHAGE
ellipsoid: ae 6.378137000000000e+06 f 3.352810664747481e-03 frame ITRF_CIO_CONV_2010_SIMPLE_EOP
DEM tile: t0 latMin 7.854054356026650e-01 latStep 1.454441043328608e-05 latRows 1850 lonMin 1.745401974046496e-01 lonStep 1.454441043328608e-05 lonCols 2950
DEM cell: t0 latIndex 1051 lonIndex 2937 elevation 1.309400956268308e+01
DEM cell: t0 latIndex 1809 lonIndex 653 elevation 3.915338283287048e+03
DEM cell: t0 latIndex 1248 lonIndex 2816 elevation 1.597661494047886e+03
DEM cell: t0 latIndex 1249 lonIndex 2816 elevation 1.603667936647203e+03
DEM cell: t0 latIndex 1248 lonIndex 2817 elevation 1.604658335707728e+03
DEM cell: t0 latIndex 1249 lonIndex 2817 elevation 1.605664779237111e+03
DEM cell: t0 latIndex 1231 lonIndex 2793 elevation 8.766249753387451e+02
DEM cell: t0 latIndex 1232 lonIndex 2793 elevation 8.306313965465546e+02
DEM cell: t0 latIndex 1231 lonIndex 2794 elevation 8.766218011874729e+02
DEM cell: t0 latIndex 1232 lonIndex 2794 elevation 8.436282233253479e+02
DEM cell: t0 latIndex 1248 lonIndex 2800 elevation 1.355712027490404e+03
DEM cell: t0 latIndex 1249 lonIndex 2800 elevation 1.409718455208672e+03
DEM cell: t0 latIndex 1248 lonIndex 2801 elevation 1.375708869150247e+03
DEM cell: t0 latIndex 1249 lonIndex 2801 elevation 1.425715297798581e+03
DEM cell: t0 latIndex 1240 lonIndex 2793 elevation 9.406827662090301e+02
DEM cell: t0 latIndex 1241 lonIndex 2793 elevation 1.012689187416840e+03
DEM cell: t0 latIndex 1240 lonIndex 2794 elevation 9.406796004283481e+02
DEM cell: t0 latIndex 1241 lonIndex 2794 elevation 1.007686022566223e+03
DEM cell: t0 latIndex 1240 lonIndex 2784 elevation 9.277112582351684e+02
DEM cell: t0 latIndex 1241 lonIndex 2784 elevation 9.847176710723877e+02
DEM cell: t0 latIndex 1240 lonIndex 2785 elevation 9.287080924544864e+02
DEM cell: t0 latIndex 1241 lonIndex 2785 elevation 9.967145062217712e+02
DEM cell: t0 latIndex 1240 lonIndex 2786 elevation 9.207049266738044e+02
DEM cell: t0 latIndex 1241 lonIndex 2786 elevation 9.997113413711547e+02
DEM cell: t0 latIndex 1242 lonIndex 2784 elevation 9.297240839096070e+02
DEM cell: t0 latIndex 1242 lonIndex 2785 elevation 1.020720919989056e+03
DEM cell: t0 latIndex 1240 lonIndex 2783 elevation 9.097144240158505e+02
DEM cell: t0 latIndex 1241 lonIndex 2783 elevation 8.897208359230041e+02
DEM cell: t0 latIndex 1241 lonIndex 2782 elevation 8.387240007736206e+02
DEM cell: t0 latIndex 1242 lonIndex 2782 elevation 8.257304117507088e+02
DEM cell: t0 latIndex 1242 lonIndex 2783 elevation 8.767272478301578e+02
DEM cell: t0 latIndex 1243 lonIndex 2784 elevation 9.347304967468261e+02
DEM cell: t0 latIndex 1244 lonIndex 2784 elevation 9.137369095840454e+02
DEM cell: t0 latIndex 1243 lonIndex 2785 elevation 9.877273337563408e+02
DEM cell: t0 latIndex 1244 lonIndex 2785 elevation 9.537337475236257e+02
DEM cell: t0 latIndex 1243 lonIndex 2782 elevation 8.687368227277967e+02
DEM cell: t0 latIndex 1243 lonIndex 2783 elevation 8.967336597373114e+02
DEM cell: t0 latIndex 1244 lonIndex 2782 elevation 7.297432337048849e+02
DEM cell: t0 latIndex 1244 lonIndex 2783 elevation 8.807400716444652e+02
DEM cell: t0 latIndex 1242 lonIndex 2780 elevation 6.947367395918104e+02
DEM cell: t0 latIndex 1243 lonIndex 2780 elevation 6.547431487087673e+02
DEM cell: t0 latIndex 1242 lonIndex 2781 elevation 7.347335756712596e+02
DEM cell: t0 latIndex 1243 lonIndex 2781 elevation 6.997399857182820e+02
DEM cell: t0 latIndex 1244 lonIndex 2780 elevation 6.207495578257243e+02
DEM cell: t0 latIndex 1244 lonIndex 2781 elevation 6.667463957653046e+02
direct location result: latitude 8.034866377791225e-01 longitude 2.149826025000848e-01 elevation 6.766765876031756e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034863471945004e-01 longitude 2.149835637695512e-01 elevation 6.803274355079967e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034860569079852e-01 longitude 2.149845245803098e-01 elevation 6.839735377672140e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
DEM cell: t0 latIndex 1242 lonIndex 2786 elevation 1.042717756068505e+03
DEM cell: t0 latIndex 1243 lonIndex 2786 elevation 1.034724170765855e+03
DEM cell: t0 latIndex 1242 lonIndex 2787 elevation 1.053714592147954e+03
DEM cell: t0 latIndex 1243 lonIndex 2787 elevation 1.076721007775370e+03
direct location result: latitude 8.034857669188987e-01 longitude 2.149854849334069e-01 elevation 6.876149051242718e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
DEM cell: t0 latIndex 1243 lonIndex 2779 elevation 6.157463116992526e+02
DEM cell: t0 latIndex 1244 lonIndex 2779 elevation 5.807527198861440e+02
direct location result: latitude 8.034854772265824e-01 longitude 2.149864448298378e-01 elevation 6.912515480966839e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034781401708480e-01 longitude 2.149980710325160e-01 elevation 8.070092894686161e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034766451042998e-01 longitude 2.150008551040355e-01 elevation 8.298238649580798e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034756953353469e-01 longitude 2.150028138458636e-01 elevation 8.439627365661802e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034755257729028e-01 longitude 2.150035917614869e-01 elevation 8.456884143626966e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034753542091236e-01 longitude 2.150043727022487e-01 elevation 8.474459228337357e+02
direct location: date 2018-11-17T09:28:19.12459483660332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034751805962782e-01 longitude 2.150051567402929e-01 elevation 8.492360215613375e+02
sensor datation: sensorName s0 lineNumber 2.827000000000000e+04 date 2018-11-17T09:28:19.12491883400332Z
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
transform: index 9367 body r -1.584446866682885e-01 -8.881578120866489e-04 1.564889289424889e-04 -9.873674432314973e-01 Ω -1.314379583539358e-07 1.929883314868440e-09 -7.292103298515577e-05 ΩDot -1.238180697668843e-16 -4.429300632436523e-17 2.220189192587132e-19 spacecraft p -1.997167340633883e+06 2.586430434855095e+06 -6.271431123986675e+06 v 8.093431637307245e+03 -1.116772142469675e+04 -7.194252862198937e+03 a -1.116003951062058e+03 -1.540338922892465e+03 -2.412844583841287e+02 r -4.479170084500233e-01 -2.570044435935310e-01 7.890101945163001e-01 3.328392742206238e-01 Ω 1.817282407156245e-03 6.626536544364022e-04 7.166540889464018e-04 ΩDot 3.596261918459965e-05 1.762501149190991e-04 2.132352467042442e-04
direct location result: latitude 8.034861115536909e-01 longitude 2.149827595350881e-01 elevation 6.783715396658736e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034858212636020e-01 longitude 2.149837203567396e-01 elevation 6.820177172318605e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034855312710353e-01 longitude 2.149846807205700e-01 elevation 6.856591585036738e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034852415753052e-01 longitude 2.149856406276390e-01 elevation 6.892958742637608e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034849521757428e-01 longitude 2.149866000789734e-01 elevation 6.929278751330255e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034779039700788e-01 longitude 2.149977891017566e-01 elevation 8.040903082873930e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034764271073798e-01 longitude 2.150005456251370e-01 elevation 8.266152946789650e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034754231341417e-01 longitude 2.150025864059567e-01 elevation 8.416165884873407e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034751905258215e-01 longitude 2.150034597399208e-01 elevation 8.443453426151726e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034750171426467e-01 longitude 2.150042434351802e-01 elevation 8.461318032601336e+02
direct location: date 2018-11-17T09:28:19.12491883400332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034748416752459e-01 longitude 2.150050302808785e-01 elevation 8.479514137281045e+02
sensor datation: sensorName s0 lineNumber 2.827100000000000e+04 date 2018-11-17T09:28:19.12524283140332Z
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034855854619085e-01 longitude 2.149829168583992e-01 elevation 6.800662978562299e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034852954660465e-01 longitude 2.149838772326810e-01 elevation 6.837078100397765e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034850057670984e-01 longitude 2.149848371500809e-01 elevation 6.873445954856186e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034847163643943e-01 longitude 2.149857966116262e-01 elevation 6.909766648201133e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034844272572674e-01 longitude 2.149867556183403e-01 elevation 6.946040286302061e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034776503522245e-01 longitude 2.149975340220436e-01 elevation 8.014503496617313e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034761982247219e-01 longitude 2.150002531119613e-01 elevation 8.235818314577672e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034752047351187e-01 longitude 2.150022780290727e-01 elevation 8.384163523875080e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034748559822209e-01 longitude 2.150033271441628e-01 elevation 8.429929974173764e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034746807741404e-01 longitude 2.150041136022667e-01 elevation 8.448084979820026e+02
direct location: date 2018-11-17T09:28:19.12524283140332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034745034462479e-01 longitude 2.150049032646113e-01 elevation 8.466577147154819e+02
sensor datation: sensorName s0 lineNumber 2.827200000000000e+04 date 2018-11-17T09:28:19.12556682880332Z
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034850594593131e-01 longitude 2.149830740537422e-01 elevation 6.817596725910751e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034847697572988e-01 longitude 2.149840339812393e-01 elevation 6.853965253139291e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034844803516044e-01 longitude 2.149849934527626e-01 elevation 6.890286607118401e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034841912415632e-01 longitude 2.149859524693356e-01 elevation 6.926560893741186e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034838980952460e-01 longitude 2.149869175875534e-01 elevation 6.963477300883122e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034773811105287e-01 longitude 2.149973025827283e-01 elevation 7.990591927384747e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034759590857122e-01 longitude 2.149999761285500e-01 elevation 8.207115658936996e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034749781958609e-01 longitude 2.150019819791355e-01 elevation 8.353456457015349e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034745221121821e-01 longitude 2.150031935361046e-01 elevation 8.416299581679682e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034743450741185e-01 longitude 2.150039827647494e-01 elevation 8.434745795160588e+02
direct location: date 2018-11-17T09:28:19.12556682880332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034741658802406e-01 longitude 2.150047752520647e-01 elevation 8.453534899946595e+02
sensor datation: sensorName s0 lineNumber 2.827300000000000e+04 date 2018-11-17T09:28:19.12589082620332Z
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
transform: index 9368 body r -1.584447226656651e-01 -8.881578064271043e-04 1.564889612933425e-04 -9.873674374549306e-01 Ω -1.314379583540596e-07 1.929883314824150e-09 -7.292103298515575e-05 ΩDot -1.238180693452490e-16 -4.429300582996081e-17 2.220189185120558e-19 spacecraft p -1.997159247754292e+06 2.586419266380107e+06 -6.271438318355227e+06 v 8.092333508739787e+03 -1.116921194570312e+04 -7.194479291258267e+03 a -1.080253304207286e+03 -1.440703052233391e+03 -2.115737164041393e+02 r -4.479171556600077e-01 -2.570046781213964e-01 7.890104406288291e-01 3.328383115986899e-01 Ω 1.817316212887617e-03 6.628269035324033e-04 7.168600329624706e-04 ΩDot 3.164883823458545e-05 1.702480831396255e-04 1.986527941775519e-04
direct location result: latitude 8.034845335439709e-01 longitude 2.149832311290860e-01 elevation 6.834516941253315e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034842441354411e-01 longitude 2.149841906103497e-01 elevation 6.870838931412167e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034839509473890e-01 longitude 2.149851558047580e-01 elevation 6.907762192663471e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034836567014476e-01 longitude 2.149861225927678e-01 elevation 6.944853731187388e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034833639821339e-01 longitude 2.149870870625394e-01 elevation 6.981702363457604e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034770969999045e-01 longitude 2.149970936721582e-01 elevation 7.969044247220546e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034757098800366e-01 longitude 2.149997143928589e-01 elevation 8.180014804468951e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034747435786753e-01 longitude 2.150016981668857e-01 elevation 8.324034773648349e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034741889202773e-01 longitude 2.150030589138596e-01 elevation 8.402561516723064e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034740100472242e-01 longitude 2.150038509206318e-01 elevation 8.421299735198463e+02
direct location: date 2018-11-17T09:28:19.12589082620332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034738289819376e-01 longitude 2.150046462411378e-01 elevation 8.440386641183494e+02
sensor datation: sensorName s0 lineNumber 2.827400000000000e+04 date 2018-11-17T09:28:19.12621482360332Z
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034840043074890e-01 longitude 2.149833932328766e-01 elevation 6.851965881007317e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034837085182460e-01 longitude 2.149843623698809e-01 elevation 6.889303164468179e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034834142749974e-01 longitude 2.149853291592384e-01 elevation 6.926394462134429e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034831215601124e-01 longitude 2.149862936277078e-01 elevation 6.963242577232501e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034828303562845e-01 longitude 2.149872558015554e-01 elevation 6.999850261487917e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034767992755202e-01 longitude 2.149969053676118e-01 elevation 7.949662719291899e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034754508877961e-01 longitude 2.149994674704398e-01 elevation 8.154471195087370e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034745010011134e-01 longitude 2.150014264038878e-01 elevation 8.295879778091600e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034738564144045e-01 longitude 2.150029232549413e-01 elevation 8.388714522666150e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034736757014795e-01 longitude 2.150037180472429e-01 elevation 8.407745523850105e+02
direct location: date 2018-11-17T09:28:19.12621482360332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034734927594821e-01 longitude 2.150045162089748e-01 elevation 8.427131075345702e+02
sensor datation: sensorName s0 lineNumber 2.827500000000000e+04 date 2018-11-17T09:28:19.12653882100332Z
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034834650470514e-01 longitude 2.149835705156732e-01 elevation 6.871009929198575e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034831708104887e-01 longitude 2.149845373003178e-01 elevation 6.908100351139315e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034828781039869e-01 longitude 2.149855017614823e-01 elevation 6.944947320382794e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034825869102004e-01 longitude 2.149864639254930e-01 elevation 6.981553594849091e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034822972121003e-01 longitude 2.149874238181954e-01 elevation 7.017921882113734e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034764891090868e-01 longitude 2.149967359008398e-01 elevation 7.932260930306617e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034751824156783e-01 longitude 2.149992349022573e-01 elevation 8.130436040854728e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034742505918092e-01 longitude 2.150011665005881e-01 elevation 8.268971007924486e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034735245992095e-01 longitude 2.150027865574396e-01 elevation 8.374757857096932e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034733420416067e-01 longitude 2.150035841425556e-01 elevation 8.394082406366659e+02
direct location: date 2018-11-17T09:28:19.12653882100332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034731572176724e-01 longitude 2.150043851534342e-01 elevation 8.413767435665499e+02
sensor datation: sensorName s0 lineNumber 2.827600000000000e+04 date 2018-11-17T09:28:19.12686281840332Z
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
transform: index 9369 body r -1.584447586673350e-01 -8.881578007668832e-04 1.564889936480546e-04 -9.873674316776738e-01 Ω -1.314379583541834e-07 1.929883314779866e-09 -7.292103298515577e-05 ΩDot -1.238180689236135e-16 -4.429300533555636e-17 2.220189177653981e-19 spacecraft p -1.997151155954951e+06 2.586408096464416e+06 -6.271445512935354e+06 v 8.091271130266433e+03 -1.117060283063097e+04 -7.194676009643846e+03 a -1.044503457528476e+03 -1.341066578308776e+03 -1.818631308446282e+02 r -4.479173029656718e-01 -2.570049126060395e-01 7.890106867331848e-01 3.328373488975490e-01 Ω 1.817345704800610e-03 6.629941506377007e-04 7.170513945397830e-04 ΩDot 2.733498444375428e-05 1.642460865486166e-04 1.840703496106509e-04
direct location result: latitude 8.034829263055876e-01 longitude 2.149837470159440e-01 elevation 6.889971765945945e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034826336114423e-01 longitude 2.149847114637728e-01 elevation 6.926816957627383e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034823424316320e-01 longitude 2.149856736119741e-01 elevation 6.963421196761177e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034820527490903e-01 longitude 2.149866334864504e-01 elevation 6.999787196835825e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034817645470610e-01 longitude 2.149875911126339e-01 elevation 7.035917622113589e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034761677048545e-01 longitude 2.149965834455797e-01 elevation 7.916647288555585e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034749048302526e-01 longitude 2.149990161298855e-01 elevation 8.107851023370356e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034739925202281e-01 longitude 2.150009181968722e-01 elevation 8.243281503278567e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034732535744913e-01 longitude 2.150025578599207e-01 elevation 8.351129417466944e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034730090742463e-01 longitude 2.150034491928779e-01 elevation 8.380309321979194e+02
direct location: date 2018-11-17T09:28:19.12686281840332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034728223632561e-01 longitude 2.150042530606624e-01 elevation 8.400294644407792e+02
sensor datation: sensorName s0 lineNumber 2.827700000000000e+04 date 2018-11-17T09:28:19.12718681580332Z
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034823880765704e-01 longitude 2.149839227504206e-01 elevation 6.908852429504817e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034820969147108e-01 longitude 2.149848848767784e-01 elevation 6.945454001321826e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034818072516638e-01 longitude 2.149858447270533e-01 elevation 6.981817088394623e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034815190706375e-01 longitude 2.149868023267313e-01 elevation 7.017944360609551e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034812323551419e-01 longitude 2.149877577008400e-01 elevation 7.053838439770665e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034758362031313e-01 longitude 2.149964462828335e-01 elevation 7.902640378623594e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034746185371490e-01 longitude 2.149988105416534e-01 elevation 8.086652340027457e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034737269686929e-01 longitude 2.150006812236585e-01 elevation 8.218782262415143e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034730011002850e-01 longitude 2.150023010970906e-01 elevation 8.324549700724398e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034726768037741e-01 longitude 2.150033131984376e-01 elevation 8.366425574495763e+02
direct location: date 2018-11-17T09:28:19.12718681580332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034724882006824e-01 longitude 2.150041199307748e-01 elevation 8.386711993450938e+02
sensor datation: sensorName s0 lineNumber 2.827800000000000e+04 date 2018-11-17T09:28:19.12751081320332Z
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
DEM cell: t0 latIndex 1241 lonIndex 2781 elevation 7.737271656242370e+02
direct location result: latitude 8.034818503571547e-01 longitude 2.149840977198244e-01 elevation 6.927652369134296e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034815607175569e-01 longitude 2.149850575398944e-01 elevation 6.964011914450123e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034812725614497e-01 longitude 2.149860151071217e-01 elevation 7.000135410976690e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034809858723084e-01 longitude 2.149869704465865e-01 elevation 7.036025485941086e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034779956693721e-01 longitude 2.149920176475284e-01 elevation 7.502040425837138e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034754957031464e-01 longitude 2.149963227453380e-01 elevation 7.890065316861063e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034743239202250e-01 longitude 2.149986175620463e-01 elevation 8.066777501202871e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034734541552684e-01 longitude 2.150004552473356e-01 elevation 8.195438593706660e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034727421461642e-01 longitude 2.150020541475587e-01 elevation 8.299001135596468e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034723452368835e-01 longitude 2.150031761455188e-01 elevation 8.352430095654670e+02
direct location: date 2018-11-17T09:28:19.12751081320332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034721547367586e-01 longitude 2.150039857498851e-01 elevation 8.373018396690280e+02
sensor datation: sensorName s0 lineNumber 2.827900000000000e+04 date 2018-11-17T09:28:19.12783481060332Z
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675073979757700e-03 -1.455869843117481e-02 9.998926134476405e-01 lightTime false aberration false refraction false
transform: index 9370 body r -1.584447946689907e-01 -8.881577951066632e-04 1.564890260027538e-04 -9.873674259004180e-01 Ω -1.314379583543072e-07 1.929883314735572e-09 -7.292103298515577e-05 ΩDot -1.238180685019781e-16 -4.429300484115192e-17 2.220189170187407e-19 spacecraft p -1.997143065200118e+06 2.586396925207659e+06 -6.271452707697343e+06 v 8.090244501492019e+03 -1.117189407867757e+04 -7.194843017558988e+03 a -1.008754382913370e+03 -1.241429493725617e+03 -1.521527079090525e+02 r -4.479174503627756e-01 -2.570051470512479e-01 7.890109328281188e-01 3.328363861229399e-01 Ω 1.817370882825691e-03 6.631553957239936e-04 7.172281736707170e-04 ΩDot 2.302105874949273e-05 1.582441209968415e-04 1.694879125788701e-04
direct location result: latitude 8.034813131445031e-01 longitude 2.149842719248564e-01 elevation 6.946372031899516e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675042663896624e-03 -1.456183361787985e-02 9.998925678460457e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034810250172490e-01 longitude 2.149852294536607e-01 elevation 6.982491127248313e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.675011353747724e-03 -1.456496881978930e-02 9.998925222343867e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034807383583591e-01 longitude 2.149861847525656e-01 elevation 7.018376578533130e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674980049311240e-03 -1.456810403689894e-02 9.998924766126629e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034804531515740e-01 longitude 2.149871378462499e-01 elevation 7.054030970968001e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674948750587419e-03 -1.457123926920459e-02 9.998924309808744e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034772479117380e-01 longitude 2.149925105079432e-01 elevation 7.554259544974287e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674917457576505e-03 -1.457437451670205e-02 9.998923853390211e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034751472160672e-01 longitude 2.149962112990982e-01 elevation 7.878761228217490e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674886170278741e-03 -1.457750977938711e-02 9.998923396871029e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034740214410198e-01 longitude 2.149984364845999e-01 elevation 8.048153762291109e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674854888694373e-03 -1.458064505725559e-02 9.998922940251196e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034731743163441e-01 longitude 2.150002399065484e-01 elevation 8.173212888576050e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674823612823641e-03 -1.458378035030327e-02 9.998922483530713e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034724768554609e-01 longitude 2.150018167908085e-01 elevation 8.274460918626510e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674792342666794e-03 -1.458691565852597e-02 9.998922026709579e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034720143803415e-01 longitude 2.150030380202833e-01 elevation 8.338321804411532e+02
direct location: date 2018-11-17T09:28:19.12783481060332Z position 0.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 los 1.674761078224073e-03 -1.459005098191950e-02 9.998921569787793e-01 lightTime false aberration false refraction false
direct location result: latitude 8.034718219783675e-01 longitude 2.150038505039797e-01 elevation 8.359212754610172e+02
......@@ -8,7 +8,7 @@ DEM cell: t0 latIndex 122 lonIndex 99 elevation 1.778606495649060e+03
DEM cell: t0 latIndex 122 lonIndex 100 elevation 1.809481571226391e+03
DEM cell: t0 latIndex 123 lonIndex 99 elevation 1.772149770526270e+03
DEM cell: t0 latIndex 123 lonIndex 100 elevation 1.804520334312959e+03
inverse location: sensorName s0 latitude -3.930524233859007e-01 longitude 2.502596047891660e+00 elevation 1.785429914217195e+03 minLine 0 maxLine 2000 lightTime true aberration true
inverse location: sensorName s0 latitude -3.930524233859007e-01 longitude 2.502596047891660e+00 elevation 1.785429914217195e+03 minLine 0 maxLine 2000 lightTime true aberration true refraction false
sensor: sensorName s0 nbPixels 2000 position 1.500000000000000e+00 0.000000000000000e+00 -2.000000000000000e-01
sensor mean plane: sensorName s0 minLine 0 maxLine 2000 maxEval 50 accuracy 1.000000000000000e-02 normal 1.000000000000000e+00 0.000000000000000e+00 0.000000000000000e+00 cachedResults 0
sensor datation: sensorName s0 lineNumber 1.000000000000000e+03 date 2012-01-01T12:30:00.00000000000000Z
......