Google Earth Engine#
Google Earth Engine is a cloud computing platform with a multi-petabyte catalog of satellite imagery and geospatial datasets. During the past few years, this platform has become very popular in the geospatial community because it enables large-scale remote sensing studies (i.e. continental- to global-scale analysis using medium resolution imagery).
There are both JavaScript and Python APIs for using Earth Engine. We write code using these APIs on our local machines which is then executed remotely on Google’s servers. Therefore we never have to download raw datasets. Instead we return only the results we need from our analysis.
In this lecture, we will demonstrate how to use Earth Engine Python API to track the area of an ice cap in western Greenland between 2015 and 2025. The ice cap is a lobe of the larger Tasersiap Sermia. We will use Landsat data which is the longest continuous satellite record of the Earth’s land surface. There are a number of different Landsat datasets, related to satellite platform and processing level. We will use the Landsat 8, Collection 2, Tier 1 Surface Reflectance product.
The geemap package will make this analysis much easier. geemap enables us to visualize Earth Engine datasets interactively within a Jupyter environment with minimal coding. As we will see in this demo, this will be very important for debugging our code.
Note
Students will need to register for an Earth Engine account before executing the code in this notebook.
Install Earth Engine#
It is recommended to use conda to install geemap and its dependencies. It is a good practice to install this package to a new environment to reduce risk of version conflicts with other geospatial packages.
conda create -n gee python
conda activate gee
conda install -c conda-forge geemap
Note
Installing geemap will automatically install all of its dependencies, including the earthengine-api package.
# Import packages
import ee
import geemap
import time
import numpy as np
Authenticate and initialize#
We will need to authenticate Earth Engine before using it. After running the following code cell, a pop-up window will appear and we will be asked to authorize the Google Earth Engine Authenticator.
The first time we run this cell, we will also have to select a Cloud Project to use for Earth Engine. Once we have confirmed the Cloud Project, we will be provided with a verification code which we can paste into the box that will appear below the cell.
Authentication for local installations should be a one-time thing since it generates a persistent authorization token that is stored locally in the .config folder on our computer. But we will have to run Initialize for each new Python session.
# Authenticate
ee.Authenticate()
# Change default project name
ee.Initialize(project='ee-icecap')
Interactive map#
geemap provides functionality for visualizing data in Earth Engine interactively. To demonstrate, we will define a square region over an area of western Greenland to plot the Tasersiap Sermia lobe.
latitude = 66.128
longitude = -50.306
size = 21000
We can now convert this float values to an Earth Engine geometry data type which is the format in which GEE stores geospatial shapes. In the first line, we define a single point, and then we buffer the point to a square of the the size we want.
point = ee.Geometry.Point(longitude, latitude)
region = point.buffer(size/2).bounds()
type(region)
ee.geometry.Geometry
If we plot that region, we will see that we are looking in the right place.
Map = geemap.Map() # Make empty map
Map.addLayer(region) # Add region layer
Map.centerObject(region, zoom=10) # Center on region
Map # Display
Plot data#
We’re ready to plot some data. To start with, we will visualize a single Landsat image. To narrow our search, we will define a time period by setting a start and an end date.
date_start = '2023-07-01'
date_end = '2023-08-31'
Collection 2 is the “version 2” of the standard reprocessing of the Landsat archive. Tier 1 is the highest-quality data, and Surface Reflectance means that the data has been corrected to remove the effects of the atmosphere. The reflectance values from multiple scenes acquired during different times of the day, in different lighting conditions therefore should be comparable.
We can acquire all Landsat products within our specified spatial and temporal bounds using ImageCollection function.
# Get Landsat 8 image collection
image_collection = ee.ImageCollection("LANDSAT/LC08/C02/T1_L2")
# Filter to desired region and date bounds
image_collection = image_collection.filterBounds(region)
image_collection = image_collection.filterDate(date_start, date_end)
type(image_collection)
ee.imagecollection.ImageCollection
An ImageCollection contains a list of features (images) and bands (e.g. red, blue, NIR) that the images have in common. Each Image contains its own bands which contain actual data as well as properties which contains metadata associated with each image such as image acquisition times, cloud cover, correction coefficients.
image_collection
ImageCollection LANDSAT/LC08/C02/T1_L2 (13 elements)
- type:ImageCollection
- id:LANDSAT/LC08/C02/T1_L2
- version:1759687386285831
bands: []
properties: Object (25 properties)
date_range: [1365638400000, 1654560000000]
- 0:1365638400000
- 1:1654560000000
- description:<p>This dataset contains atmospherically corrected surface reflectance and land surface temperature derived from the data produced by the Landsat 8 OLI/TIRS sensors. These images contain 5 visible and near-infrared (VNIR) bands and 2 short-wave infrared (SWIR) bands processed to orthorectified surface reflectance, and one thermal infrared (TIR) band processed to orthorectified surface temperature. They also contain intermediate bands used in calculation of the ST products, as well as QA bands.</p><p>Landsat 8 SR products are created with the Land Surface Reflectance Code (LaSRC). All Collection 2 ST products are created with a single-channel algorithm jointly created by the Rochester Institute of Technology (RIT) and National Aeronautics and Space Administration (NASA) Jet Propulsion Laboratory (JPL).</p><p>Strips of collected data are packaged into overlapping "scenes" covering approximately 170km x 183km using a <a href="https://landsat.gsfc.nasa.gov/about/worldwide-reference-system">standardized reference grid</a>.</p><p>Some assets have only SR data, in which case ST bands are present but empty. For assets with both ST and SR bands, 'PROCESSING_LEVEL' is set to 'L2SP'. For assets with only SR bands, 'PROCESSING_LEVEL' is set to 'L2SR'.</p><p><a href="/earth-engine/guides/landsat">Additional documentation and usage examples.</a></p><p>Data provider notes:</p><ul><li><p>Data products must contain both optical and thermal data to be successfully processed to surface temperature, as ASTER NDVI is required to temporally adjust the ASTER GED product to the target Landsat scene. Therefore, night time acquisitions cannot be processed to surface temperature.</p></li><li><p>A known error exists in the surface temperature retrievals relative to clouds and possibly cloud shadows. The characterization of these issues has been documented by <a href="https://doi.org/10.3390/rs61111244">Cook et al., (2014)</a>.</p></li></ul><p><b>Provider: <a href="https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2-level-2-science-products">USGS</a></b><br><p><b>Resolution</b><br>30 meters </p><p><b>Revisit Interval</b><br> 16 days </p><p><b>Bands</b><table class="eecat"><tr><th scope="col">Name</th><th scope="col">Units</th><th scope="col">Min</th><th scope="col">Max</th><th scope="col">Scale</th><th scope="col">Offset</th><th scope="col">Wavelength</th><th scope="col">Description</th></tr><tr><td>SR_B1</td><td></td><td> 1 </td><td> 65455 </td><td>2.75e-05</td><td>-0.2</td><td>0.435-0.451 μm</td><td><p>Band 1 (ultra blue, coastal aerosol) surface reflectance</p></td></tr><tr><td>SR_B2</td><td></td><td> 1 </td><td> 65455 </td><td>2.75e-05</td><td>-0.2</td><td>0.452-0.512 μm</td><td><p>Band 2 (blue) surface reflectance</p></td></tr><tr><td>SR_B3</td><td></td><td> 1 </td><td> 65455 </td><td>2.75e-05</td><td>-0.2</td><td>0.533-0.590 μm</td><td><p>Band 3 (green) surface reflectance</p></td></tr><tr><td>SR_B4</td><td></td><td> 1 </td><td> 65455 </td><td>2.75e-05</td><td>-0.2</td><td>0.636-0.673 μm</td><td><p>Band 4 (red) surface reflectance</p></td></tr><tr><td>SR_B5</td><td></td><td> 1 </td><td> 65455 </td><td>2.75e-05</td><td>-0.2</td><td>0.851-0.879 μm</td><td><p>Band 5 (near infrared) surface reflectance</p></td></tr><tr><td>SR_B6</td><td></td><td> 1 </td><td> 65455 </td><td>2.75e-05</td><td>-0.2</td><td>1.566-1.651 μm</td><td><p>Band 6 (shortwave infrared 1) surface reflectance</p></td></tr><tr><td>SR_B7</td><td></td><td> 1 </td><td> 65455 </td><td>2.75e-05</td><td>-0.2</td><td>2.107-2.294 μm</td><td><p>Band 7 (shortwave infrared 2) surface reflectance</p></td></tr><tr><td>SR_QA_AEROSOL</td><td></td><td></td><td></td><td></td><td></td><td></td><td><p>Aerosol attributes</p></td></tr><tr><td colspan=100> Bitmask for SR_QA_AEROSOL <ul><li> Bit 0: Fill <ul></ul></li><li> Bit 1: Aerosol retrieval - valid <ul></ul></li><li> Bit 2: Water pixel <ul></ul></li><li> Bit 3: Unused <ul></ul></li><li> Bit 4: Unused <ul></ul></li><li> Bit 5: Interpolated Aerosol <ul></ul></li><li> Bits 6-7: Aerosol Level <ul><li>0: Climatology</li><li>1: Low</li><li>2: Medium</li><li>3: High</li></ul></li></ul></td></tr><tr><td>ST_B10</td><td>Kelvin</td><td> 0 </td><td> 65535 </td><td>0.00341802</td><td>149</td><td>10.60-11.19 μm</td><td><p>Band 10 surface temperature. If 'PROCESSING_LEVEL' is set to 'L2SR', this band is fully masked out.</p></td></tr><tr><td>ST_ATRAN</td><td></td><td> 0 </td><td> 10000 </td><td>0.0001</td><td></td><td></td><td><p>Atmospheric Transmittance. If 'PROCESSING_LEVEL' is set to 'L2SR', this band is fully masked out.</p></td></tr><tr><td>ST_CDIST</td><td>km</td><td> 0 </td><td> 24000 </td><td>0.01</td><td></td><td></td><td><p>Pixel distance to cloud. If 'PROCESSING_LEVEL' is set to 'L2SR', this band is fully masked out.</p></td></tr><tr><td>ST_DRAD</td><td>W/(m^2*sr*um)/ DN</td><td> 0 </td><td> 28000 </td><td>0.001</td><td></td><td></td><td><p>Downwelled Radiance. If 'PROCESSING_LEVEL' is set to 'L2SR', this band is fully masked out.</p></td></tr><tr><td>ST_EMIS</td><td></td><td> 0 </td><td> 10000 </td><td>0.0001</td><td></td><td></td><td><p>Emissivity of Band 10 estimated from ASTER GED. If 'PROCESSING_LEVEL' is set to 'L2SR', this band is fully masked out.</p></td></tr><tr><td>ST_EMSD</td><td></td><td> 0 </td><td> 10000 </td><td>0.0001</td><td></td><td></td><td><p>Emissivity standard deviation. If 'PROCESSING_LEVEL' is set to 'L2SR', this band is fully masked out.</p></td></tr><tr><td>ST_QA</td><td>K</td><td> 0 </td><td> 32767 </td><td>0.01</td><td></td><td></td><td><p>Uncertainty of the Surface Temperature band. If 'PROCESSING_LEVEL' is set to 'L2SR', this band is fully masked out.</p></td></tr><tr><td>ST_TRAD</td><td>W/(m^2*sr*um)/ DN</td><td> 0 </td><td> 22000 </td><td>0.001</td><td></td><td></td><td><p>Thermal band converted to radiance. If 'PROCESSING_LEVEL' is set to 'L2SR', this band is fully masked out.</p></td></tr><tr><td>ST_URAD</td><td>W/(m^2*sr*um)/ DN</td><td> 0 </td><td> 28000 </td><td>0.001</td><td></td><td></td><td><p>Upwelled Radiance. If 'PROCESSING_LEVEL' is set to 'L2SR', this band is fully masked out.</p></td></tr><tr><td>QA_PIXEL</td><td></td><td></td><td></td><td></td><td></td><td></td><td><p>Pixel quality attributes generated from the CFMASK algorithm.</p></td></tr><tr><td colspan=100> Bitmask for QA_PIXEL <ul><li> Bit 0: Fill <ul></ul></li><li> Bit 1: Dilated Cloud <ul></ul></li><li> Bit 2: Cirrus (high confidence) <ul></ul></li><li> Bit 3: Cloud <ul></ul></li><li> Bit 4: Cloud Shadow <ul></ul></li><li> Bit 5: Snow <ul></ul></li><li> Bit 6: Clear <ul><li>0: Cloud or Dilated Cloud bits are set</li><li>1: Cloud and Dilated Cloud bits are not set</li></ul></li><li> Bit 7: Water <ul></ul></li><li> Bits 8-9: Cloud Confidence <ul><li>0: None</li><li>1: Low</li><li>2: Medium</li><li>3: High</li></ul></li><li> Bits 10-11: Cloud Shadow Confidence <ul><li>0: None</li><li>1: Low</li><li>2: Medium</li><li>3: High</li></ul></li><li> Bits 12-13: Snow/Ice Confidence <ul><li>0: None</li><li>1: Low</li><li>2: Medium</li><li>3: High</li></ul></li><li> Bits 14-15: Cirrus Confidence <ul><li>0: None</li><li>1: Low</li><li>2: Medium</li><li>3: High</li></ul></li></ul></td></tr><tr><td>QA_RADSAT</td><td></td><td></td><td></td><td></td><td></td><td></td><td><p>Radiometric saturation QA</p></td></tr><tr><td colspan=100> Bitmask for QA_RADSAT <ul><li> Bit 0: Band 1 data saturated <ul></ul></li><li> Bit 1: Band 2 data saturated <ul></ul></li><li> Bit 2: Band 3 data saturated <ul></ul></li><li> Bit 3: Band 4 data saturated <ul></ul></li><li> Bit 4: Band 5 data saturated <ul></ul></li><li> Bit 5: Band 6 data saturated <ul></ul></li><li> Bit 6: Band 7 data saturated <ul></ul></li><li> Bit 7: Unused <ul></ul></li><li> Bit 8: Band 9 data saturated <ul></ul></li><li> Bit 9: Unused <ul></ul></li><li> Bit 10: Unused <ul></ul></li><li> Bit 11: Terrain occlusion <ul></ul></li></ul></td></tr></table><p><b>Image Properties</b><table class="eecat"><tr><th scope="col">Name</th><th scope="col">Type</th><th scope="col">Description</th></tr><tr><td>ALGORITHM_SOURCE_SURFACE_REFLECTANCE</td><td>STRING</td><td><p>Name and version of the surface reflectance algorithm.</p></td></tr><tr><td>ALGORITHM_SOURCE_SURFACE_TEMPERATURE</td><td>STRING</td><td><p>Name and version of the surface temperature algorithm.</p></td></tr><tr><td>CLOUD_COVER</td><td>DOUBLE</td><td><p>Percentage cloud cover (0-100), -1 = not calculated.</p></td></tr><tr><td>CLOUD_COVER_LAND</td><td>DOUBLE</td><td><p>Percentage cloud cover over land (0-100), -1 = not calculated.</p></td></tr><tr><td>COLLECTION_CATEGORY</td><td>STRING</td><td><p>Scene collection category, "T1" or "T2".</p></td></tr><tr><td>DATA_SOURCE_AIR_TEMPERATURE</td><td>STRING</td><td><p>Air temperature data source.</p></td></tr><tr><td>DATA_SOURCE_ELEVATION</td><td>STRING</td><td><p>Elevation data source.</p></td></tr><tr><td>DATA_SOURCE_OZONE</td><td>STRING</td><td><p>Ozone data source.</p></td></tr><tr><td>DATA_SOURCE_PRESSURE</td><td>STRING</td><td><p>Pressure data source.</p></td></tr><tr><td>DATA_SOURCE_REANALYSIS</td><td>STRING</td><td><p>Reanalysis data source.</p></td></tr><tr><td>DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION</td><td>STRING</td><td><p>TIRS stray light correction data source.</p></td></tr><tr><td>DATA_SOURCE_WATER_VAPOR</td><td>STRING</td><td><p>Water vapor data source.</p></td></tr><tr><td>DATE_PRODUCT_GENERATED</td><td>DOUBLE</td><td><p>Timestamp of the date when the product was generated.</p></td></tr><tr><td>EARTH_SUN_DISTANCE</td><td>DOUBLE</td><td><p>Earth-Sun distance (AU).</p></td></tr><tr><td>EPHEMERIS_TYPE</td><td>STRING</td><td><p>Identifier to inform the user of the orbital ephemeris type used: "DEFINITIVE" or "PREDICTIVE". If the field is not present, the user should assume "PREDICTIVE".</p></td></tr><tr><td>GEOMETRIC_RMSE_MODEL</td><td>DOUBLE</td><td><p>Combined RMSE (Root Mean Square Error) of the geometric residuals (meters) in both across-track and along-track directions.</p></td></tr><tr><td>GEOMETRIC_RMSE_MODEL_X</td><td>DOUBLE</td><td><p>RMSE (Root Mean Square Error) of the geometric residuals (meters) measured on the GCPs (Ground Control Points) used in geometric precision correction in the across-track direction.</p></td></tr><tr><td>GEOMETRIC_RMSE_MODEL_Y</td><td>DOUBLE</td><td><p>RMSE (Root Mean Square Error) of the geometric residuals (meters) measured on the GCPs (Ground Control Points) used in geometric precision correction in the along-track direction.</p></td></tr><tr><td>GEOMETRIC_RMSE_VERIFY</td><td>DOUBLE</td><td><p>RMSE of the geometric residuals (meters) measured on the terrain-corrected product independently using GLS2000.</p></td></tr><tr><td>GROUND_CONTROL_POINTS_MODEL</td><td>DOUBLE</td><td><p>Number of GCPs used in the precision correction process. This parameter is only present if the PROCESSING_LEVEL is L1TP.</p></td></tr><tr><td>GROUND_CONTROL_POINTS_VERIFY</td><td>DOUBLE</td><td><p>Number of GCPs (Ground Control Points) used in the verification of the terrain corrected product.</p></td></tr><tr><td>GROUND_CONTROL_POINTS_VERSION</td><td>DOUBLE</td><td><p>GCP dataset version used in the precision correction process. This parameter is only present if the PROCESSING_LEVEL is L1TP.</p></td></tr><tr><td>IMAGE_QUALITY_OLI</td><td>INT</td><td><p>Image quality of the OLI bands. 1 = worst, 9 = best, 0 = quality not calculated. For Landsat 8, this parameter is adjusted downward for scenes collected using the lower 12 bits from the OLI sensor (TRUNCATION_OLI = "LOWER").</p></td></tr><tr><td>IMAGE_QUALITY_TIRS</td><td>INT</td><td><p>Image quality of the TIRS bands. 1 = worst, 9 = best, 0 = quality not calculated. It is also adjusted downward for scenes processed with "SWITCHED" for the TIRS_SSM_POSITION_STATUS value.</p></td></tr><tr><td>L1_DATE_PRODUCT_GENERATED</td><td>STRING</td><td><p>Product generation date for the corresponding L1 product.</p></td></tr><tr><td>L1_LANDSAT_PRODUCT_ID</td><td>STRING</td><td><p>Landsat Product Identifier for the corresponding L1 product.</p></td></tr><tr><td>L1_PROCESSING_LEVEL</td><td>STRING</td><td><p>Processing Level for the corresponding L1 product.</p></td></tr><tr><td>L1_PROCESSING_SOFTWARE_VERSION</td><td>STRING</td><td><p>Processing software version for the corresponding L1 product.</p></td></tr><tr><td>LANDSAT_PRODUCT_ID</td><td>STRING</td><td><p>Landsat Product Identifier</p></td></tr><tr><td>LANDSAT_SCENE_ID</td><td>STRING</td><td><p>Short Landsat Scene Identifier</p></td></tr><tr><td>PROCESSING_LEVEL</td><td>STRING</td><td><p>"L2SP" when both SR and LST bands are present, or "L2SR" when only SR bands are present.</p></td></tr><tr><td>PROCESSING_SOFTWARE_VERSION</td><td>STRING</td><td><p>The processing software version that created the product.</p></td></tr><tr><td>ROLL_ANGLE</td><td>DOUBLE</td><td><p>The amount of spacecraft roll angle at the scene center. The roll value is given in the Yaw Steering Frame (YSF) reference, whose x-axis is aligned with the instantaneous ground track velocity vector. Rolls about this x-axis go by the right-hand rule: a positive roll results in the instruments pointing to the left of the ground track, while a negative roll results in the instrument pointing to the right.</p></td></tr><tr><td>SCENE_CENTER_TIME</td><td>STRING</td><td><p>Time of the observations as in ISO 8601 string.</p></td></tr><tr><td>SENSOR_ID</td><td>STRING</td><td><p>Name of the sensor.</p></td></tr><tr><td>SPACECRAFT_ID</td><td>STRING</td><td><p>Name of the spacecraft.</p></td></tr><tr><td>SUN_AZIMUTH</td><td>DOUBLE</td><td><p>Sun azimuth angle in degrees for the image center location at the image center acquisition time. A positive value indicates angles to the east or clockwise from the north. A negative value indicates angles to the west or counterclockwise from the north.</p></td></tr><tr><td>SUN_ELEVATION</td><td>DOUBLE</td><td><p>Sun elevation angle in degrees for the image center location at the image center acquisition time. A positive value indicates a daytime scene. A negative value indicates a nighttime scene. Note: For reflectance calculation, the sun zenith angle is needed, which is 90 - sun elevation angle.</p></td></tr><tr><td>TARGET_WRS_PATH</td><td>INT</td><td><p>Nearest WRS-2 path to the Line-ofSight (LOS) scene center of the image.</p></td></tr><tr><td>TARGET_WRS_ROW</td><td>INT</td><td><p>Nearest WRS-2 row to the LOS scene center of the image. Rows 880-889 are reserved for the north pole and 990-999 are reserved for the south pole, where WRS-2 is not defined.</p></td></tr><tr><td>TEMPERATURE_MAXIMUM_BAND_ST_B10</td><td>DOUBLE</td><td><p>Maximum achievable temperature value for Band 10.</p></td></tr><tr><td>TEMPERATURE_MINIMUM_BAND_ST_B10</td><td>DOUBLE</td><td><p>Minimum achievable temperature value for Band 10.</p></td></tr><tr><td>TIRS_SSM_MODEL</td><td>STRING</td><td><p>Indicates how the Landsat 8 TIRS Scene Select Mirror (SSM) position was determined.</p><ul><li><p>"FINAL" indicates final estimated encoder values generated after the switch event.</p></li><li><p>"ACTUAL" indicates actual encoder values.</p></li></ul></td></tr><tr><td>TIRS_SSM_POSITION_STATUS</td><td>STRING</td><td><ul><li><p>"NOMINAL" indicates the SSM was functioning normally for this scene.</p></li><li><p>"SWITCHED" indicates the SSM switched operating modes in the scene and may have TIRS image quality issues, which directly impact the IMAGE_QUALITY_TIRS value.</p></li><li><p>"ESTIMATED" indicates the SSM position was estimated, which may not be as accurate as the "NOMINAL" status.</p></li></ul></td></tr><tr><td>TRUNCATION_OLI</td><td>STRING</td><td><ul><li><p>"LOWER" indicates that the lower 12 bits were used.</p></li><li><p>"UPPER" indicates the upper 12 bits were used.</p></li></ul><p>The normal truncation mode is "UPPER".</p></td></tr><tr><td>WRS_PATH</td><td>INT</td><td><p>WRS path number of scene.</p></td></tr><tr><td>WRS_ROW</td><td>INT</td><td><p>WRS row number of scene.</p></td></tr></table><p><b>Terms of Use</b><br><p>Landsat datasets are federally created data and therefore reside in the public domain and may be used, transferred, or reproduced without copyright restriction.</p><p>Acknowledgement or credit of the USGS as data source should be provided by including a line of text citation such as the example shown below.</p><p>(Product, Image, Photograph, or Dataset Name) courtesy of the U.S. Geological Survey</p><p>Example: Landsat-7 image courtesy of the U.S. Geological Survey</p><p>See the <a href="https://www.usgs.gov/information-policies-and-instructions/usgs-visual-identity-system">USGS Visual Identity System Guidance</a> for further details on proper citation and acknowledgement of USGS products.</p><style> table.eecat { border: 1px solid black; border-collapse: collapse; font-size: 13px; } table.eecat td, tr, th { text-align: left; vertical-align: top; border: 1px solid gray; padding: 3px; } td.nobreak { white-space: nowrap; } </style>
keywords: List (11 elements)
- 0:cfmask
- 1:cloud
- 2:fmask
- 3:global
- 4:l8sr
- 5:landsat
- 6:lasrc
- 7:lst
- 8:reflectance
- 9:sr
- 10:usgs
- period:0
product_tags: List (10 elements)
- 0:global
- 1:sr
- 2:reflectance
- 3:l8sr
- 4:lst
- 5:cloud
- 6:lasrc
- 7:fmask
- 8:cfmask
- 9:lc08
- provider:USGS
- provider_url:https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2-level-2-science-products
- sample:https://mw1.google.com/ges/dd/images/LANDSAT_SR_sample.png
source_tags: ['landsat', 'usgs']
- 0:landsat
- 1:usgs
tags: List (11 elements)
- 0:cfmask
- 1:cloud
- 2:fmask
- 3:global
- 4:l8sr
- 5:landsat
- 6:lasrc
- 7:lst
- 8:reflectance
- 9:sr
- 10:usgs
- thumb:https://mw1.google.com/ges/dd/images/LANDSAT_SR_thumb.png
- title:USGS Landsat 8 Level 2, Collection 2, Tier 1
- type_name:ImageCollection
- visualization_0_bands:SR_B4,SR_B3,SR_B2
- visualization_0_max:30000.0
- visualization_0_min:0.0
- visualization_0_name:True Color (432)
- visualization_1_bands:SR_B5,SR_B4,SR_B3
- visualization_1_max:30000.0
- visualization_1_min:0.0
- visualization_1_name:Near Infrared (543)
- visualization_2_bands:SR_B7,SR_B5,SR_B3
- visualization_2_max:30000.0
- visualization_2_min:0.0
- visualization_2_name:Shortwave Infrared (753)
features: List (13 elements)
0: Image LANDSAT/LC08/C02/T1_L2/LC08_006014_20230707 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_006014_20230707
- version:1689698785470723
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
1: "SR_B2", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
2: "SR_B3", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
3: "SR_B4", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
4: "SR_B5", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
5: "SR_B6", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
6: "SR_B7", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8271x8341 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
8: "ST_B10", unsigned int16, EPSG:32622, 8271x8341 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
9: "ST_ATRAN", signed int16, EPSG:32622, 8271x8341 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
10: "ST_CDIST", signed int16, EPSG:32622, 8271x8341 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
11: "ST_DRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
12: "ST_EMIS", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
13: "ST_EMSD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
14: "ST_QA", signed int16, EPSG:32622, 8271x8341 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
15: "ST_TRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
16: "ST_URAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 455385, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455385
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:49.88
- CLOUD_COVER_LAND:50.22
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-07-07
- DATE_PRODUCT_GENERATED:1689645361000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0166794
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:4.709
- GEOMETRIC_RMSE_MODEL_X:3.152
- GEOMETRIC_RMSE_MODEL_Y:3.498
- GEOMETRIC_RMSE_VERIFY:1.708
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:607
- GROUND_CONTROL_POINTS_VERIFY:89
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-07-18T01:23:52Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_006014_20230707_20230718_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1760534_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_006014_20230707_20230718_02_T1
- LANDSAT_SCENE_ID:LC80060142023188LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8341
- REFLECTIVE_SAMPLES:8271
- REQUEST_ID:1760534_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:42:56.3156030Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:166.83235651
- SUN_ELEVATION:46.5149191
- TARGET_WRS_PATH:6
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8341
- THERMAL_SAMPLES:8271
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:6
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:921274947
system:footprint: LinearRing (20 vertices)
- type:LinearRing
coordinates: List (20 elements)
0: [-46.76340269271652, 66.10514978945896]
- 0:-46.76340269271652
- 1:66.10514978945896
1: [-50.44374870433247, 66.70517170640194]
- 0:-50.44374870433247
- 1:66.70517170640194
2: [-50.50025364649844, 66.6456300594439]
- 0:-50.50025364649844
- 1:66.6456300594439
3: [-51.90220732120791, 65.06093775177233]
- 0:-51.90220732120791
- 1:65.06093775177233
4: [-48.59618575591518, 64.52000378019773]
- 0:-48.59618575591518
- 1:64.52000378019773
5: [-48.226555238155164, 64.45350495379208]
- 0:-48.226555238155164
- 1:64.45350495379208
6: [-48.15217550284247, 64.53002635774318]
- 0:-48.15217550284247
- 1:64.53002635774318
7: [-47.98952480119395, 64.6957975161774]
- 0:-47.98952480119395
- 1:64.6957975161774
8: [-47.57351566106734, 65.11050109818481]
- 0:-47.57351566106734
- 1:65.11050109818481
9: [-47.35722996367276, 65.32083869612816]
- 0:-47.35722996367276
- 1:65.32083869612816
10: [-47.27961819297236, 65.3954917160159]
- 0:-47.27961819297236
- 1:65.3954917160159
11: [-47.162378035625636, 65.50746968410407]
- 0:-47.162378035625636
- 1:65.50746968410407
12: [-47.085686836147495, 65.58018710119896]
- 0:-47.085686836147495
- 1:65.58018710119896
13: [-46.91797853046093, 65.73776559879524]
- 0:-46.91797853046093
- 1:65.73776559879524
14: [-46.77706300821761, 65.86870431869815]
- 0:-46.77706300821761
- 1:65.86870431869815
15: [-46.63116083180436, 66.00278177443097]
- 0:-46.63116083180436
- 1:66.00278177443097
16: [-46.55959917756899, 66.0681096892737]
- 0:-46.55959917756899
- 1:66.0681096892737
17: [-46.560832408732665, 66.06868711356968]
- 0:-46.560832408732665
- 1:66.06868711356968
18: [-46.62472650222716, 66.08024374002149]
- 0:-46.62472650222716
- 1:66.08024374002149
19: [-46.76340269271652, 66.10514978945896]
- 0:-46.76340269271652
- 1:66.10514978945896
- system:index:LC08_006014_20230707
- system:time_end:1688740976315
- system:time_start:1688740976315
1: Image LANDSAT/LC08/C02/T1_L2/LC08_006014_20230723 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_006014_20230723
- version:1691270811431192
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
1: "SR_B2", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
2: "SR_B3", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
3: "SR_B4", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
4: "SR_B5", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
5: "SR_B6", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
6: "SR_B7", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8271x8341 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
8: "ST_B10", unsigned int16, EPSG:32622, 8271x8341 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
9: "ST_ATRAN", signed int16, EPSG:32622, 8271x8341 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
10: "ST_CDIST", signed int16, EPSG:32622, 8271x8341 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
11: "ST_DRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
12: "ST_EMIS", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
13: "ST_EMSD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
14: "ST_QA", signed int16, EPSG:32622, 8271x8341 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
15: "ST_TRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
16: "ST_URAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
properties: Object (92 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:68.91
- CLOUD_COVER_LAND:69.05
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-07-23
- DATE_PRODUCT_GENERATED:1691059323000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0159623
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:7.314
- GEOMETRIC_RMSE_MODEL_X:5.358
- GEOMETRIC_RMSE_MODEL_Y:4.979
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:196
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-03T10:08:05Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_006014_20230723_20230803_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1767564_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_006014_20230723_20230803_02_T1
- LANDSAT_SCENE_ID:LC80060142023204LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8341
- REFLECTIVE_SAMPLES:8271
- REQUEST_ID:1767564_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:Y
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:43:00.4906220Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:166.71010788
- SUN_ELEVATION:43.96671254
- TARGET_WRS_PATH:6
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8341
- THERMAL_SAMPLES:8271
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:6
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:953800974
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-47.26703128000492, 65.39760691122538]
- 0:-47.26703128000492
- 1:65.39760691122538
1: [-47.20888810292966, 65.45323685378365]
- 0:-47.20888810292966
- 1:65.45323685378365
2: [-47.136073513038156, 65.5226268055447]
- 0:-47.136073513038156
- 1:65.5226268055447
3: [-46.935270567413994, 65.71201822711092]
- 0:-46.935270567413994
- 1:65.71201822711092
4: [-46.771124367512144, 65.86476544773852]
- 0:-46.771124367512144
- 1:65.86476544773852
5: [-46.65797008012758, 65.96892559949436]
- 0:-46.65797008012758
- 1:65.96892559949436
6: [-46.58625671556639, 66.03448922118206]
- 0:-46.58625671556639
- 1:66.03448922118206
7: [-46.54951992761178, 66.06803552988227]
- 0:-46.54951992761178
- 1:66.06803552988227
8: [-46.55117293567105, 66.06880958737273]
- 0:-46.55117293567105
- 1:66.06880958737273
9: [-47.21590032133058, 66.18698930429413]
- 0:-47.21590032133058
- 1:66.18698930429413
10: [-49.94315504789615, 66.63172917894293]
- 0:-49.94315504789615
- 1:66.63172917894293
11: [-50.43301567829281, 66.70501158031291]
- 0:-50.43301567829281
- 1:66.70501158031291
12: [-50.48939197029102, 66.64613376719144]
- 0:-50.48939197029102
- 1:66.64613376719144
13: [-51.88721574673851, 65.06628688747064]
- 0:-51.88721574673851
- 1:65.06628688747064
14: [-51.89158341301689, 65.06081913532145]
- 0:-51.89158341301689
- 1:65.06081913532145
15: [-48.54986113797025, 64.51358381595202]
- 0:-48.54986113797025
- 1:64.51358381595202
16: [-48.216185164963555, 64.45350502114046]
- 0:-48.216185164963555
- 1:64.45350502114046
17: [-47.991503046636964, 64.68318291702427]
- 0:-47.991503046636964
- 1:64.68318291702427
18: [-47.736036497750554, 64.93969237716739]
- 0:-47.736036497750554
- 1:64.93969237716739
19: [-47.49571940219717, 65.17634961729595]
- 0:-47.49571940219717
- 1:65.17634961729595
20: [-47.26703128000492, 65.39760691122538]
- 0:-47.26703128000492
- 1:65.39760691122538
- system:index:LC08_006014_20230723
- system:time_end:1690123380490
- system:time_start:1690123380490
2: Image LANDSAT/LC08/C02/T1_L2/LC08_006014_20230808 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_006014_20230808
- version:1691973897543207
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
1: "SR_B2", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
2: "SR_B3", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
3: "SR_B4", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
4: "SR_B5", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
5: "SR_B6", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
6: "SR_B7", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8281x8341 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
8: "ST_B10", unsigned int16, EPSG:32622, 8281x8341 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
9: "ST_ATRAN", signed int16, EPSG:32622, 8281x8341 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
10: "ST_CDIST", signed int16, EPSG:32622, 8281x8341 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
11: "ST_DRAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
12: "ST_EMIS", signed int16, EPSG:32622, 8281x8341 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
13: "ST_EMSD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
14: "ST_QA", signed int16, EPSG:32622, 8281x8341 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
15: "ST_TRAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
16: "ST_URAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8281x8341 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8281x8341 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:0.95
- CLOUD_COVER_LAND:0.95
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-08-08
- DATE_PRODUCT_GENERATED:1691834246000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0140334
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:3.62
- GEOMETRIC_RMSE_MODEL_X:2.817
- GEOMETRIC_RMSE_MODEL_Y:2.273
- GEOMETRIC_RMSE_VERIFY:1.66
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1304
- GROUND_CONTROL_POINTS_VERIFY:212
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-12T09:25:57Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_006014_20230808_20230812_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1772732_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_006014_20230808_20230812_02_T1
- LANDSAT_SCENE_ID:LC80060142023220LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8341
- REFLECTIVE_SAMPLES:8281
- REQUEST_ID:1772732_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:Y
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:43:07.2581770Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:167.52826666
- SUN_ELEVATION:40.06254451
- TARGET_WRS_PATH:6
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8341
- THERMAL_SAMPLES:8281
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:6
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:867118685
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-48.2268115644276, 64.45530249335354]
- 0:-48.2268115644276
- 1:64.45530249335354
1: [-48.22423345069429, 64.4552538382783]
- 0:-48.22423345069429
- 1:64.4552538382783
2: [-48.004262634438156, 64.68039803895826]
- 0:-48.004262634438156
- 1:64.68039803895826
3: [-47.64055585274287, 65.04422259745839]
- 0:-47.64055585274287
- 1:65.04422259745839
4: [-47.48096340386961, 65.20061609455293]
- 0:-47.48096340386961
- 1:65.20061609455293
5: [-47.35949191583952, 65.3184677325002]
- 0:-47.35949191583952
- 1:65.3184677325002
6: [-47.26917763120224, 65.4054163919882]
- 0:-47.26917763120224
- 1:65.4054163919882
7: [-47.15528815706832, 65.51421426165291]
- 0:-47.15528815706832
- 1:65.51421426165291
8: [-46.88924247265266, 65.76471931190018]
- 0:-46.88924247265266
- 1:65.76471931190018
9: [-46.81097298159302, 65.83743603318908]
- 0:-46.81097298159302
- 1:65.83743603318908
10: [-46.63284218859026, 66.00141246471563]
- 0:-46.63284218859026
- 1:66.00141246471563
11: [-46.55781322348657, 66.06990445747846]
- 0:-46.55781322348657
- 1:66.06990445747846
12: [-46.8910885237756, 66.1296329880831]
- 0:-46.8910885237756
- 1:66.1296329880831
13: [-49.71179798086683, 66.59635653213762]
- 0:-49.71179798086683
- 1:66.59635653213762
14: [-50.442681410709554, 66.70636539445907]
- 0:-50.442681410709554
- 1:66.70636539445907
15: [-50.500253794702424, 66.6456299940123]
- 0:-50.500253794702424
- 1:66.6456299940123
16: [-51.90054383431803, 65.0620988783855]
- 0:-51.90054383431803
- 1:65.0620988783855
17: [-51.88342292640871, 65.0595042390741]
- 0:-51.88342292640871
- 1:65.0595042390741
18: [-51.13809848374238, 64.94575999081995]
- 0:-51.13809848374238
- 1:64.94575999081995
19: [-48.95770316470722, 64.58551591040035]
- 0:-48.95770316470722
- 1:64.58551591040035
20: [-48.2268115644276, 64.45530249335354]
- 0:-48.2268115644276
- 1:64.45530249335354
- system:index:LC08_006014_20230808
- system:time_end:1691505787258
- system:time_start:1691505787258
3: Image LANDSAT/LC08/C02/T1_L2/LC08_006014_20230824 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_006014_20230824
- version:1694091281367124
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
1: "SR_B2", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
2: "SR_B3", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
3: "SR_B4", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
4: "SR_B5", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
5: "SR_B6", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
6: "SR_B7", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8281x8341 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
8: "ST_B10", unsigned int16, EPSG:32622, 8281x8341 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
9: "ST_ATRAN", signed int16, EPSG:32622, 8281x8341 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
10: "ST_CDIST", signed int16, EPSG:32622, 8281x8341 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
11: "ST_DRAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
12: "ST_EMIS", signed int16, EPSG:32622, 8281x8341 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
13: "ST_EMSD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
14: "ST_QA", signed int16, EPSG:32622, 8281x8341 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
15: "ST_TRAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
16: "ST_URAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8281x8341 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8281x8341 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 455085, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455085
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
properties: Object (92 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:89.94
- CLOUD_COVER_LAND:89.9
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-08-24
- DATE_PRODUCT_GENERATED:1693927181000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0110778
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:6.806
- GEOMETRIC_RMSE_MODEL_X:5.126
- GEOMETRIC_RMSE_MODEL_Y:4.476
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:214
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-09-05T14:48:24Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_006014_20230824_20230905_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1782829_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_006014_20230824_20230905_02_T1
- LANDSAT_SCENE_ID:LC80060142023236LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8341
- REFLECTIVE_SAMPLES:8281
- REQUEST_ID:1782829_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:43:15.5088000Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:169.09936335
- SUN_ELEVATION:35.1050919
- TARGET_WRS_PATH:6
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8341
- THERMAL_SAMPLES:8281
- TIRS_SSM_MODEL:ACTUAL
- TIRS_SSM_POSITION_STATUS:NOMINAL
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:6
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:982579411
system:footprint: LinearRing (20 vertices)
- type:LinearRing
coordinates: List (20 elements)
0: [-51.33145202391825, 64.97372042674664]
- 0:-51.33145202391825
- 1:64.97372042674664
1: [-49.13870104050232, 64.61483862375137]
- 0:-49.13870104050232
- 1:64.61483862375137
2: [-48.23549736064749, 64.4546199764449]
- 0:-48.23549736064749
- 1:64.4546199764449
3: [-47.995517893494736, 64.70000632556761]
- 0:-47.995517893494736
- 1:64.70000632556761
4: [-47.75962574061231, 64.93689081320518]
- 0:-47.75962574061231
- 1:64.93689081320518
5: [-47.585348036160454, 65.10907305326151]
- 0:-47.585348036160454
- 1:65.10907305326151
6: [-47.49852184854418, 65.19401963330205]
- 0:-47.49852184854418
- 1:65.19401963330205
7: [-47.38088874477567, 65.30820236705138]
- 0:-47.38088874477567
- 1:65.30820236705138
8: [-47.28093894856545, 65.40441909377513]
- 0:-47.28093894856545
- 1:65.40441909377513
9: [-47.168923424790044, 65.51144670283692]
- 0:-47.168923424790044
- 1:65.51144670283692
10: [-47.10230646453976, 65.57465735574797]
- 0:-47.10230646453976
- 1:65.57465735574797
11: [-46.94365478896056, 65.72393106408482]
- 0:-46.94365478896056
- 1:65.72393106408482
12: [-46.801181481150316, 65.85642565529456]
- 0:-46.801181481150316
- 1:65.85642565529456
13: [-46.660349615780035, 65.98610708953629]
- 0:-46.660349615780035
- 1:65.98610708953629
14: [-46.56902192835499, 66.0695738062249]
- 0:-46.56902192835499
- 1:66.0695738062249
15: [-48.010063302502196, 66.32074027583361]
- 0:-48.010063302502196
- 1:66.32074027583361
16: [-50.45492561814696, 66.70613783476962]
- 0:-50.45492561814696
- 1:66.70613783476962
17: [-51.868999129194165, 65.11404364882586]
- 0:-51.868999129194165
- 1:65.11404364882586
18: [-51.912268687655136, 65.06185988502531]
- 0:-51.912268687655136
- 1:65.06185988502531
19: [-51.33145202391825, 64.97372042674664]
- 0:-51.33145202391825
- 1:64.97372042674664
- system:index:LC08_006014_20230824
- system:time_end:1692888195508
- system:time_start:1692888195508
4: Image LANDSAT/LC08/C02/T1_L2/LC08_007013_20230730 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_007013_20230730
- version:1691413035301862
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
1: "SR_B2", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
2: "SR_B3", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
3: "SR_B4", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
4: "SR_B5", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
5: "SR_B6", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
6: "SR_B7", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8361x8411 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
8: "ST_B10", unsigned int16, EPSG:32622, 8361x8411 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
9: "ST_ATRAN", signed int16, EPSG:32622, 8361x8411 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
10: "ST_CDIST", signed int16, EPSG:32622, 8361x8411 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
11: "ST_DRAD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
12: "ST_EMIS", signed int16, EPSG:32622, 8361x8411 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
13: "ST_EMSD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
14: "ST_QA", signed int16, EPSG:32622, 8361x8411 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
15: "ST_TRAD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
16: "ST_URAD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8361x8411 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8361x8411 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
properties: Object (92 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:58.34
- CLOUD_COVER_LAND:58.92
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-07-30
- DATE_PRODUCT_GENERATED:1691234904000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0152219
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:7.087
- GEOMETRIC_RMSE_MODEL_X:5.248
- GEOMETRIC_RMSE_MODEL_Y:4.762
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:271
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-05T10:57:09Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_007013_20230730_20230805_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1769372_00013
- LANDSAT_PRODUCT_ID:LC08_L2SP_007013_20230730_20230805_02_T1
- LANDSAT_SCENE_ID:LC80070132023211LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8411
- REFLECTIVE_SAMPLES:8361
- REQUEST_ID:1769372_00013
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:48:52.5400330Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:168.82385774
- SUN_ELEVATION:41.19226724
- TARGET_WRS_PATH:7
- TARGET_WRS_ROW:13
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8411
- THERMAL_SAMPLES:8361
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:7
- WRS_ROW:13
- WRS_TYPE:2
- system:asset_size:1008942817
system:footprint: LinearRing (20 vertices)
- type:LinearRing
coordinates: List (20 elements)
0: [-50.65485850754081, 68.05051263322416]
- 0:-50.65485850754081
- 1:68.05051263322416
1: [-50.66756939283329, 68.03880699901033]
- 0:-50.66756939283329
- 1:68.03880699901033
2: [-52.23828695769875, 66.44566171225506]
- 0:-52.23828695769875
- 1:66.44566171225506
3: [-52.24891341044834, 66.43337173229486]
- 0:-52.24891341044834
- 1:66.43337173229486
4: [-48.40173903563612, 65.79876153091907]
- 0:-48.40173903563612
- 1:65.79876153091907
5: [-48.36414351232026, 65.83363757131198]
- 0:-48.36414351232026
- 1:65.83363757131198
6: [-48.2981274004213, 65.89473414350726]
- 0:-48.2981274004213
- 1:65.89473414350726
7: [-47.9938928946469, 66.17245032450558]
- 0:-47.9938928946469
- 1:66.17245032450558
8: [-47.813509164651215, 66.3341895907]
- 0:-47.813509164651215
- 1:66.3341895907
9: [-47.4981376498287, 66.61169180739552]
- 0:-47.4981376498287
- 1:66.61169180739552
10: [-47.32715184501216, 66.75950105767255]
- 0:-47.32715184501216
- 1:66.75950105767255
11: [-47.247505849973535, 66.82779778108396]
- 0:-47.247505849973535
- 1:66.82779778108396
12: [-47.12494940688595, 66.93211775679579]
- 0:-47.12494940688595
- 1:66.93211775679579
13: [-46.90810620786886, 67.11446424081632]
- 0:-46.90810620786886
- 1:67.11446424081632
14: [-46.693468340983365, 67.29212809626759]
- 0:-46.693468340983365
- 1:67.29212809626759
15: [-46.56307953552024, 67.39874734584663]
- 0:-46.56307953552024
- 1:67.39874734584663
16: [-48.19556323030809, 67.68327159000589]
- 0:-48.19556323030809
- 1:67.68327159000589
17: [-50.636634469300226, 68.0667875297335]
- 0:-50.636634469300226
- 1:68.0667875297335
18: [-50.6415790978286, 68.0625422059125]
- 0:-50.6415790978286
- 1:68.0625422059125
19: [-50.65485850754081, 68.05051263322416]
- 0:-50.65485850754081
- 1:68.05051263322416
- system:index:LC08_007013_20230730
- system:time_end:1690728532540
- system:time_start:1690728532540
5: Image LANDSAT/LC08/C02/T1_L2/LC08_007013_20230815 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_007013_20230815
- version:1692483321030340.0
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
1: "SR_B2", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
2: "SR_B3", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
3: "SR_B4", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
4: "SR_B5", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
5: "SR_B6", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
6: "SR_B7", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8361x8411 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
8: "ST_B10", unsigned int16, EPSG:32622, 8361x8411 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
9: "ST_ATRAN", signed int16, EPSG:32622, 8361x8411 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
10: "ST_CDIST", signed int16, EPSG:32622, 8361x8411 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
11: "ST_DRAD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
12: "ST_EMIS", signed int16, EPSG:32622, 8361x8411 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
13: "ST_EMSD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
14: "ST_QA", signed int16, EPSG:32622, 8361x8411 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
15: "ST_TRAD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
16: "ST_URAD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8361x8411 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8361x8411 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
properties: Object (92 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:58.42
- CLOUD_COVER_LAND:57.94
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-08-15
- DATE_PRODUCT_GENERATED:1692424744000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0128891
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:5.082
- GEOMETRIC_RMSE_MODEL_X:3.862
- GEOMETRIC_RMSE_MODEL_Y:3.303
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:314
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-19T05:26:39Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_007013_20230815_20230819_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1775904_00013
- LANDSAT_PRODUCT_ID:LC08_L2SP_007013_20230815_20230819_02_T1
- LANDSAT_SCENE_ID:LC80070132023227LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8411
- REFLECTIVE_SAMPLES:8361
- REQUEST_ID:1775904_00013
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:48:58.0576950Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:169.88704968
- SUN_ELEVATION:36.7734793
- TARGET_WRS_PATH:7
- TARGET_WRS_ROW:13
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8411
- THERMAL_SAMPLES:8361
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:7
- WRS_ROW:13
- WRS_TYPE:2
- system:asset_size:953665691
system:footprint: LinearRing (19 vertices)
- type:LinearRing
coordinates: List (19 elements)
0: [-51.08915940716017, 66.255812949375]
- 0:-51.08915940716017
- 1:66.255812949375
1: [-49.22259360575028, 65.9454697460437]
- 0:-49.22259360575028
- 1:65.9454697460437
2: [-48.39869808381817, 65.79875045729936]
- 0:-48.39869808381817
- 1:65.79875045729936
3: [-48.328440887521374, 65.8638792909839]
- 0:-48.328440887521374
- 1:65.8638792909839
4: [-48.06039527084756, 66.10946302042571]
- 0:-48.06039527084756
- 1:66.10946302042571
5: [-47.978415456441674, 66.18361544166846]
- 0:-47.978415456441674
- 1:66.18361544166846
6: [-47.8125329786028, 66.33235882274909]
- 0:-47.8125329786028
- 1:66.33235882274909
7: [-47.49524764970514, 66.61171288989512]
- 0:-47.49524764970514
- 1:66.61171288989512
8: [-47.32552142988771, 66.7584421041205]
- 0:-47.32552142988771
- 1:66.7584421041205
9: [-47.09850963374877, 66.95196115416505]
- 0:-47.09850963374877
- 1:66.95196115416505
10: [-46.856610955594824, 67.15487730831767]
- 0:-46.856610955594824
- 1:67.15487730831767
11: [-46.68967422511687, 67.29278329196893]
- 0:-46.68967422511687
- 1:67.29278329196893
12: [-46.56022086065498, 67.39862114177203]
- 0:-46.56022086065498
- 1:67.39862114177203
13: [-48.23652624491215, 67.69043551896951]
- 0:-48.23652624491215
- 1:67.69043551896951
14: [-50.634909387314515, 68.06675825725404]
- 0:-50.634909387314515
- 1:68.06675825725404
15: [-50.6585309349623, 68.04545985452413]
- 0:-50.6585309349623
- 1:68.04545985452413
16: [-52.23450308165943, 66.44747587365904]
- 0:-52.23450308165943
- 1:66.44747587365904
17: [-52.24662978746956, 66.43341041032488]
- 0:-52.24662978746956
- 1:66.43341041032488
18: [-51.08915940716017, 66.255812949375]
- 0:-51.08915940716017
- 1:66.255812949375
- system:index:LC08_007013_20230815
- system:time_end:1692110938057
- system:time_start:1692110938057
6: Image LANDSAT/LC08/C02/T1_L2/LC08_007014_20230730 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_007014_20230730
- version:1691407065038414
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
1: "SR_B2", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
2: "SR_B3", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
3: "SR_B4", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
4: "SR_B5", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
5: "SR_B6", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
6: "SR_B7", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8371x8431 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
8: "ST_B10", unsigned int16, EPSG:32622, 8371x8431 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
9: "ST_ATRAN", signed int16, EPSG:32622, 8371x8431 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
10: "ST_CDIST", signed int16, EPSG:32622, 8371x8431 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
11: "ST_DRAD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
12: "ST_EMIS", signed int16, EPSG:32622, 8371x8431 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
13: "ST_EMSD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
14: "ST_QA", signed int16, EPSG:32622, 8371x8431 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
15: "ST_TRAD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
16: "ST_URAD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8371x8431 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8371x8431 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
properties: Object (92 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:82.34
- CLOUD_COVER_LAND:81.35
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-07-30
- DATE_PRODUCT_GENERATED:1691234769000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0152218
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:6.983
- GEOMETRIC_RMSE_MODEL_X:4.337
- GEOMETRIC_RMSE_MODEL_Y:5.473
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:79
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-05T10:58:13Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_007014_20230730_20230805_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1769372_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_007014_20230730_20230805_02_T1
- LANDSAT_SCENE_ID:LC80070142023211LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8431
- REFLECTIVE_SAMPLES:8371
- REQUEST_ID:1769372_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:49:16.4268370Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:166.95945357
- SUN_ELEVATION:42.40692392
- TARGET_WRS_PATH:7
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8431
- THERMAL_SAMPLES:8371
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:7
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:1016131810
system:footprint: LinearRing (20 vertices)
- type:LinearRing
coordinates: List (20 elements)
0: [-51.70704940554283, 66.66356393708276]
- 0:-51.70704940554283
- 1:66.66356393708276
1: [-51.99184232307951, 66.7059167486355]
- 0:-51.99184232307951
- 1:66.7059167486355
2: [-51.994505359703325, 66.70589994752667]
- 0:-51.994505359703325
- 1:66.70589994752667
3: [-51.99938048312208, 66.7013633664618]
- 0:-51.99938048312208
- 1:66.7013633664618
4: [-52.75038874267558, 65.88191741043346]
- 0:-52.75038874267558
- 1:65.88191741043346
5: [-53.45183533925167, 65.0630414372194]
- 0:-53.45183533925167
- 1:65.0630414372194
6: [-53.45174154789472, 65.0620215588971]
- 0:-53.45174154789472
- 1:65.0620215588971
7: [-53.41445410720068, 65.05641750435123]
- 0:-53.41445410720068
- 1:65.05641750435123
8: [-53.08656657233362, 65.00689997895542]
- 0:-53.08656657233362
- 1:65.00689997895542
9: [-50.83272130106699, 64.64154546519138]
- 0:-50.83272130106699
- 1:64.64154546519138
10: [-49.77475930553743, 64.45453807979645]
- 0:-49.77475930553743
- 1:64.45453807979645
11: [-49.77246736647345, 64.45451896514523]
- 0:-49.77246736647345
- 1:64.45451896514523
12: [-49.74090660718334, 64.4865642070297]
- 0:-49.74090660718334
- 1:64.4865642070297
13: [-49.64439048334218, 64.58468843733553]
- 0:-49.64439048334218
- 1:64.58468843733553
14: [-49.593679404455195, 64.63612637654005]
- 0:-49.593679404455195
- 1:64.63612637654005
15: [-48.5287967602834, 65.67989067149308]
- 0:-48.5287967602834
- 1:65.67989067149308
16: [-48.438022506241644, 65.76486481785135]
- 0:-48.438022506241644
- 1:65.76486481785135
17: [-48.281406693910895, 65.91019583712107]
- 0:-48.281406693910895
- 1:65.91019583712107
18: [-48.107670541539285, 66.06939190265041]
- 0:-48.107670541539285
- 1:66.06939190265041
19: [-51.70704940554283, 66.66356393708276]
- 0:-51.70704940554283
- 1:66.66356393708276
- system:index:LC08_007014_20230730
- system:time_end:1690728556426
- system:time_start:1690728556426
7: Image LANDSAT/LC08/C02/T1_L2/LC08_007014_20230815 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_007014_20230815
- version:1692488267209924
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
1: "SR_B2", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
2: "SR_B3", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
3: "SR_B4", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
4: "SR_B5", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
5: "SR_B6", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
6: "SR_B7", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8371x8431 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
8: "ST_B10", unsigned int16, EPSG:32622, 8371x8431 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
9: "ST_ATRAN", signed int16, EPSG:32622, 8371x8431 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
10: "ST_CDIST", signed int16, EPSG:32622, 8371x8431 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
11: "ST_DRAD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
12: "ST_EMIS", signed int16, EPSG:32622, 8371x8431 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
13: "ST_EMSD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
14: "ST_QA", signed int16, EPSG:32622, 8371x8431 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
15: "ST_TRAD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
16: "ST_URAD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8371x8431 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8371x8431 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:4.58
- CLOUD_COVER_LAND:5.02
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-08-15
- DATE_PRODUCT_GENERATED:1692424668000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0128891
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:2.934
- GEOMETRIC_RMSE_MODEL_X:2.113
- GEOMETRIC_RMSE_MODEL_Y:2.034
- GEOMETRIC_RMSE_VERIFY:1.395
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1645
- GROUND_CONTROL_POINTS_VERIFY:240
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-19T05:27:48Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_007014_20230815_20230819_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1775904_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_007014_20230815_20230819_02_T1
- LANDSAT_SCENE_ID:LC80070142023227LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8431
- REFLECTIVE_SAMPLES:8371
- REQUEST_ID:1775904_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:49:21.9487350Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:168.14299279
- SUN_ELEVATION:38.00352189
- TARGET_WRS_PATH:7
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8431
- THERMAL_SAMPLES:8371
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:7
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:962053127
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-53.4500932439671, 65.06222385844087]
- 0:-53.4500932439671
- 1:65.06222385844087
1: [-53.44866377150731, 65.06166546924177]
- 0:-53.44866377150731
- 1:65.06166546924177
2: [-53.395720896927, 65.05370377029888]
- 0:-53.395720896927
- 1:65.05370377029888
3: [-52.519515594451065, 64.91923799630483]
- 0:-52.519515594451065
- 1:64.91923799630483
4: [-50.25228276945077, 64.5404097725014]
- 0:-50.25228276945077
- 1:64.5404097725014
5: [-49.77190501752138, 64.4542450647452]
- 0:-49.77190501752138
- 1:64.4542450647452
6: [-49.769359361855166, 64.45422373731189]
- 0:-49.769359361855166
- 1:64.45422373731189
7: [-49.649188031797166, 64.5763856741811]
- 0:-49.649188031797166
- 1:64.5763856741811
8: [-49.59633452039418, 64.63002014807293]
- 0:-49.59633452039418
- 1:64.63002014807293
9: [-48.52544770892024, 65.68012186469993]
- 0:-48.52544770892024
- 1:65.68012186469993
10: [-48.43472423138393, 65.7650787818964]
- 0:-48.43472423138393
- 1:65.7650787818964
11: [-48.26703817955153, 65.92059746589351]
- 0:-48.26703817955153
- 1:65.92059746589351
12: [-48.149297165965166, 66.02858538205193]
- 0:-48.149297165965166
- 1:66.02858538205193
13: [-48.104925344301975, 66.06903965571563]
- 0:-48.104925344301975
- 1:66.06903965571563
14: [-48.11903476882986, 66.07164361320834]
- 0:-48.11903476882986
- 1:66.07164361320834
15: [-50.742831431355306, 66.51530636872613]
- 0:-50.742831431355306
- 1:66.51530636872613
16: [-51.9898148711023, 66.70566031881611]
- 0:-51.9898148711023
- 1:66.70566031881611
17: [-51.99251311319427, 66.7056433857471]
- 0:-51.99251311319427
- 1:66.7056433857471
18: [-51.9973071422346, 66.70128449033635]
- 0:-51.9973071422346
- 1:66.70128449033635
19: [-52.747475218458845, 65.88262367279336]
- 0:-52.747475218458845
- 1:65.88262367279336
20: [-53.4500932439671, 65.06222385844087]
- 0:-53.4500932439671
- 1:65.06222385844087
- system:index:LC08_007014_20230815
- system:time_end:1692110961948
- system:time_start:1692110961948
8: Image LANDSAT/LC08/C02/T1_L2/LC08_008013_20230721 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_008013_20230721
- version:1691099019860994
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
1: "SR_B2", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
2: "SR_B3", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
3: "SR_B4", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
4: "SR_B5", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
5: "SR_B6", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
6: "SR_B7", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8451x8501 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
8: "ST_B10", unsigned int16, EPSG:32622, 8451x8501 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
9: "ST_ATRAN", signed int16, EPSG:32622, 8451x8501 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
10: "ST_CDIST", signed int16, EPSG:32622, 8451x8501 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
11: "ST_DRAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
12: "ST_EMIS", signed int16, EPSG:32622, 8451x8501 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
13: "ST_EMSD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
14: "ST_QA", signed int16, EPSG:32622, 8451x8501 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
15: "ST_TRAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
16: "ST_URAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8451x8501 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8451x8501 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
properties: Object (92 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:79.92
- CLOUD_COVER_LAND:79.59
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-07-21
- DATE_PRODUCT_GENERATED:1691039955000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0161309
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:8.219
- GEOMETRIC_RMSE_MODEL_X:5.965
- GEOMETRIC_RMSE_MODEL_Y:5.654
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:93
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-03T04:51:46Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_008013_20230721_20230803_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1767372_00013
- LANDSAT_PRODUCT_ID:LC08_L2SP_008013_20230721_20230803_02_T1
- LANDSAT_SCENE_ID:LC80080132023202LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8501
- REFLECTIVE_SAMPLES:8451
- REQUEST_ID:1767372_00013
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:54:56.2017540Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:168.59361321
- SUN_ELEVATION:43.152627
- TARGET_WRS_PATH:8
- TARGET_WRS_ROW:13
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8501
- THERMAL_SAMPLES:8451
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:8
- WRS_ROW:13
- WRS_TYPE:2
- system:asset_size:1040348008
system:footprint: LinearRing (22 vertices)
- type:LinearRing
coordinates: List (22 elements)
0: [-51.88130853191033, 68.02418125565698]
- 0:-51.88130853191033
- 1:68.02418125565698
1: [-52.16008265224707, 68.06553559270556]
- 0:-52.16008265224707
- 1:68.06553559270556
2: [-52.162601995701245, 68.06551788167201]
- 0:-52.162601995701245
- 1:68.06551788167201
3: [-52.994968403325146, 67.251791151489]
- 0:-52.994968403325146
- 1:67.251791151489
4: [-53.77448930361204, 66.43249163858006]
- 0:-53.77448930361204
- 1:66.43249163858006
5: [-53.46127024386356, 66.38551844183218]
- 0:-53.46127024386356
- 1:66.38551844183218
6: [-50.48684012985811, 65.8980968435841]
- 0:-50.48684012985811
- 1:65.8980968435841
7: [-49.92725228784368, 65.79774013705074]
- 0:-49.92725228784368
- 1:65.79774013705074
8: [-49.92463064267111, 65.79772172183513]
- 0:-49.92463064267111
- 1:65.79772172183513
9: [-49.84385030134257, 65.87267149151391]
- 0:-49.84385030134257
- 1:65.87267149151391
10: [-49.41375897119452, 66.26403382559542]
- 0:-49.41375897119452
- 1:66.26403382559542
11: [-49.12625171323852, 66.51848574848113]
- 0:-49.12625171323852
- 1:66.51848574848113
12: [-49.04508902138511, 66.58937946422917]
- 0:-49.04508902138511
- 1:66.58937946422917
13: [-48.978055500305196, 66.64776316708421]
- 0:-48.978055500305196
- 1:66.64776316708421
14: [-48.711022358595805, 66.87749082420069]
- 0:-48.711022358595805
- 1:66.87749082420069
15: [-48.402700876578386, 67.13725999493994]
- 0:-48.402700876578386
- 1:67.13725999493994
16: [-48.208231430980526, 67.2980018681343]
- 0:-48.208231430980526
- 1:67.2980018681343
17: [-48.086735755612075, 67.39730419733766]
- 0:-48.086735755612075
- 1:67.39730419733766
18: [-48.12064260288878, 67.40346793725556]
- 0:-48.12064260288878
- 1:67.40346793725556
19: [-49.25968381726751, 67.60416951273298]
- 0:-49.25968381726751
- 1:67.60416951273298
20: [-50.76310457888417, 67.85199945886217]
- 0:-50.76310457888417
- 1:67.85199945886217
21: [-51.88130853191033, 68.02418125565698]
- 0:-51.88130853191033
- 1:68.02418125565698
- system:index:LC08_008013_20230721
- system:time_end:1689951296201
- system:time_start:1689951296201
9: Image LANDSAT/LC08/C02/T1_L2/LC08_008013_20230806 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_008013_20230806
- version:1691857612882210.0
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
1: "SR_B2", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
2: "SR_B3", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
3: "SR_B4", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
4: "SR_B5", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
5: "SR_B6", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
6: "SR_B7", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8451x8501 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
8: "ST_B10", unsigned int16, EPSG:32622, 8451x8501 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
9: "ST_ATRAN", signed int16, EPSG:32622, 8451x8501 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
10: "ST_CDIST", signed int16, EPSG:32622, 8451x8501 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
11: "ST_DRAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
12: "ST_EMIS", signed int16, EPSG:32622, 8451x8501 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
13: "ST_EMSD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
14: "ST_QA", signed int16, EPSG:32622, 8451x8501 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
15: "ST_TRAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
16: "ST_URAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8451x8501 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8451x8501 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 373485, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373485
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:3.06
- CLOUD_COVER_LAND:3.24
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-08-06
- DATE_PRODUCT_GENERATED:1691815900000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0143189
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:4.959
- GEOMETRIC_RMSE_MODEL_X:3.605
- GEOMETRIC_RMSE_MODEL_Y:3.405
- GEOMETRIC_RMSE_VERIFY:2.137
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1435
- GROUND_CONTROL_POINTS_VERIFY:281
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-12T04:21:14Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_008013_20230806_20230812_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1772550_00013
- LANDSAT_PRODUCT_ID:LC08_L2SP_008013_20230806_20230812_02_T1
- LANDSAT_SCENE_ID:LC80080132023218LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8501
- REFLECTIVE_SAMPLES:8451
- REQUEST_ID:1772550_00013
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:55:05.1551600Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:169.19241391
- SUN_ELEVATION:39.3920035
- TARGET_WRS_PATH:8
- TARGET_WRS_ROW:13
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8501
- THERMAL_SAMPLES:8451
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:8
- WRS_ROW:13
- WRS_TYPE:2
- system:asset_size:975263819
system:footprint: LinearRing (20 vertices)
- type:LinearRing
coordinates: List (20 elements)
0: [-49.146502515290294, 66.51845750517427]
- 0:-49.146502515290294
- 1:66.51845750517427
1: [-49.095147229429344, 66.56334112815568]
- 0:-49.095147229429344
- 1:66.56334112815568
2: [-49.05741152944316, 66.5962632727944]
- 0:-49.05741152944316
- 1:66.5962632727944
3: [-48.68478316299878, 66.91729799631351]
- 0:-48.68478316299878
- 1:66.91729799631351
4: [-48.397929437861364, 67.15838717097388]
- 0:-48.397929437861364
- 1:67.15838717097388
5: [-48.22802854722185, 67.29875822583168]
- 0:-48.22802854722185
- 1:67.29875822583168
6: [-48.10575038667979, 67.39882777483191]
- 0:-48.10575038667979
- 1:67.39882777483191
7: [-50.88210094810653, 67.86908053803819]
- 0:-50.88210094810653
- 1:67.86908053803819
8: [-52.14140757559017, 68.06115080045271]
- 0:-52.14140757559017
- 1:68.06115080045271
9: [-52.17948824950875, 68.06674374548356]
- 0:-52.17948824950875
- 1:68.06674374548356
10: [-52.18218884493003, 68.06672446862976]
- 0:-52.18218884493003
- 1:68.06672446862976
11: [-52.187376413479434, 68.0619475551113]
- 0:-52.187376413479434
- 1:68.0619475551113
12: [-53.01676427635769, 67.25044183791887]
- 0:-53.01676427635769
- 1:67.25044183791887
13: [-53.793093328694674, 66.43400030715478]
- 0:-53.793093328694674
- 1:66.43400030715478
14: [-53.792498639739684, 66.43355853748027]
- 0:-53.792498639739684
- 1:66.43355853748027
15: [-52.84651210302222, 66.28928204743097]
- 0:-52.84651210302222
- 1:66.28928204743097
16: [-49.9434199088556, 65.7987715661449]
- 0:-49.9434199088556
- 1:65.7987715661449
17: [-49.43662601335141, 66.26157362387059]
- 0:-49.43662601335141
- 1:66.26157362387059
18: [-49.25275289944366, 66.42504903206117]
- 0:-49.25275289944366
- 1:66.42504903206117
19: [-49.146502515290294, 66.51845750517427]
- 0:-49.146502515290294
- 1:66.51845750517427
- system:index:LC08_008013_20230806
- system:time_end:1691333705155
- system:time_start:1691333705155
10: Image LANDSAT/LC08/C02/T1_L2/LC08_008013_20230822 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_008013_20230822
- version:1693056098412099
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
1: "SR_B2", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
2: "SR_B3", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
3: "SR_B4", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
4: "SR_B5", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
5: "SR_B6", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
6: "SR_B7", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8451x8501 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
8: "ST_B10", unsigned int16, EPSG:32622, 8451x8501 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
9: "ST_ATRAN", signed int16, EPSG:32622, 8451x8501 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
10: "ST_CDIST", signed int16, EPSG:32622, 8451x8501 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
11: "ST_DRAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
12: "ST_EMIS", signed int16, EPSG:32622, 8451x8501 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
13: "ST_EMSD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
14: "ST_QA", signed int16, EPSG:32622, 8451x8501 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
15: "ST_TRAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
16: "ST_URAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8451x8501 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8451x8501 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 373185, 0, -30, 7551615]
- 0:30
- 1:0
- 2:373185
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:28.81
- CLOUD_COVER_LAND:27.13
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-08-22
- DATE_PRODUCT_GENERATED:1693032550000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0115084
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:5.4
- GEOMETRIC_RMSE_MODEL_X:4.176
- GEOMETRIC_RMSE_MODEL_Y:3.424
- GEOMETRIC_RMSE_VERIFY:2.226
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1001
- GROUND_CONTROL_POINTS_VERIFY:200
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-26T06:15:33Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_008013_20230822_20230826_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1778976_00013
- LANDSAT_PRODUCT_ID:LC08_L2SP_008013_20230822_20230826_02_T1
- LANDSAT_SCENE_ID:LC80080132023234LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8501
- REFLECTIVE_SAMPLES:8451
- REQUEST_ID:1778976_00013
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:55:12.7531470Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:170.55867607
- SUN_ELEVATION:34.52975176
- TARGET_WRS_PATH:8
- TARGET_WRS_ROW:13
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8501
- THERMAL_SAMPLES:8451
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:8
- WRS_ROW:13
- WRS_TYPE:2
- system:asset_size:1019690031
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-52.14094562808542, 68.05892033969114]
- 0:-52.14094562808542
- 1:68.05892033969114
1: [-52.19169991502384, 68.06638702030624]
- 0:-52.19169991502384
- 1:68.06638702030624
2: [-52.19396626371518, 68.06637059950991]
- 0:-52.19396626371518
- 1:68.06637059950991
3: [-52.198313367426614, 68.06251395512099]
- 0:-52.198313367426614
- 1:68.06251395512099
4: [-53.026940358250535, 67.25152508586834]
- 0:-53.026940358250535
- 1:67.25152508586834
5: [-53.804724487275784, 66.43328097110304]
- 0:-53.804724487275784
- 1:66.43328097110304
6: [-50.513821926185614, 65.89872301569254]
- 0:-50.513821926185614
- 1:65.89872301569254
7: [-49.95595341243733, 65.79874624110752]
- 0:-49.95595341243733
- 1:65.79874624110752
8: [-49.9534119498556, 65.79872883793996]
- 0:-49.9534119498556
- 1:65.79872883793996
9: [-49.44170074356005, 66.26593199819972]
- 0:-49.44170074356005
- 1:66.26593199819972
10: [-49.100222677501456, 66.56771040377899]
- 0:-49.100222677501456
- 1:66.56771040377899
11: [-49.06466343752013, 66.59877605256982]
- 0:-49.06466343752013
- 1:66.59877605256982
12: [-48.68364367567465, 66.92689229939417]
- 0:-48.68364367567465
- 1:66.92689229939417
13: [-48.418689610518165, 67.14963751413458]
- 0:-48.418689610518165
- 1:67.14963751413458
14: [-48.2488773377094, 67.29008478892099]
- 0:-48.2488773377094
- 1:67.29008478892099
15: [-48.117403177974296, 67.39771979528517]
- 0:-48.117403177974296
- 1:67.39771979528517
16: [-48.11730728431583, 67.39851332304971]
- 0:-48.11730728431583
- 1:67.39851332304971
17: [-48.17187507390357, 67.40841472257108]
- 0:-48.17187507390357
- 1:67.40841472257108
18: [-49.108231637370494, 67.57394126469029]
- 0:-49.108231637370494
- 1:67.57394126469029
19: [-51.6596943696071, 67.98700538854519]
- 0:-51.6596943696071
- 1:67.98700538854519
20: [-52.14094562808542, 68.05892033969114]
- 0:-52.14094562808542
- 1:68.05892033969114
- system:index:LC08_008013_20230822
- system:time_end:1692716112753
- system:time_start:1692716112753
11: Image LANDSAT/LC08/C02/T1_L2/LC08_008014_20230806 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_008014_20230806
- version:1691893952984545
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
1: "SR_B2", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
2: "SR_B3", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
3: "SR_B4", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
4: "SR_B5", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
5: "SR_B6", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
6: "SR_B7", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8461x8511 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
8: "ST_B10", unsigned int16, EPSG:32622, 8461x8511 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
9: "ST_ATRAN", signed int16, EPSG:32622, 8461x8511 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
10: "ST_CDIST", signed int16, EPSG:32622, 8461x8511 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
11: "ST_DRAD", signed int16, EPSG:32622, 8461x8511 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
12: "ST_EMIS", signed int16, EPSG:32622, 8461x8511 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
13: "ST_EMSD", signed int16, EPSG:32622, 8461x8511 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
14: "ST_QA", signed int16, EPSG:32622, 8461x8511 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
15: "ST_TRAD", signed int16, EPSG:32622, 8461x8511 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
16: "ST_URAD", signed int16, EPSG:32622, 8461x8511 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8461x8511 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8461x8511 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 310185, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310185
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:1.15
- CLOUD_COVER_LAND:1.82
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-08-06
- DATE_PRODUCT_GENERATED:1691815901000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0143189
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:2.595
- GEOMETRIC_RMSE_MODEL_X:1.707
- GEOMETRIC_RMSE_MODEL_Y:1.955
- GEOMETRIC_RMSE_VERIFY:1.321
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1448
- GROUND_CONTROL_POINTS_VERIFY:164
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-12T04:23:08Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_008014_20230806_20230812_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1772550_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_008014_20230806_20230812_02_T1
- LANDSAT_SCENE_ID:LC80080142023218LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8511
- REFLECTIVE_SAMPLES:8461
- REQUEST_ID:1772550_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:55:29.0419639Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:167.37858729
- SUN_ELEVATION:40.61210096
- TARGET_WRS_PATH:8
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8511
- THERMAL_SAMPLES:8461
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:8
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:856141681
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-54.99536167655902, 65.06310301399802]
- 0:-54.99536167655902
- 1:65.06310301399802
1: [-54.995209258983984, 65.06208736173002]
- 0:-54.995209258983984
- 1:65.06208736173002
2: [-54.96413483928588, 65.05741877275871]
- 0:-54.96413483928588
- 1:65.05741877275871
3: [-54.61474427044257, 65.00466594824704]
- 0:-54.61474427044257
- 1:65.00466594824704
4: [-52.21707817172584, 64.6142863201992]
- 0:-52.21707817172584
- 1:64.6142863201992
5: [-51.315607118422655, 64.45430288028933]
- 0:-51.315607118422655
- 1:64.45430288028933
6: [-51.25448208865542, 64.51549189218683]
- 0:-51.25448208865542
- 1:64.51549189218683
7: [-51.22594566724663, 64.54426089554089]
- 0:-51.22594566724663
- 1:64.54426089554089
8: [-51.17750133435866, 64.59376165505793]
- 0:-51.17750133435866
- 1:64.59376165505793
9: [-51.03354538697764, 64.73976882740222]
- 0:-51.03354538697764
- 1:64.73976882740222
10: [-50.78201761633292, 64.99103606365776]
- 0:-50.78201761633292
- 1:64.99103606365776
11: [-50.16297034419769, 65.5912811056681]
- 0:-50.16297034419769
- 1:65.5912811056681
12: [-49.663206675540714, 66.05722002783718]
- 0:-49.663206675540714
- 1:66.05722002783718
13: [-49.649846377365755, 66.0694961462926]
- 0:-49.649846377365755
- 1:66.0694961462926
14: [-51.098258988975054, 66.32197714595915]
- 0:-51.098258988975054
- 1:66.32197714595915
15: [-52.833912524561875, 66.60061612391925]
- 0:-52.833912524561875
- 1:66.60061612391925
16: [-53.20530637804125, 66.65695989136097]
- 0:-53.20530637804125
- 1:66.65695989136097
17: [-53.538764379984336, 66.70658285820986]
- 0:-53.538764379984336
- 1:66.70658285820986
18: [-53.542840261077664, 66.70234932332794]
- 0:-53.542840261077664
- 1:66.70234932332794
19: [-54.29169521680997, 65.88473183141329]
- 0:-54.29169521680997
- 1:65.88473183141329
20: [-54.99536167655902, 65.06310301399802]
- 0:-54.99536167655902
- 1:65.06310301399802
- system:index:LC08_008014_20230806
- system:time_end:1691333729041
- system:time_start:1691333729041
12: Image LANDSAT/LC08/C02/T1_L2/LC08_008014_20230822 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_008014_20230822
- version:1693063701763751
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8461x8521 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
1: "SR_B2", unsigned int16, EPSG:32622, 8461x8521 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
2: "SR_B3", unsigned int16, EPSG:32622, 8461x8521 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
3: "SR_B4", unsigned int16, EPSG:32622, 8461x8521 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
4: "SR_B5", unsigned int16, EPSG:32622, 8461x8521 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
5: "SR_B6", unsigned int16, EPSG:32622, 8461x8521 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
6: "SR_B7", unsigned int16, EPSG:32622, 8461x8521 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8461x8521 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
8: "ST_B10", unsigned int16, EPSG:32622, 8461x8521 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
9: "ST_ATRAN", signed int16, EPSG:32622, 8461x8521 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
10: "ST_CDIST", signed int16, EPSG:32622, 8461x8521 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
11: "ST_DRAD", signed int16, EPSG:32622, 8461x8521 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
12: "ST_EMIS", signed int16, EPSG:32622, 8461x8521 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
13: "ST_EMSD", signed int16, EPSG:32622, 8461x8521 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
14: "ST_QA", signed int16, EPSG:32622, 8461x8521 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
15: "ST_TRAD", signed int16, EPSG:32622, 8461x8521 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
16: "ST_URAD", signed int16, EPSG:32622, 8461x8521 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8461x8521 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8461x8521 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 309885, 0, -30, 7401915]
- 0:30
- 1:0
- 2:309885
- 3:0
- 4:-30
- 5:7401915
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8521]
- 0:8461
- 1:8521
properties: Object (92 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:78.96
- CLOUD_COVER_LAND:66.56
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-08-22
- DATE_PRODUCT_GENERATED:1693032578000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0115083
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:6.025
- GEOMETRIC_RMSE_MODEL_X:4.593
- GEOMETRIC_RMSE_MODEL_Y:3.9
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:197
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-26T06:16:48Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_008014_20230822_20230826_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1778976_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_008014_20230822_20230826_02_T1
- LANDSAT_SCENE_ID:LC80080142023234LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8521
- REFLECTIVE_SAMPLES:8461
- REQUEST_ID:1778976_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:55:36.6314790Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:168.87215971
- SUN_ELEVATION:35.76836736
- TARGET_WRS_PATH:8
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8521
- THERMAL_SAMPLES:8461
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:8
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:990555359
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-55.006201499252406, 65.06298365677064]
- 0:-55.006201499252406
- 1:65.06298365677064
1: [-55.006096822361485, 65.0622885266733]
- 0:-55.006096822361485
- 1:65.0622885266733
2: [-55.002180491293565, 65.06158897458208]
- 0:-55.002180491293565
- 1:65.06158897458208
3: [-54.85553953667364, 65.0396134791373]
- 0:-54.85553953667364
- 1:65.0396134791373
4: [-52.4918131265649, 64.65996383648076]
- 0:-52.4918131265649
- 1:64.65996383648076
5: [-51.32699391334178, 64.45470156831568]
- 0:-51.32699391334178
- 1:64.45470156831568
6: [-51.3248084007931, 64.45470644749462]
- 0:-51.3248084007931
- 1:64.45470644749462
7: [-51.26323740416073, 64.51637108082609]
- 0:-51.26323740416073
- 1:64.51637108082609
8: [-51.236846390283766, 64.5431766511829]
- 0:-51.236846390283766
- 1:64.5431766511829
9: [-51.1756976911555, 64.60560849961453]
- 0:-51.1756976911555
- 1:64.60560849961453
10: [-51.0436259079598, 64.73949699327041]
- 0:-51.0436259079598
- 1:64.73949699327041
11: [-50.79149007665697, 64.99142261714739]
- 0:-50.79149007665697
- 1:64.99142261714739
12: [-50.172622276160894, 65.59159724008114]
- 0:-50.172622276160894
- 1:65.59159724008114
13: [-49.66056065587213, 66.06875900588213]
- 0:-49.66056065587213
- 1:66.06875900588213
14: [-49.66051564868686, 66.06961676366414]
- 0:-49.66051564868686
- 1:66.06961676366414
15: [-50.89022409030409, 66.28509758100343]
- 0:-50.89022409030409
- 1:66.28509758100343
16: [-52.253716168177654, 66.50861140953698]
- 0:-52.253716168177654
- 1:66.50861140953698
17: [-53.52660913459962, 66.70315006949308]
- 0:-53.52660913459962
- 1:66.70315006949308
18: [-53.54990539047155, 66.70655951206784]
- 0:-53.54990539047155
- 1:66.70655951206784
19: [-54.3017048103452, 65.88572921046553]
- 0:-54.3017048103452
- 1:65.88572921046553
20: [-55.006201499252406, 65.06298365677064]
- 0:-55.006201499252406
- 1:65.06298365677064
- system:index:LC08_008014_20230822
- system:time_end:1692716136631
- system:time_start:1692716136631
Usually the best image will be the one with the least cloud cover. We can find the image with the least cloud cover by sorting the collection from least to most cloudy and selecting the first image. We will also clip this image to our search region, so we can focus on our study area.
image = image_collection.sort('CLOUD_COVER').first()
image = image.clip(region)
Now we’re ready to visualize this image. We use the Map function and include parameters to view a true color image (i.e. bands 4, 3, and 2 which are red, green, and blue).
Map = geemap.Map()
visParams = {'bands': ['SR_B4', 'SR_B3', 'SR_B2']}
Map.addLayer(image, visParams)
Map.centerObject(region, zoom=11)
Map
# Define name of folder and file
folder = 'ee-icecap'
region_name = 'Tasersiap-Sermia'
# Get the data of the image from the metadata
date_string = image.get('DATE_ACQUIRED').getInfo()
# Define filename
filename = region_name + '_' + date_string
# Export the image, specifying scale and region.
task = ee.batch.Export.image.toDrive(**{
'image': image.select(['SR_B4', 'SR_B3', 'SR_B2']),
'description': filename,
'folder': folder,
'scale': 30,
'region': region.getInfo()['coordinates']
})
task.start()
print(f'Exporting {filename}.tif to Google Drive...')
Exporting Tasersiap-Sermia_2023-08-08.tif to Google Drive...
Image analysis#
Often in remote sensing analysis, we use normalized difference indices to emphasize a specific land cover type. The Normalized Difference Snow Index (NDSI) can be used to distinguish snow from other surfaces like clouds, vegetation, and soil. We compute the NDSI using the Green and SWIR bands which correspond to Band 3 and Band 6 following this document.
image.bandNames().getInfo()
['SR_B1',
'SR_B2',
'SR_B3',
'SR_B4',
'SR_B5',
'SR_B6',
'SR_B7',
'SR_QA_AEROSOL',
'ST_B10',
'ST_ATRAN',
'ST_CDIST',
'ST_DRAD',
'ST_EMIS',
'ST_EMSD',
'ST_QA',
'ST_TRAD',
'ST_URAD',
'QA_PIXEL',
'QA_RADSAT']
r_high = 'SR_B3' # relevant band name for r_high
r_low = 'SR_B6' # relevant band name for r_low
ndsi = image.normalizedDifference([r_high, r_low]).rename('NDSI')
ndsi
Image (1 band)
- type:Image
bands: List (1 element)
0: "NDSI", float, EPSG:32622, 707x711 px
- id:NDSI
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: float
- type:PixelType
- max:1
- min:-1
- precision:float
dimensions: [707, 711]
- 0:707
- 1:711
origin: [2170, 1816]
- 0:2170
- 1:1816
properties: Object (1 property)
system:footprint: Polygon (35 vertices)
- type:Polygon
coordinates: List (1 element)
0: List (35 elements)
0: [-50.53746857562739, 66.03354808379235]
- 0:-50.53746857562739
- 1:66.03354808379235
1: [-50.50847679429428, 66.03354808379235]
- 0:-50.50847679429428
- 1:66.03354808379235
2: [-50.479485012961156, 66.03354808379235]
- 0:-50.479485012961156
- 1:66.03354808379235
3: [-50.45049323162805, 66.03354808379235]
- 0:-50.45049323162805
- 1:66.03354808379235
4: [-50.421501450294926, 66.03354808379235]
- 0:-50.421501450294926
- 1:66.03354808379235
5: [-50.392509668961814, 66.03354808379235]
- 0:-50.392509668961814
- 1:66.03354808379235
6: [-50.3635178876287, 66.03354808379235]
- 0:-50.3635178876287
- 1:66.03354808379235
7: [-50.334526106295584, 66.03354808379235]
- 0:-50.334526106295584
- 1:66.03354808379235
8: [-50.305534324962466, 66.03354808379235]
- 0:-50.305534324962466
- 1:66.03354808379235
9: [-50.276542543629354, 66.03354808379235]
- 0:-50.276542543629354
- 1:66.03354808379235
10: [-50.247550762296235, 66.03354808379235]
- 0:-50.247550762296235
- 1:66.03354808379235
11: [-50.218558980963124, 66.03354808379235]
- 0:-50.218558980963124
- 1:66.03354808379235
12: [-50.18956719963001, 66.03354808379235]
- 0:-50.18956719963001
- 1:66.03354808379235
13: [-50.16057541829689, 66.03354808379235]
- 0:-50.16057541829689
- 1:66.03354808379235
14: [-50.131583636963775, 66.03354808379235]
- 0:-50.131583636963775
- 1:66.03354808379235
15: [-50.102591855630656, 66.03354808379235]
- 0:-50.102591855630656
- 1:66.03354808379235
16: [-50.073600074297545, 66.03354808379235]
- 0:-50.073600074297545
- 1:66.03354808379235
17: [-50.073600074297545, 66.2224880924906]
- 0:-50.073600074297545
- 1:66.2224880924906
18: [-50.10259185563066, 66.2224880924906]
- 0:-50.10259185563066
- 1:66.2224880924906
19: [-50.131583636963775, 66.2224880924906]
- 0:-50.131583636963775
- 1:66.2224880924906
20: [-50.16057541829688, 66.2224880924906]
- 0:-50.16057541829688
- 1:66.2224880924906
21: [-50.18956719963002, 66.2224880924906]
- 0:-50.18956719963002
- 1:66.2224880924906
22: [-50.218558980963124, 66.2224880924906]
- 0:-50.218558980963124
- 1:66.2224880924906
23: [-50.247550762296235, 66.2224880924906]
- 0:-50.247550762296235
- 1:66.2224880924906
24: [-50.276542543629354, 66.2224880924906]
- 0:-50.276542543629354
- 1:66.2224880924906
25: [-50.305534324962466, 66.2224880924906]
- 0:-50.305534324962466
- 1:66.2224880924906
26: [-50.33452610629559, 66.2224880924906]
- 0:-50.33452610629559
- 1:66.2224880924906
27: [-50.36351788762871, 66.2224880924906]
- 0:-50.36351788762871
- 1:66.2224880924906
28: [-50.39250966896181, 66.2224880924906]
- 0:-50.39250966896181
- 1:66.2224880924906
29: [-50.421501450294926, 66.2224880924906]
- 0:-50.421501450294926
- 1:66.2224880924906
30: [-50.45049323162805, 66.2224880924906]
- 0:-50.45049323162805
- 1:66.2224880924906
31: [-50.479485012961156, 66.2224880924906]
- 0:-50.479485012961156
- 1:66.2224880924906
32: [-50.50847679429428, 66.2224880924906]
- 0:-50.50847679429428
- 1:66.2224880924906
33: [-50.53746857562739, 66.2224880924906]
- 0:-50.53746857562739
- 1:66.2224880924906
34: [-50.53746857562739, 66.03354808379235]
- 0:-50.53746857562739
- 1:66.03354808379235
Map = geemap.Map()
# Display NDSI
visParams = {'bands': ['NDSI'], 'min': -1, 'max': 1, 'palette': ['red', 'white', 'blue']}
Map.addLayer(ndsi, visParams)
# Add colorbar for NDSI
Map.add_colorbar(vis_params=visParams, label="NDSI Index", orientation='horizontal', position='bottomright')
Map.centerObject(region, zoom=11)
Map
Threshold image#
To compute the area of the ice cap, we need to produce a binary mask that determines whether pixels belong to the ice cap or not. We can do this using a thresholding approach. While this technique is conceptually simple, it is often challenging to identify an optimal threshold.
A good way to begin identifying a threshold is to produce a histogram of NDSI values in the scene. Below we will sample 10,000 pixels within the scene
import geemap.chart as chart
# Sample 10,000 pixels within the NDSI image
sample_pixels = ndsi.sample(region, numPixels=10000)
# Set labels for the graph
labels = {"title": 'Distribution of NDSI values within image'}
# Construct the histogram
chart.feature_histogram(sample_pixels, 'NDSI', **labels)
The histogram shows that the data has a bimodal distribution, with lots of land surface with NDSI values < 0 and the ice cap with NDSI values >0.6. There is also a large spike, presumably related to the river.
Note
The gt function denotes greater than. lt would be less than.
# Manually set a threshold
threshold = 0.2
# Threshold the image (ice cap is values greater than threshold)
ndsi_threshold = ndsi.gt(threshold)
# Mask data, showing only regions beyond the threshold.
ndsi_threshold = ndsi_threshold.updateMask(ndsi_threshold.neq(0))
We can visualize our classification by making it semi-transparent and overlaying it over our original true color image. Note that we also set values that are lower than the threshold to 0 so that they are fully-transparent.
Map = geemap.Map()
# Display colour image
max_reflectance = 0.8
visParams = {'bands': ['SR_B4', 'SR_B3', 'SR_B2']}
Map.addLayer(image, visParams, 'True Colour')
# Display NDSI
visParams = {'bands': 'NDSI', 'palette': ['white', 'cyan'], 'opacity': 0.3}
Map.addLayer(ndsi_threshold, visParams, 'NDSI')
Map.centerObject(region, zoom=11)
Map
Import shapefile#
This is a good start but it would be challenging to quantify the area of the ice cap because there are other features in the bounding box that have high NDSI values such as the river and several snow patches adjacent to the ice cap. To remove these features from our analysis, we can import a polygon which delineates the outer edge of the ice cap.
The Randolph Glacier Inventory (RGI) is a dataset that contains outlines of every glacier on Earth (excluding the ice sheets in Greenland and Antarctica) for the target year 2000.
We downloaded the RGI v7.0 and identified the outline of our ice cap. To use this file in Earth Engine, we have to import it as an Asset. We can can do this going to https://code.earthengine.google.com/, selecting Assets from the top-left sidebar, and clicking New –> Shape files under the Table Upload section. This will open a pop-up that will allow us to select the relevant files.
Note
Note that the .shp, .dbf, and .shx files are required. If the .prj file is not provided, WGS84 is assumed.
Give the table an appropriate Asset ID and click Upload.
# Import shapefile asset
outline = ee.FeatureCollection("projects/ee-icecap/assets/icecap")
outline
FeatureCollection projects/ee-icecap/assets/icecap (1 element, 8 columns)
- type:FeatureCollection
- id:projects/ee-icecap/assets/icecap
- version:1762269263368902
columns: Object (8 properties)
- area_km2:Float
- cenlat:Float
- cenlon:Float
- o1region:String
- o2region:String
- rgi_id:String
- system:index:String
- utm_zone:Long
properties: Object (1 property)
- system:asset_size:58802
features: List (1 element)
0: Feature (Polygon, 7 properties)
- type:Feature
- id:00000000000000000000
geometry: Polygon (6210 vertices)
- type:Polygon
coordinates: List (107 elements)
0: List (6210 elements)
0: [-50.50292685703748, 66.14171211575481]
- 0:-50.50292685703748
- 1:66.14171211575481
1: [-50.50292231885863, 66.14198412479847]
- 0:-50.50292231885863
- 1:66.14198412479847
2: [-50.506244464022345, 66.14199305937677]
- 0:-50.506244464022345
- 1:66.14199305937677
3: [-50.506253407724, 66.14145351817554]
- 0:-50.506253407724
- 1:66.14145351817554
4: [-50.50891545490134, 66.14146246731129]
- 0:-50.50891545490134
- 1:66.14146246731129
5: [-50.50891097521939, 66.14173447663853]
- 0:-50.50891097521939
- 1:66.14173447663853
6: [-50.51090419470427, 66.14173892979376]
- 0:-50.51090419470427
- 1:66.14173892979376
7: [-50.51089521215392, 66.14200648955935]
- 0:-50.51089521215392
- 1:66.14200648955935
8: [-50.511564063997746, 66.14201092922647]
- 0:-50.511564063997746
- 1:66.14201092922647
9: [-50.511568517667584, 66.14173891935744]
- 0:-50.511568517667584
- 1:66.14173891935744
10: [-50.51223308738306, 66.14174336867843]
- 0:-50.51223308738306
- 1:66.14174336867843
11: [-50.51224191505596, 66.14120382691719]
- 0:-50.51224191505596
- 1:66.14120382691719
12: [-50.51290630288832, 66.14120822119497]
- 0:-50.51290630288832
- 1:66.14120822119497
13: [-50.51291528634611, 66.14066873183681]
- 0:-50.51291528634611
- 1:66.14066873183681
14: [-50.51158644615138, 66.14066430051544]
- 0:-50.51158644615138
- 1:66.14066430051544
15: [-50.51158189066197, 66.14093178061947]
- 0:-50.51158189066197
- 1:66.14093178061947
16: [-50.509588730781495, 66.14092733861266]
- 0:-50.509588730781495
- 1:66.14092733861266
17: [-50.50958432471913, 66.14119487019866]
- 0:-50.50958432471913
- 1:66.14119487019866
18: [-50.50891986733056, 66.14119493550233]
- 0:-50.50891986733056
- 1:66.14119493550233
19: [-50.508933317575924, 66.14038779922953]
- 0:-50.508933317575924
- 1:66.14038779922953
20: [-50.50826877765769, 66.14038333258608]
- 0:-50.50826877765769
- 1:66.14038333258608
21: [-50.50828220451041, 66.13984824454923]
- 0:-50.50828220451041
- 1:66.13984824454923
22: [-50.50761784553014, 66.13984382591896]
- 0:-50.50761784553014
- 1:66.13984382591896
23: [-50.50762227083554, 66.13957629594296]
- 0:-50.50762227083554
- 1:66.13957629594296
24: [-50.506957894813524, 66.1395717571289]
- 0:-50.506957894813524
- 1:66.1395717571289
25: [-50.506962326531976, 66.13930422750116]
- 0:-50.506962326531976
- 1:66.13930422750116
26: [-50.50629797950784, 66.13929980194392]
- 0:-50.50629797950784
- 1:66.13929980194392
27: [-50.506306855792545, 66.13876474366795]
- 0:-50.506306855792545
- 1:66.13876474366795
28: [-50.505642498122675, 66.13876019799226]
- 0:-50.505642498122675
- 1:66.13876019799226
29: [-50.50562895120261, 66.13956732815643]
- 0:-50.50562895120261
- 1:66.13956732815643
30: [-50.50230250386467, 66.13955840586955]
- 0:-50.50230250386467
- 1:66.13955840586955
31: [-50.50231156931021, 66.1392908497914]
- 0:-50.50231156931021
- 1:66.1392908497914
32: [-50.500313690899425, 66.1392819410204]
- 0:-50.500313690899425
- 1:66.1392819410204
33: [-50.500304945039034, 66.13982146256716]
- 0:-50.500304945039034
- 1:66.13982146256716
34: [-50.499640434918945, 66.13981706688723]
- 0:-50.499640434918945
- 1:66.13981706688723
35: [-50.49963600969948, 66.14008900826289]
- 0:-50.49963600969948
- 1:66.14008900826289
36: [-50.4983071973655, 66.14008455273131]
- 0:-50.4983071973655
- 1:66.14008455273131
37: [-50.498302851152935, 66.14035213379996]
- 0:-50.498302851152935
- 1:66.14035213379996
38: [-50.49298296379826, 66.14033431325944]
- 0:-50.49298296379826
- 1:66.14033431325944
39: [-50.49298752972283, 66.14006678409794]
- 0:-50.49298752972283
- 1:66.14006678409794
40: [-50.492323153622465, 66.14006228418697]
- 0:-50.492323153622465
- 1:66.14006228418697
41: [-50.49233640473286, 66.13952716281781]
- 0:-50.49233640473286
- 1:66.13952716281781
42: [-50.49300083789445, 66.13952718540286]
- 0:-50.49300083789445
- 1:66.13952718540286
43: [-50.493005403840016, 66.13925965709525]
- 0:-50.493005403840016
- 1:66.13925965709525
44: [-50.493669661454824, 66.13925962468124]
- 0:-50.493669661454824
- 1:66.13925962468124
45: [-50.49368768477233, 66.13845255145571]
- 0:-50.49368768477233
- 1:66.13845255145571
46: [-50.4943520213879, 66.13845704386895]
- 0:-50.4943520213879
- 1:66.13845704386895
47: [-50.49435647569979, 66.13818498801474]
- 0:-50.49435647569979
- 1:66.13818498801474
48: [-50.495020805409624, 66.13818947683387]
- 0:-50.495020805409624
- 1:66.13818947683387
49: [-50.49502535225132, 66.13792194975942]
- 0:-50.49502535225132
- 1:66.13792194975942
50: [-50.49568974458341, 66.13792195783644]
- 0:-50.49568974458341
- 1:66.13792195783644
51: [-50.49570300104974, 66.13738236313824]
- 0:-50.49570300104974
- 1:66.13738236313824
52: [-50.49636762464112, 66.13738683076623]
- 0:-50.49636762464112
- 1:66.13738683076623
53: [-50.49637191395708, 66.13711484119877]
- 0:-50.49637191395708
- 1:66.13711484119877
54: [-50.49703636211217, 66.13711925382776]
- 0:-50.49703636211217
- 1:66.13711925382776
55: [-50.49704088983024, 66.13685172770384]
- 0:-50.49704088983024
- 1:66.13685172770384
56: [-50.49770525473276, 66.13685172492444]
- 0:-50.49770525473276
- 1:66.13685172492444
57: [-50.49771419803262, 66.13631214488106]
- 0:-50.49771419803262
- 1:66.13631214488106
58: [-50.499042999838025, 66.13631665701318]
- 0:-50.499042999838025
- 1:66.13631665701318
59: [-50.49903842235504, 66.1365886598819]
- 0:-50.49903842235504
- 1:66.1365886598819
60: [-50.49970277910528, 66.13658864645235]
- 0:-50.49970277910528
- 1:66.13658864645235
61: [-50.4997118697987, 66.13632109385296]
- 0:-50.4997118697987
- 1:66.13632109385296
62: [-50.50037163105122, 66.13632110362748]
- 0:-50.50037163105122
- 1:66.13632110362748
63: [-50.50038521114799, 66.13578602592717]
- 0:-50.50038521114799
- 1:66.13578602592717
64: [-50.501049547481436, 66.1357860052314]
- 0:-50.501049547481436
- 1:66.1357860052314
65: [-50.50105403693427, 66.13551848015534]
- 0:-50.50105403693427
- 1:66.13551848015534
66: [-50.500389607138985, 66.13551397240155]
- 0:-50.500389607138985
- 1:66.13551397240155
67: [-50.50039410300284, 66.13524644767423]
- 0:-50.50039410300284
- 1:66.13524644767423
68: [-50.499065209058756, 66.13524201553346]
- 0:-50.499065209058756
- 1:66.13524201553346
69: [-50.49908748719488, 66.13416290153718]
- 0:-50.49908748719488
- 1:66.13416290153718
70: [-50.50041632959151, 66.13416733312648]
- 0:-50.50041632959151
- 1:66.13416733312648
71: [-50.50042082552425, 66.13389980982554]
- 0:-50.50042082552425
- 1:66.13389980982554
72: [-50.499756365090434, 66.13389977604105]
- 0:-50.499756365090434
- 1:66.13389977604105
73: [-50.49976093621614, 66.13362777600624]
- 0:-50.49976093621614
- 1:66.13362777600624
74: [-50.499096336125305, 66.13362780407168]
- 0:-50.499096336125305
- 1:66.13362780407168
75: [-50.49909199590437, 66.13389537836215]
- 0:-50.49909199590437
- 1:66.13389537836215
76: [-50.49510549462892, 66.13388199924074]
- 0:-50.49510549462892
- 1:66.13388199924074
77: [-50.49511004168907, 66.13361447672781]
- 0:-50.49511004168907
- 1:66.13361447672781
78: [-50.493116681147825, 66.13360550811419]
- 0:-50.493116681147825
- 1:66.13360550811419
79: [-50.4931258354376, 66.13333795952138]
- 0:-50.4931258354376
- 1:66.13333795952138
80: [-50.490468225689355, 66.13332904445399]
- 0:-50.490468225689355
- 1:66.13332904445399
81: [-50.49047264897113, 66.1330614715428]
- 0:-50.49047264897113
- 1:66.1330614715428
82: [-50.48847933942192, 66.13305254596203]
- 0:-50.48847933942192
- 1:66.13305254596203
83: [-50.48848395038222, 66.13278502493752]
- 0:-50.48848395038222
- 1:66.13278502493752
84: [-50.486490510118685, 66.13277613307899]
- 0:-50.486490510118685
- 1:66.13277613307899
85: [-50.48648612311561, 66.13304811706932]
- 0:-50.48648612311561
- 1:66.13304811706932
86: [-50.48515733319894, 66.13304365447189]
- 0:-50.48515733319894
- 1:66.13304365447189
87: [-50.485161807615604, 66.13277608234539]
- 0:-50.485161807615604
- 1:66.13277608234539
88: [-50.48316852820476, 66.13276718894141]
- 0:-50.48316852820476
- 1:66.13276718894141
89: [-50.4831730218107, 66.13249961728933]
- 0:-50.4831730218107
- 1:66.13249961728933
90: [-50.48250852757937, 66.13249519701313]
- 0:-50.48250852757937
- 1:66.13249519701313
91: [-50.482513027596674, 66.13222762570992]
- 0:-50.482513027596674
- 1:66.13222762570992
92: [-50.48184868491152, 66.13222313666886]
- 0:-50.48184868491152
- 1:66.13222313666886
93: [-50.48185763367207, 66.13195560487071]
- 0:-50.48185763367207
- 1:66.13195560487071
94: [-50.48119315140374, 66.13195117768763]
- 0:-50.48119315140374
- 1:66.13195117768763
95: [-50.48120203145045, 66.13141610205822]
- 0:-50.48120203145045
- 1:66.13141610205822
96: [-50.480537707115715, 66.13141160617664]
- 0:-50.480537707115715
- 1:66.13141160617664
97: [-50.480555633305634, 66.13060452461166]
- 0:-50.480555633305634
- 1:66.13060452461166
98: [-50.48121993836845, 66.13060902027333]
- 0:-50.48121993836845
- 1:66.13060902027333
99: [-50.48122452300729, 66.13033697409867]
- 0:-50.48122452300729
- 1:66.13033697409867
100: [-50.47989570790926, 66.13033252166541]
- 0:-50.47989570790926
- 1:66.13033252166541
101: [-50.47991333932213, 66.12952545762825]
- 0:-50.47991333932213
- 1:66.12952545762825
102: [-50.4792489870016, 66.12952543216598]
- 0:-50.4792489870016
- 1:66.12952543216598
103: [-50.47926250981211, 66.12871831779746]
- 0:-50.47926250981211
- 1:66.12871831779746
104: [-50.48125558088614, 66.12872279471051]
- 0:-50.48125558088614
- 1:66.12872279471051
105: [-50.481251067937364, 66.12899036217635]
- 0:-50.481251067937364
- 1:66.12899036217635
106: [-50.48324439576046, 66.12899927058878]
- 0:-50.48324439576046
- 1:66.12899927058878
107: [-50.4832488895443, 66.12873170293189]
- 0:-50.4832488895443
- 1:66.12873170293189
108: [-50.484577622511736, 66.12873611925646]
- 0:-50.484577622511736
- 1:66.12873611925646
109: [-50.4845820292484, 66.12846414009577]
- 0:-50.4845820292484
- 1:66.12846414009577
110: [-50.48591091562084, 66.12846859358713]
- 0:-50.48591091562084
- 1:66.12846859358713
111: [-50.48591982561319, 66.12820106525943]
- 0:-50.48591982561319
- 1:66.12820106525943
112: [-50.48658430855854, 66.12820110649969]
- 0:-50.48658430855854
- 1:66.12820110649969
113: [-50.486588770427396, 66.12793353938733]
- 0:-50.486588770427396
- 1:66.12793353938733
114: [-50.487917628040684, 66.12793797139076]
- 0:-50.487917628040684
- 1:66.12793797139076
115: [-50.487921931627966, 66.12767046974238]
- 0:-50.487921931627966
- 1:66.12767046974238
116: [-50.489250774401725, 66.12767488749658]
- 0:-50.489250774401725
- 1:66.12767488749658
117: [-50.489255135741836, 66.12740290905663]
- 0:-50.489255135741836
- 1:66.12740290905663
118: [-50.4905841319186, 66.1274073639687]
- 0:-50.4905841319186
- 1:66.1274073639687
119: [-50.49059749093001, 66.12686779288576]
- 0:-50.49059749093001
- 1:66.12686779288576
120: [-50.491261867509955, 66.12687228602101]
- 0:-50.491261867509955
- 1:66.12687228602101
121: [-50.49126628473685, 66.12660471989703]
- 0:-50.49126628473685
- 1:66.12660471989703
122: [-50.49325953258061, 66.1266092240392]
- 0:-50.49325953258061
- 1:66.1266092240392
123: [-50.493263930669066, 66.12634165801421]
- 0:-50.493263930669066
- 1:66.12634165801421
124: [-50.49392836237778, 66.1263416599568]
- 0:-50.49392836237778
- 1:66.1263416599568
125: [-50.49394621707858, 66.12553457660422]
- 0:-50.49394621707858
- 1:66.12553457660422
126: [-50.49327736338539, 66.12553453612385]
- 0:-50.49327736338539
- 1:66.12553453612385
127: [-50.493286272636844, 66.12526253306301]
- 0:-50.493286272636844
- 1:66.12526253306301
128: [-50.49262186606757, 66.12526252785486]
- 0:-50.49262186606757
- 1:66.12526252785486
129: [-50.49263091359843, 66.12472297356418]
- 0:-50.49263091359843
- 1:66.12472297356418
130: [-50.49329523742826, 66.12472745556046]
- 0:-50.49329523742826
- 1:66.12472745556046
131: [-50.49329970549592, 66.12445541462768]
- 0:-50.49329970549592
- 1:66.12445541462768
132: [-50.49396402242332, 66.12445989302812]
- 0:-50.49396402242332
- 1:66.12445989302812
133: [-50.49397731688175, 66.12392032752571]
- 0:-50.49397731688175
- 1:66.12392032752571
134: [-50.49331294297434, 66.12392032617527]
- 0:-50.49331294297434
- 1:66.12392032617527
135: [-50.49332197776471, 66.12338077463615]
- 0:-50.49332197776471
- 1:66.12338077463615
136: [-50.49265754058683, 66.12337635830042]
- 0:-50.49265754058683
- 1:66.12337635830042
137: [-50.4926619452526, 66.12310879576762]
- 0:-50.4926619452526
- 1:66.12310879576762
138: [-50.49133315774679, 66.12310436420154]
- 0:-50.49133315774679
- 1:66.12310436420154
139: [-50.491355338617026, 66.1220296793611]
- 0:-50.491355338617026
- 1:66.1220296793611
140: [-50.494013145807, 66.12203863007547]
- 0:-50.494013145807
- 1:66.12203863007547
141: [-50.49402199951755, 66.12149903104172]
- 0:-50.49402199951755
- 1:66.12149903104172
142: [-50.492697563326224, 66.12149460176082]
- 0:-50.492697563326224
- 1:66.12149460176082
143: [-50.49270661122538, 66.12095505553876]
- 0:-50.49270661122538
- 1:66.12095505553876
144: [-50.489384450798546, 66.12094612114991]
- 0:-50.489384450798546
- 1:66.12094612114991
145: [-50.48938001410607, 66.121213681085]
- 0:-50.48938001410607
- 1:66.121213681085
146: [-50.488715700440174, 66.12121365566509]
- 0:-50.488715700440174
- 1:66.12121365566509
147: [-50.48871125738572, 66.12148121582425]
- 0:-50.48871125738572
- 1:66.12148121582425
148: [-50.48804679121835, 66.12148125211641]
- 0:-50.48804679121835
- 1:66.12148125211641
149: [-50.48805131137791, 66.12120921517767]
- 0:-50.48805131137791
- 1:66.12120921517767
150: [-50.48738685107891, 66.1212092479978]
- 0:-50.48738685107891
- 1:66.1212092479978
151: [-50.487395818302915, 66.12093725036179]
- 0:-50.487395818302915
- 1:66.12093725036179
152: [-50.486066956951205, 66.12093271202524]
- 0:-50.486066956951205
- 1:66.12093271202524
153: [-50.48607142555097, 66.12066515268981]
- 0:-50.48607142555097
- 1:66.12066515268981
154: [-50.485406976371436, 66.12066517505635]
- 0:-50.485406976371436
- 1:66.12066517505635
155: [-50.485411377028385, 66.120393204545]
- 0:-50.485411377028385
- 1:66.120393204545
156: [-50.48474707921487, 66.12039315813902]
- 0:-50.48474707921487
- 1:66.12039315813902
157: [-50.4847604082124, 66.11985366867009]
- 0:-50.4847604082124
- 1:66.11985366867009
158: [-50.48343161694751, 66.11984921934068]
- 0:-50.48343161694751
- 1:66.11984921934068
159: [-50.48343618260214, 66.11957718459435]
- 0:-50.48343618260214
- 1:66.11957718459435
160: [-50.4827717569005, 66.11957719309676]
- 0:-50.4827717569005
- 1:66.11957719309676
161: [-50.48278510155738, 66.1190375890943]
- 0:-50.48278510155738
- 1:66.1190375890943
162: [-50.48212068811411, 66.11903759420836]
- 0:-50.48212068811411
- 1:66.11903759420836
163: [-50.482125049595744, 66.11877010254577]
- 0:-50.482125049595744
- 1:66.11877010254577
164: [-50.480796377401035, 66.11876114872356]
- 0:-50.480796377401035
- 1:66.11876114872356
165: [-50.48079178575529, 66.11903318234211]
- 0:-50.48079178575529
- 1:66.11903318234211
166: [-50.479463026836044, 66.11902869105114]
- 0:-50.479463026836044
- 1:66.11902869105114
167: [-50.479467559355285, 66.118761134344]
- 0:-50.479467559355285
- 1:66.118761134344
168: [-50.476809842402524, 66.11874776343097]
- 0:-50.476809842402524
- 1:66.11874776343097
169: [-50.476800967662555, 66.11928733953916]
- 0:-50.476800967662555
- 1:66.11928733953916
170: [-50.47347885996932, 66.1192783989371]
- 0:-50.47347885996932
- 1:66.1192783989371
171: [-50.47348796331247, 66.11900640517251]
- 0:-50.47348796331247
- 1:66.11900640517251
172: [-50.47215904767793, 66.11900190150733]
- 0:-50.47215904767793
- 1:66.11900190150733
173: [-50.472163504867126, 66.11873441078208]
- 0:-50.472163504867126
- 1:66.11873441078208
174: [-50.47149901659709, 66.11872994796927]
- 0:-50.47149901659709
- 1:66.11872994796927
175: [-50.471508065946566, 66.11846243181886]
- 0:-50.471508065946566
- 1:66.11846243181886
176: [-50.469514784331025, 66.11845796213213]
- 0:-50.469514784331025
- 1:66.11845796213213
177: [-50.46950588418862, 66.11872552945874]
- 0:-50.46950588418862
- 1:66.11872552945874
178: [-50.46884597989064, 66.11872102683924]
- 0:-50.46884597989064
- 1:66.11872102683924
179: [-50.46885030060659, 66.11845348527783]
- 0:-50.46885030060659
- 1:66.11845348527783
180: [-50.46818598484233, 66.11844905632755]
- 0:-50.46818598484233
- 1:66.11844905632755
181: [-50.468190457496014, 66.11818144983492]
- 0:-50.468190457496014
- 1:66.11818144983492
182: [-50.46686159501025, 66.11817700678743]
- 0:-50.46686159501025
- 1:66.11817700678743
183: [-50.46687052062298, 66.11790944037834]
- 0:-50.46687052062298
- 1:66.11790944037834
184: [-50.466206216300634, 66.11790500098729]
- 0:-50.466206216300634
- 1:66.11790500098729
185: [-50.46621056257948, 66.11763746053134]
- 0:-50.46621056257948
- 1:66.11763746053134
186: [-50.46421742339381, 66.11762854666483]
- 0:-50.46421742339381
- 1:66.11762854666483
187: [-50.46423073990783, 66.11709344147486]
- 0:-50.46423073990783
- 1:66.11709344147486
188: [-50.46356645300332, 66.11708898817626]
- 0:-50.46356645300332
- 1:66.11708898817626
189: [-50.463575271379845, 66.11654943304117]
- 0:-50.463575271379845
- 1:66.11654943304117
190: [-50.462910922160766, 66.11654945306078]
- 0:-50.462910922160766
- 1:66.11654945306078
191: [-50.462946512159036, 66.11493522072652]
- 0:-50.462946512159036
- 1:66.11493522072652
192: [-50.463610991199694, 66.11493525173992]
- 0:-50.463610991199694
- 1:66.11493525173992
193: [-50.46361988061733, 66.11440011263251]
- 0:-50.46361988061733
- 1:66.11440011263251
194: [-50.462959783227724, 66.11439571014036]
- 0:-50.462959783227724
- 1:66.11439571014036
195: [-50.46298672340917, 66.11304903824943]
- 0:-50.46298672340917
- 1:66.11304903824943
196: [-50.46365108276447, 66.1130535454495]
- 0:-50.46365108276447
- 1:66.1130535454495
197: [-50.463673305038505, 66.11197442815995]
- 0:-50.463673305038505
- 1:66.11197442815995
198: [-50.46500219100654, 66.11197888947984]
- 0:-50.46500219100654
- 1:66.11197888947984
199: [-50.46500669580404, 66.11171129017234]
- 0:-50.46500669580404
- 1:66.11171129017234
200: [-50.46567102170327, 66.11171578642512]
- 0:-50.46567102170327
- 1:66.11171578642512
201: [-50.46567544899271, 66.11144377598063]
- 0:-50.46567544899271
- 1:66.11144377598063
202: [-50.465011055118936, 66.11144375642442]
- 0:-50.465011055118936
- 1:66.11144375642442
203: [-50.46501992802176, 66.11117178606719]
- 0:-50.46501992802176
- 1:66.11117178606719
204: [-50.46567994744954, 66.11117617718263]
- 0:-50.46567994744954
- 1:66.11117617718263
205: [-50.46568881384063, 66.11090420703042]
- 0:-50.46568881384063
- 1:66.11090420703042
206: [-50.4663532654676, 66.11090863425562]
- 0:-50.4663532654676
- 1:66.11090863425562
207: [-50.46636220121057, 66.1103691433381]
- 0:-50.46636220121057
- 1:66.1103691433381
208: [-50.46569783359388, 66.11036912758131]
- 0:-50.46569783359388
- 1:66.11036912758131
209: [-50.465706699881956, 66.1100971583011]
- 0:-50.465706699881956
- 1:66.1100971583011
210: [-50.46504233813702, 66.11009713909485]
- 0:-50.46504233813702
- 1:66.11009713909485
211: [-50.46505127685092, 66.10955753344882]
- 0:-50.46505127685092
- 1:66.10955753344882
212: [-50.46173367554581, 66.10954866749158]
- 0:-50.46173367554581
- 1:66.10954866749158
213: [-50.46173814182142, 66.10927665975696]
- 0:-50.46173814182142
- 1:66.10927665975696
214: [-50.46107365043312, 66.10927668482347]
- 0:-50.46107365043312
- 1:66.10927668482347
215: [-50.46108270749599, 66.10900465204455]
- 0:-50.46108270749599
- 1:66.10900465204455
216: [-50.45975381116215, 66.10900021516288]
- 0:-50.45975381116215
- 1:66.10900021516288
217: [-50.45975836709007, 66.10873261951143]
- 0:-50.45975836709007
- 1:66.10873261951143
218: [-50.45909396224881, 66.1087281575456]
- 0:-50.45909396224881
- 1:66.1087281575456
219: [-50.45910281777416, 66.10846066745111]
- 0:-50.45910281777416
- 1:66.10846066745111
220: [-50.456445068179036, 66.10845173773961]
- 0:-50.456445068179036
- 1:66.10845173773961
221: [-50.45645861285158, 66.10791217723904]
- 0:-50.45645861285158
- 1:66.10791217723904
222: [-50.45579414906619, 66.10791217440321]
- 0:-50.45579414906619
- 1:66.10791217440321
223: [-50.45579867374051, 66.10764016898875]
- 0:-50.45579867374051
- 1:66.10764016898875
224: [-50.454469833461836, 66.10763567628689]
- 0:-50.454469833461836
- 1:66.10763567628689
225: [-50.454478733506726, 66.1073681879391]
- 0:-50.454478733506726
- 1:66.1073681879391
226: [-50.45314990394942, 66.10736368127338]
- 0:-50.45314990394942
- 1:66.10736368127338
227: [-50.453154378189794, 66.10709615323283]
- 0:-50.453154378189794
- 1:66.10709615323283
228: [-50.45116548051728, 66.10708723412804]
- 0:-50.45116548051728
- 1:66.10708723412804
229: [-50.45116997388057, 66.10681970656246]
- 0:-50.45116997388057
- 1:66.10681970656246
230: [-50.44917682082542, 66.10681076715066]
- 0:-50.44917682082542
- 1:66.10681076715066
231: [-50.449185603527376, 66.10654322889127]
- 0:-50.449185603527376
- 1:66.10654322889127
232: [-50.44852141100067, 66.10653876248905]
- 0:-50.44852141100067
- 1:66.10653876248905
233: [-50.4485257616245, 66.10627118428901]
- 0:-50.4485257616245
- 1:66.10627118428901
234: [-50.44587266871793, 66.10626230462638]
- 0:-50.44587266871793
- 1:66.10626230462638
235: [-50.44586812435163, 66.10652983111544]
- 0:-50.44586812435163
- 1:66.10652983111544
236: [-50.44387500166225, 66.10652092394136]
- 0:-50.44387500166225
- 1:66.10652092394136
237: [-50.44387939691714, 66.10625334617727]
- 0:-50.44387939691714
- 1:66.10625334617727
238: [-50.44321506168588, 66.10624891685165]
- 0:-50.44321506168588
- 1:66.10624891685165
239: [-50.44321058206284, 66.10652097106117]
- 0:-50.44321058206284
- 1:66.10652097106117
240: [-50.44254607168391, 66.1065164866692]
- 0:-50.44254607168391
- 1:66.1065164866692
241: [-50.442541731129936, 66.10678847586092]
- 0:-50.442541731129936
- 1:66.10678847586092
242: [-50.44121278612914, 66.10678402432492]
- 0:-50.44121278612914
- 1:66.10678402432492
243: [-50.441208510931105, 66.10705153717016]
- 0:-50.441208510931105
- 1:66.10705153717016
244: [-50.44054415461547, 66.10704709351639]
- 0:-50.44054415461547
- 1:66.10704709351639
245: [-50.44055302025346, 66.106779556087]
- 0:-50.44055302025346
- 1:66.106779556087
246: [-50.43855964231532, 66.10677510573429]
- 0:-50.43855964231532
- 1:66.10677510573429
247: [-50.43856416729409, 66.10650305167502]
- 0:-50.43856416729409
- 1:66.10650305167502
248: [-50.437899743179294, 66.10650307054225]
- 0:-50.437899743179294
- 1:66.10650307054225
249: [-50.437908713111305, 66.106231057529]
- 0:-50.437908713111305
- 1:66.106231057529
250: [-50.43525104942159, 66.10622221024076]
- 0:-50.43525104942159
- 1:66.10622221024076
251: [-50.43526452338708, 66.10568262149184]
- 0:-50.43526452338708
- 1:66.10568262149184
252: [-50.43460011576073, 66.10568262291523]
- 0:-50.43460011576073
- 1:66.10568262291523
253: [-50.43461345696121, 66.1051431007071]
- 0:-50.43461345696121
- 1:66.1051431007071
254: [-50.43394906158835, 66.10514309873975]
- 0:-50.43394906158835
- 1:66.10514309873975
255: [-50.43396690648966, 66.1043360030121]
- 0:-50.43396690648966
- 1:66.1043360030121
256: [-50.43330244111277, 66.1043314697789]
- 0:-50.43330244111277
- 1:66.1043314697789
257: [-50.43331580788681, 66.10379195076115]
- 0:-50.43331580788681
- 1:66.10379195076115
258: [-50.43398023771229, 66.10379636712523]
- 0:-50.43398023771229
- 1:66.10379636712523
259: [-50.43398900800237, 66.10325687352262]
- 0:-50.43398900800237
- 1:66.10325687352262
260: [-50.43266482306579, 66.10325242435843]
- 0:-50.43266482306579
- 1:66.10325242435843
261: [-50.43267803432455, 66.10271285632231]
- 0:-50.43267803432455
- 1:66.10271285632231
262: [-50.43201369506703, 66.10271284438743]
- 0:-50.43201369506703
- 1:66.10271284438743
263: [-50.43201813940231, 66.10244086057575]
- 0:-50.43201813940231
- 1:66.10244086057575
264: [-50.43135380601371, 66.10244084516687]
- 0:-50.43135380601371
- 1:66.10244084516687
265: [-50.431362840225354, 66.10216883739633]
- 0:-50.431362840225354
- 1:66.10216883739633
266: [-50.43069836716759, 66.10216888376989]
- 0:-50.43069836716759
- 1:66.10216888376989
267: [-50.43070265626925, 66.10189684918616]
- 0:-50.43070265626925
- 1:66.10189684918616
268: [-50.42937394704407, 66.10189238980826]
- 0:-50.42937394704407
- 1:66.10189238980826
269: [-50.42936947676486, 66.1021643727831]
- 0:-50.42936947676486
- 1:66.1021643727831
270: [-50.427380794991386, 66.10215549249068]
- 0:-50.427380794991386
- 1:66.10215549249068
271: [-50.42737180242807, 66.10242302332499]
- 0:-50.42737180242807
- 1:66.10242302332499
272: [-50.42538301643175, 66.10241858751439]
- 0:-50.42538301643175
- 1:66.10241858751439
273: [-50.42538759024989, 66.1021510158061]
- 0:-50.42538759024989
- 1:66.1021510158061
274: [-50.424723193043285, 66.10214655398104]
- 0:-50.424723193043285
- 1:66.10214655398104
275: [-50.424732042877615, 66.1018789722865]
- 0:-50.424732042877615
- 1:66.1018789722865
276: [-50.425391931201666, 66.10187898171974]
- 0:-50.425391931201666
- 1:66.10187898171974
277: [-50.4254009428268, 66.10161145171693]
- 0:-50.4254009428268
- 1:66.10161145171693
278: [-50.424736558490636, 66.1016069900456]
- 0:-50.424736558490636
- 1:66.1016069900456
279: [-50.424740993151715, 66.10133948448843]
- 0:-50.424740993151715
- 1:66.10133948448843
280: [-50.42408102988481, 66.10133494380847]
- 0:-50.42408102988481
- 1:66.10133494380847
281: [-50.42406765165261, 66.10187450701558]
- 0:-50.42406765165261
- 1:66.10187450701558
282: [-50.42273878670157, 66.10187004226692]
- 0:-50.42273878670157
- 1:66.10187004226692
283: [-50.4227521906742, 66.10133047935796]
- 0:-50.4227521906742
- 1:66.10133047935796
284: [-50.42341656994088, 66.10133495154395]
- 0:-50.42341656994088
- 1:66.10133495154395
285: [-50.42342109852496, 66.10106297001464]
- 0:-50.42342109852496
- 1:66.10106297001464
286: [-50.42275664445051, 66.10106297427501]
- 0:-50.42275664445051
- 1:66.10106297427501
287: [-50.42276544900382, 66.10079098283094]
- 0:-50.42276544900382
- 1:66.10079098283094
288: [-50.42010798413112, 66.10078206360078]
- 0:-50.42010798413112
- 1:66.10078206360078
289: [-50.420116878418945, 66.10051448394294]
- 0:-50.420116878418945
- 1:66.10051448394294
290: [-50.41945237061787, 66.10051005954627]
- 0:-50.41945237061787
- 1:66.10051005954627
291: [-50.41945700182669, 66.10024249041967]
- 0:-50.41945700182669
- 1:66.10024249041967
292: [-50.41879708314541, 66.10023803869846]
- 0:-50.41879708314541
- 1:66.10023803869846
293: [-50.41880140697239, 66.09997048364193]
- 0:-50.41880140697239
- 1:66.09997048364193
294: [-50.418136911129466, 66.09996605232841]
- 0:-50.418136911129466
- 1:66.09996605232841
295: [-50.41814599259072, 66.09969852528927]
- 0:-50.41814599259072
- 1:66.09969852528927
296: [-50.417481566145675, 66.0996985016618]
- 0:-50.417481566145675
- 1:66.0996985016618
297: [-50.417512770057144, 66.09835190065546]
- 0:-50.417512770057144
- 1:66.09835190065546
298: [-50.41817714178145, 66.09835180721977]
- 0:-50.41817714178145
- 1:66.09835180721977
299: [-50.41818597043359, 66.0978167530356]
- 0:-50.41818597043359
- 1:66.0978167530356
300: [-50.41752610820432, 66.09781229496654]
- 0:-50.41752610820432
- 1:66.09781229496654
301: [-50.417530612976414, 66.09754479411677]
- 0:-50.417530612976414
- 1:66.09754479411677
302: [-50.41686631952749, 66.0975402911974]
- 0:-50.41686631952749
- 1:66.0975402911974
303: [-50.41688403607254, 66.09673325268997]
- 0:-50.41688403607254
- 1:66.09673325268997
304: [-50.41621967910598, 66.09673322274793]
- 0:-50.41621967910598
- 1:66.09673322274793
305: [-50.41622854787131, 66.09646123683163]
- 0:-50.41622854787131
- 1:66.09646123683163
306: [-50.41556419677882, 66.09646120343805]
- 0:-50.41556419677882
- 1:66.09646120343805
307: [-50.41556863501798, 66.09618917642719]
- 0:-50.41556863501798
- 1:66.09618917642719
308: [-50.414908726749445, 66.09618918105515]
- 0:-50.414908726749445
- 1:66.09618918105515
309: [-50.41491317145219, 66.09591715439981]
- 0:-50.41491317145219
- 1:66.09591715439981
310: [-50.41624182913808, 66.09592611177705]
- 0:-50.41624182913808
- 1:66.09592611177705
311: [-50.41623304281628, 66.09619362083008]
- 0:-50.41623304281628
- 1:66.09619362083008
312: [-50.417561793803394, 66.09619808796087]
- 0:-50.417561793803394
- 1:66.09619808796087
313: [-50.41755287463352, 66.0964656626845]
- 0:-50.41755287463352
- 1:66.0964656626845
314: [-50.41821728749973, 66.09647009657081]
- 0:-50.41821728749973
- 1:66.09647009657081
315: [-50.418195133615455, 66.09754475197587]
- 0:-50.418195133615455
- 1:66.09754475197587
316: [-50.41885498900443, 66.09754920646873]
- 0:-50.41885498900443
- 1:66.09754920646873
317: [-50.41886389558168, 66.09728163042294]
- 0:-50.41886389558168
- 1:66.09728163042294
318: [-50.41952826316705, 66.0972816463673]
- 0:-50.41952826316705
- 1:66.0972816463673
319: [-50.419546048304404, 66.09647454266275]
- 0:-50.419546048304404
- 1:66.09647454266275
320: [-50.420870392718285, 66.09647905004273]
- 0:-50.420870392718285
- 1:66.09647905004273
321: [-50.420879280017324, 66.09621147488758]
- 0:-50.420879280017324
- 1:66.09621147488758
322: [-50.4222037552253, 66.09621590282893]
- 0:-50.4222037552253
- 1:66.09621590282893
323: [-50.42221256560323, 66.09594391671995]
- 0:-50.42221256560323
- 1:66.09594391671995
324: [-50.42553019308136, 66.09595734808315]
- 0:-50.42553019308136
- 1:66.09595734808315
325: [-50.425534766993366, 66.09568978327086]
- 0:-50.425534766993366
- 1:66.09568978327086
326: [-50.42685906403759, 66.09569422689955]
- 0:-50.42685906403759
- 1:66.09569422689955
327: [-50.426867893869385, 66.09542665183223]
- 0:-50.426867893869385
- 1:66.09542665183223
328: [-50.4242147408894, 66.09541777492791]
- 0:-50.4242147408894
- 1:66.09541777492791
329: [-50.42421926311235, 66.09514579975858]
- 0:-50.42421926311235
- 1:66.09514579975858
330: [-50.42223044189403, 66.09513686800192]
- 0:-50.42223044189403
- 1:66.09513686800192
331: [-50.42223504767391, 66.09486930436876]
- 0:-50.42223504767391
- 1:66.09486930436876
332: [-50.42157050788705, 66.09486484061381]
- 0:-50.42157050788705
- 1:66.09486484061381
333: [-50.42156612789961, 66.09513686672794]
- 0:-50.42156612789961
- 1:66.09513686672794
334: [-50.41957730081472, 66.09512789271004]
- 0:-50.41957730081472
- 1:66.09512789271004
335: [-50.41958178653209, 66.09486039454634]
- 0:-50.41958178653209
- 1:66.09486039454634
336: [-50.418252934556335, 66.09485589780255]
- 0:-50.418252934556335
- 1:66.09485589780255
337: [-50.4182486042287, 66.0951234473391]
- 0:-50.4182486042287
- 1:66.0951234473391
338: [-50.41758414132894, 66.09512349009167]
- 0:-50.41758414132894
- 1:66.09512349009167
339: [-50.417593142447444, 66.09485144053781]
- 0:-50.417593142447444
- 1:66.09485144053781
340: [-50.41626414199629, 66.09484698784192]
- 0:-50.41626414199629
- 1:66.09484698784192
341: [-50.41625971021744, 66.09511901345563]
- 0:-50.41625971021744
- 1:66.09511901345563
342: [-50.41426662536324, 66.09511008161134]
- 0:-50.41426662536324
- 1:66.09511008161134
343: [-50.41427551333624, 66.0948380977062]
- 0:-50.41427551333624
- 1:66.0948380977062
344: [-50.41361105355349, 66.09483811934878]
- 0:-50.41361105355349
- 1:66.09483811934878
345: [-50.41361551124964, 66.09456609428153]
- 0:-50.41361551124964
- 1:66.09456609428153
346: [-50.41427988186878, 66.09457054882968]
- 0:-50.41427988186878
- 1:66.09457054882968
347: [-50.414293283835406, 66.09403095199846]
- 0:-50.414293283835406
- 1:66.09403095199846
348: [-50.41495780931762, 66.09403545436007]
- 0:-50.41495780931762
- 1:66.09403545436007
349: [-50.414971052788836, 66.09349592374792]
- 0:-50.414971052788836
- 1:66.09349592374792
350: [-50.413642258042735, 66.09349137831917]
- 0:-50.413642258042735
- 1:66.09349137831917
351: [-50.41363773758819, 66.09375899119343]
- 0:-50.41363773758819
- 1:66.09375899119343
352: [-50.410980161655715, 66.0937500910838]
- 0:-50.410980161655715
- 1:66.0937500910838
353: [-50.4109935445673, 66.0932149729619]
- 0:-50.4109935445673
- 1:66.0932149729619
354: [-50.41032920373231, 66.09321050113316]
- 0:-50.41032920373231
- 1:66.09321050113316
355: [-50.41033804698888, 66.09294299600788]
- 0:-50.41033804698888
- 1:66.09294299600788
356: [-50.41564450462399, 66.0929607861373]
- 0:-50.41564450462399
- 1:66.0929607861373
357: [-50.415639835139515, 66.09322834712381]
- 0:-50.415639835139515
- 1:66.09322834712381
358: [-50.41762882745941, 66.09323725260188]
- 0:-50.41762882745941
- 1:66.09323725260188
359: [-50.4176510066187, 66.09216261593473]
- 0:-50.4176510066187
- 1:66.09216261593473
360: [-50.41566209099476, 66.0921537112837]
- 0:-50.41566209099476
- 1:66.0921537112837
361: [-50.41565773514897, 66.09242125769627]
- 0:-50.41565773514897
- 1:66.09242125769627
362: [-50.411015930602005, 66.09240339892538]
- 0:-50.411015930602005
- 1:66.09240339892538
363: [-50.41102033100203, 66.0921358529472]
- 0:-50.41102033100203
- 1:66.0921358529472
364: [-50.413673484787054, 66.0921447612411]
- 0:-50.413673484787054
- 1:66.0921447612411
365: [-50.413677859743004, 66.09187721530195]
- 0:-50.413677859743004
- 1:66.09187721530195
366: [-50.41434241705148, 66.09187724440655]
- 0:-50.41434241705148
- 1:66.09187724440655
367: [-50.41434678565149, 66.09160969869409]
- 0:-50.41434678565149
- 1:66.09160969869409
368: [-50.41169809869895, 66.091600729912]
- 0:-50.41169809869895
- 1:66.091600729912
369: [-50.411689122857254, 66.0918682989788]
- 0:-50.411689122857254
- 1:66.0918682989788
370: [-50.40770713891808, 66.09185492245051]
- 0:-50.40770713891808
- 1:66.09185492245051
371: [-50.407702706652756, 66.09212246783056]
- 0:-50.407702706652756
- 1:66.09212246783056
372: [-50.407038305481336, 66.09212245485278]
- 0:-50.407038305481336
- 1:66.09212245485278
373: [-50.40703386686019, 66.09239000045925]
- 0:-50.40703386686019
- 1:66.09239000045925
374: [-50.40636939710161, 66.0923855728865]
- 0:-50.40636939710161
- 1:66.0923855728865
375: [-50.40637384210105, 66.0921180273445]
- 0:-50.40637384210105
- 1:66.0921180273445
376: [-50.403725125177296, 66.09210912251766]
- 0:-50.403725125177296
- 1:66.09210912251766
377: [-50.403729680003366, 66.09183710132413]
- 0:-50.403729680003366
- 1:66.09183710132413
378: [-50.39974770537841, 66.09182370434083]
- 0:-50.39974770537841
- 1:66.09182370434083
379: [-50.399756650347115, 66.09155620202763]
- 0:-50.399756650347115
- 1:66.09155620202763
380: [-50.396438947948006, 66.09154281659035]
- 0:-50.396438947948006
- 1:66.09154281659035
381: [-50.39644357400553, 66.09127079668338]
- 0:-50.39644357400553
- 1:66.09127079668338
382: [-50.39511902175108, 66.09126634396172]
- 0:-50.39511902175108
- 1:66.09126634396172
383: [-50.39512357498481, 66.09099880063444]
- 0:-50.39512357498481
- 1:66.09099880063444
384: [-50.39379934709126, 66.09099432032698]
- 0:-50.39379934709126
- 1:66.09099432032698
385: [-50.39380368537791, 66.09072231491737]
- 0:-50.39380368537791
- 1:66.09072231491737
386: [-50.39314390901585, 66.09072232193682]
- 0:-50.39314390901585
- 1:66.09072232193682
387: [-50.39314825376404, 66.09045031688238]
- 0:-50.39314825376404
- 1:66.09045031688238
388: [-50.393812687499484, 66.09045481453235]
- 0:-50.393812687499484
- 1:66.09045481453235
389: [-50.39381702578859, 66.09018280970918]
- 0:-50.39381702578859
- 1:66.09018280970918
390: [-50.3931528260995, 66.09018277460811]
- 0:-50.3931528260995
- 1:66.09018277460811
391: [-50.39316166643711, 66.08991522335268]
- 0:-50.39316166643711
- 1:66.08991522335268
392: [-50.39382600532196, 66.089915193185]
- 0:-50.39382600532196
- 1:66.089915193185
393: [-50.39383499167877, 66.08938017513185]
- 0:-50.39383499167877
- 1:66.08938017513185
394: [-50.39449931720121, 66.08938014130814]
- 0:-50.39449931720121
- 1:66.08938014130814
395: [-50.39450814467168, 66.08911259074375]
- 0:-50.39450814467168
- 1:66.08911259074375
396: [-50.39516819535208, 66.08911256263768]
- 0:-50.39516819535208
- 1:66.08911256263768
397: [-50.39517718448925, 66.08884506380342]
- 0:-50.39517718448925
- 1:66.08884506380342
398: [-50.3965014536032, 66.08884946369008]
- 0:-50.3965014536032
- 1:66.08884946369008
399: [-50.39651474239108, 66.0883099619443]
- 0:-50.39651474239108
- 1:66.0883099619443
400: [-50.397843647917995, 66.08831885202743]
- 0:-50.397843647917995
- 1:66.08831885202743
401: [-50.397857056449475, 66.08777928594847]
- 0:-50.397857056449475
- 1:66.08777928594847
402: [-50.39851692696303, 66.08777930514326]
- 0:-50.39851692696303
- 1:66.08777930514326
403: [-50.398525884048524, 66.08751180731419]
- 0:-50.398525884048524
- 1:66.08751180731419
404: [-50.39985025230812, 66.08751622281001]
- 0:-50.39985025230812
- 1:66.08751622281001
405: [-50.39985919661303, 66.0872487250947]
- 0:-50.39985919661303
- 1:66.0872487250947
406: [-50.400519113372596, 66.08725314453727]
- 0:-50.400519113372596
- 1:66.08725314453727
407: [-50.40052796812493, 66.08698111940643]
- 0:-50.40052796812493
- 1:66.08698111940643
408: [-50.4011880461129, 66.08698558679122]
- 0:-50.4011880461129
- 1:66.08698558679122
409: [-50.40119689435768, 66.08671356186744]
- 0:-50.40119689435768
- 1:66.08671356186744
410: [-50.40186140101471, 66.08671806762415]
- 0:-50.40186140101471
- 1:66.08671806762415
411: [-50.40186572254324, 66.08645047704336]
- 0:-50.40186572254324
- 1:66.08645047704336
412: [-50.4025303070183, 66.0864505031118]
- 0:-50.4025303070183
- 1:66.0864505031118
413: [-50.402534622191936, 66.08618291275849]
- 0:-50.402534622191936
- 1:66.08618291275849
414: [-50.40319905414562, 66.08618300042444]
- 0:-50.40319905414562
- 1:66.08618300042444
415: [-50.40320353102957, 66.0859154618143]
- 0:-50.40320353102957
- 1:66.0859154618143
416: [-50.40386784907959, 66.0859199052508]
- 0:-50.40386784907959
- 1:66.0859199052508
417: [-50.403872403990974, 66.08564789078758]
- 0:-50.403872403990974
- 1:66.08564789078758
418: [-50.40453671515741, 66.08565233062305]
- 0:-50.40453671515741
- 1:66.08565233062305
419: [-50.40455016304155, 66.08511282037276]
- 0:-50.40455016304155
- 1:66.08511282037276
420: [-50.40521446094716, 66.0851172565191]
- 0:-50.40521446094716
- 1:66.0851172565191
421: [-50.405228041400605, 66.08457768208034]
- 0:-50.405228041400605
- 1:66.08457768208034
422: [-50.40588791343916, 66.08458218944277]
- 0:-50.40588791343916
- 1:66.08458218944277
423: [-50.40589671601179, 66.08431016654548]
- 0:-50.40589671601179
- 1:66.08431016654548
424: [-50.40655672672948, 66.08431460513235]
- 0:-50.40655672672948
- 1:66.08431460513235
425: [-50.40657013594159, 66.08377509733543]
- 0:-50.40657013594159
- 1:66.08377509733543
426: [-50.40723440044631, 66.08377952252602]
- 0:-50.40723440044631
- 1:66.08377952252602
427: [-50.407238923029695, 66.08350751008842]
- 0:-50.407238923029695
- 1:66.08350751008842
428: [-50.40790334870724, 66.08351198318731]
- 0:-50.40790334870724
- 1:66.08351198318731
429: [-50.40792130999269, 66.08270487604189]
- 0:-50.40792130999269
- 1:66.08270487604189
430: [-50.40858563161626, 66.08270481784783]
- 0:-50.40858563161626
- 1:66.08270481784783
431: [-50.408603428099546, 66.08189777830553]
- 0:-50.408603428099546
- 1:66.08189777830553
432: [-50.40926781439641, 66.08190224389381]
- 0:-50.40926781439641
- 1:66.08190224389381
433: [-50.40928131740092, 66.08136267552428]
- 0:-50.40928131740092
- 1:66.08136267552428
434: [-50.40994111032851, 66.08136716096728]
- 0:-50.40994111032851
- 1:66.08136716096728
435: [-50.40995018715434, 66.08109512736807]
- 0:-50.40995018715434
- 1:66.08109512736807
436: [-50.41060997324777, 66.08109960923392]
- 0:-50.41060997324777
- 1:66.08109960923392
437: [-50.410618960248755, 66.08083205183989]
- 0:-50.410618960248755
- 1:66.08083205183989
438: [-50.41127882282489, 66.08083205412963]
- 0:-50.41127882282489
- 1:66.08083205412963
439: [-50.41128790757478, 66.08055113415648]
- 0:-50.41128790757478
- 1:66.08055113415648
440: [-50.41135922640455, 66.08054225064308]
- 0:-50.41135922640455
- 1:66.08054225064308
441: [-50.4114974917336, 66.08052885268383]
- 0:-50.4114974917336
- 1:66.08052885268383
442: [-50.411635609688645, 66.08050651628284]
- 0:-50.411635609688645
- 1:66.08050651628284
443: [-50.41178290986032, 66.08048424921002]
- 0:-50.41178290986032
- 1:66.08048424921002
444: [-50.41193432887885, 66.08045303376]
- 0:-50.41193432887885
- 1:66.08045303376
445: [-50.41209049550978, 66.0804218460056]
- 0:-50.41209049550978
- 1:66.0804218460056
446: [-50.412255591153944, 66.08038614850474]
- 0:-50.412255591153944
- 1:66.08038614850474
447: [-50.41263909056354, 66.0802969459949]
- 0:-50.41263909056354
- 1:66.0802969459949
448: [-50.413280995103456, 66.08030142928781]
- 0:-50.413280995103456
- 1:66.08030142928781
449: [-50.413285552531725, 66.08011409674772]
- 0:-50.413285552531725
- 1:66.08011409674772
450: [-50.41339256609329, 66.08007399272977]
- 0:-50.41339256609329
- 1:66.08007399272977
451: [-50.41349514494376, 66.08003384709527]
- 0:-50.41349514494376
- 1:66.08003384709527
452: [-50.41394996581618, 66.08003391196877]
- 0:-50.41394996581618
- 1:66.08003391196877
453: [-50.41395884291344, 66.0798109058236]
- 0:-50.41395884291344
- 1:66.0798109058236
454: [-50.4141059815185, 66.07973061976689]
- 0:-50.4141059815185
- 1:66.07973061976689
455: [-50.41426209064748, 66.07963705381877]
- 0:-50.41426209064748
- 1:66.07963705381877
456: [-50.41479721793925, 66.07930700343881]
- 0:-50.41479721793925
- 1:66.07930700343881
457: [-50.41501122470515, 66.07917771501491]
- 0:-50.41501122470515
- 1:66.07917771501491
458: [-50.4152385724295, 66.07905284473962]
- 0:-50.4152385724295
- 1:66.07905284473962
459: [-50.4153457636837, 66.07899490049218]
- 0:-50.4153457636837
- 1:66.07899490049218
460: [-50.415452621344855, 66.07894585661143]
- 0:-50.415452621344855
- 1:66.07894585661143
461: [-50.41558193755449, 66.07888788606033]
- 0:-50.41558193755449
- 1:66.07888788606033
462: [-50.41571131616329, 66.0788343261479]
- 0:-50.41571131616329
- 1:66.0788343261479
463: [-50.41584504595053, 66.07878528352528]
- 0:-50.41584504595053
- 1:66.07878528352528
464: [-50.415974426649704, 66.07874072679317]
- 0:-50.415974426649704
- 1:66.07874072679317
465: [-50.41610813605629, 66.07870057063117]
- 0:-50.41610813605629
- 1:66.07870057063117
466: [-50.416241930673536, 66.07866494179567]
- 0:-50.416241930673536
- 1:66.07866494179567
467: [-50.41638005409745, 66.07863371350801]
- 0:-50.41638005409745
- 1:66.07863371350801
468: [-50.416522842456715, 66.07860698874484]
- 0:-50.416522842456715
- 1:66.07860698874484
469: [-50.416728073803675, 66.0785712944383]
- 0:-50.416728073803675
- 1:66.0785712944383
470: [-50.41695534777113, 66.0785400493792]
- 0:-50.41695534777113
- 1:66.0785400493792
471: [-50.41719613219247, 66.07851327364354]
- 0:-50.41719613219247
- 1:66.07851327364354
472: [-50.41746370692288, 66.0784909746076]
- 0:-50.41746370692288
- 1:66.0784909746076
473: [-50.41770884219746, 66.07846871523685]
- 0:-50.41770884219746
- 1:66.07846871523685
474: [-50.41798992701613, 66.07845088475041]
- 0:-50.41798992701613
- 1:66.07845088475041
475: [-50.41915819874298, 66.0783795166355]
- 0:-50.41915819874298
- 1:66.0783795166355
476: [-50.41929636621993, 66.07837058603633]
- 0:-50.41929636621993
- 1:66.07837058603633
477: [-50.41929185256285, 66.07844198863309]
- 0:-50.41929185256285
- 1:66.07844198863309
478: [-50.42525813918517, 66.07846424546835]
- 0:-50.42525813918517
- 1:66.07846424546835
479: [-50.425267245393286, 66.07825022911251]
- 0:-50.425267245393286
- 1:66.07825022911251
480: [-50.42558387637681, 66.07824129846404]
- 0:-50.42558387637681
- 1:66.07824129846404
481: [-50.42588693033599, 66.07822348745988]
- 0:-50.42588693033599
- 1:66.07822348745988
482: [-50.42637287821687, 66.07819671895555]
- 0:-50.42637287821687
- 1:66.07819671895555
483: [-50.42725594932629, 66.07820115074882]
- 0:-50.42725594932629
- 1:66.07820115074882
484: [-50.42725595049137, 66.07813429945996]
- 0:-50.42725595049137
- 1:66.07813429945996
485: [-50.42782664086942, 66.07808968711748]
- 0:-50.42782664086942
- 1:66.07808968711748
486: [-50.42845978890688, 66.07803621360394]
- 0:-50.42845978890688
- 1:66.07803621360394
487: [-50.42907072158581, 66.07797823795875]
- 0:-50.42907072158581
- 1:66.07797823795875
488: [-50.43055128564803, 66.07783998539102]
- 0:-50.43055128564803
- 1:66.07783998539102
489: [-50.430916780514224, 66.0778042990887]
- 0:-50.430916780514224
- 1:66.0778042990887
490: [-50.43132259338276, 66.07776866738008]
- 0:-50.43132259338276
- 1:66.07776866738008
491: [-50.43208060285062, 66.07770622542733]
- 0:-50.43208060285062
- 1:66.07770622542733
492: [-50.432432967925955, 66.07767946698348]
- 0:-50.432432967925955
- 1:66.07767946698348
493: [-50.43277180520565, 66.07765712622353]
- 0:-50.43277180520565
- 1:66.07765712622353
494: [-50.43384193327619, 66.07759027568122]
- 0:-50.43384193327619
- 1:66.07759027568122
495: [-50.4349389261201, 66.07752341337518]
- 0:-50.4349389261201
- 1:66.07752341337518
496: [-50.42820560566351, 66.06906896626616]
- 0:-50.42820560566351
- 1:66.06906896626616
497: [-50.428236910887364, 66.06911796542916]
- 0:-50.428236910887364
- 1:66.06911796542916
498: [-50.42826807084299, 66.06916702981609]
- 0:-50.42826807084299
- 1:66.06916702981609
499: [-50.428290453185504, 66.06922053951754]
- 0:-50.428290453185504
- 1:66.06922053951754
500: [-50.4283083224857, 66.06927848405452]
- 0:-50.4283083224857
- 1:66.06927848405452
501: [-50.42831720386459, 66.06933652854164]
- 0:-50.42831720386459
- 1:66.06933652854164
502: [-50.42832598214552, 66.06939893216345]
- 0:-50.42832598214552
- 1:66.06939893216345
503: [-50.42832598267712, 66.06946578111902]
- 0:-50.42832598267712
- 1:66.06946578111902
504: [-50.42832615121954, 66.06953268157078]
- 0:-50.42832615121954
- 1:66.06953268157078
505: [-50.428317309062535, 66.0695995652791]
- 0:-50.428317309062535
- 1:66.0695995652791
506: [-50.42829931075821, 66.0696664974634]
- 0:-50.42829931075821
- 1:66.0696664974634
507: [-50.42828145775698, 66.06973336444098]
- 0:-50.42828145775698
- 1:66.06973336444098
508: [-50.42825467443175, 66.06979573883878]
- 0:-50.42825467443175
- 1:66.06979573883878
509: [-50.428227978465856, 66.0698626405537]
- 0:-50.428227978465856
- 1:66.0698626405537
510: [-50.42875420658671, 66.06986263020958]
- 0:-50.42875420658671
- 1:66.06986263020958
511: [-50.428749719252835, 66.07000087995593]
- 0:-50.428749719252835
- 1:66.07000087995593
512: [-50.428763126693326, 66.07017029842356]
- 0:-50.428763126693326
- 1:66.07017029842356
513: [-50.428758617187945, 66.07040217361947]
- 0:-50.428758617187945
- 1:66.07040217361947
514: [-50.42809418359485, 66.07039771059992]
- 0:-50.42809418359485
- 1:66.07039771059992
515: [-50.42808971579797, 66.07066977583582]
- 0:-50.42808971579797
- 1:66.07066977583582
516: [-50.42874965809885, 66.07066978732101]
- 0:-50.42874965809885
- 1:66.07066978732101
517: [-50.4287452545797, 66.07093726036418]
- 0:-50.4287452545797
- 1:66.07093726036418
518: [-50.4287629634451, 66.07093730757416]
- 0:-50.4287629634451
- 1:66.07093730757416
519: [-50.42872296781598, 66.07103097961021]
- 0:-50.42872296781598
- 1:66.07103097961021
520: [-50.42868734119848, 66.07109338916754]
- 0:-50.42868734119848
- 1:66.07109338916754
521: [-50.42867838653226, 66.07111567272544]
- 0:-50.42867838653226
- 1:66.07111567272544
522: [-50.42862480930238, 66.07119146262391]
- 0:-50.42862480930238
- 1:66.07119146262391
523: [-50.42856238855899, 66.07126728725223]
- 0:-50.42856238855899
- 1:66.07126728725223
524: [-50.42849553454123, 66.07134307088334]
- 0:-50.42849553454123
- 1:66.07134307088334
525: [-50.42842418231508, 66.07141440287432]
- 0:-50.42842418231508
- 1:66.07141440287432
526: [-50.42834390591839, 66.07149024541735]
- 0:-50.42834390591839
- 1:66.07149024541735
527: [-50.42825476313524, 66.07156600593765]
- 0:-50.42825476313524
- 1:66.07156600593765
528: [-50.428160976627645, 66.07163737999772]
- 0:-50.428160976627645
- 1:66.07163737999772
529: [-50.428063070048125, 66.07170869925935]
- 0:-50.428063070048125
- 1:66.07170869925935
530: [-50.4280720180586, 66.0714768639064]
- 0:-50.4280720180586
- 1:66.0714768639064
531: [-50.427407558352364, 66.07147239706475]
- 0:-50.427407558352364
- 1:66.07147239706475
532: [-50.42741195194861, 66.07120480686572]
- 0:-50.42741195194861
- 1:66.07120480686572
533: [-50.42675193113673, 66.0712003775991]
- 0:-50.42675193113673
- 1:66.0712003775991
534: [-50.426743098242305, 66.07146792668456]
- 0:-50.426743098242305
- 1:66.07146792668456
535: [-50.42608313522528, 66.07146790447452]
- 0:-50.42608313522528
- 1:66.07146790447452
536: [-50.42608770953654, 66.07120036588083]
- 0:-50.42608770953654
- 1:66.07120036588083
537: [-50.42277461676561, 66.07118701547914]
- 0:-50.42277461676561
- 1:66.07118701547914
538: [-50.42277446135177, 66.07112011465047]
- 0:-50.42277446135177
- 1:66.07112011465047
539: [-50.422462324337545, 66.07113796604027]
- 0:-50.422462324337545
- 1:66.07113796604027
540: [-50.42213699207521, 66.07115133386803]
- 0:-50.42213699207521
- 1:66.07115133386803
541: [-50.42178905842505, 66.07116469036441]
- 0:-50.42178905842505
- 1:66.07116469036441
542: [-50.42142351930041, 66.07117363849774]
- 0:-50.42142351930041
- 1:66.07117363849774
543: [-50.4210487367175, 66.07117810615232]
- 0:-50.4210487367175
- 1:66.07117810615232
544: [-50.420629692096156, 66.07118251012784]
- 0:-50.420629692096156
- 1:66.07118251012784
545: [-50.41945700110136, 66.07118701478899]
- 0:-50.41945700110136
- 1:66.07118701478899
546: [-50.41945246358591, 66.07144119044086]
- 0:-50.41945246358591
- 1:66.07144119044086
547: [-50.42011676064522, 66.07144564816119]
- 0:-50.42011676064522
- 1:66.07144564816119
548: [-50.42010786409692, 66.07171319667707]
- 0:-50.42010786409692
- 1:66.07171319667707
549: [-50.418119198752876, 66.07170868898793]
- 0:-50.418119198752876
- 1:66.07170868898793
550: [-50.418114716143315, 66.07197627889188]
- 0:-50.418114716143315
- 1:66.07197627889188
551: [-50.41679027602605, 66.07197180418814]
- 0:-50.41679027602605
- 1:66.07197180418814
552: [-50.41678134759575, 66.07223935285053]
- 0:-50.41678134759575
- 1:66.07223935285053
553: [-50.41545706074838, 66.07223491540954]
- 0:-50.41545706074838
- 1:66.07223491540954
554: [-50.41545261558595, 66.07250691628845]
- 0:-50.41545261558595
- 1:66.07250691628845
555: [-50.41279951436661, 66.07249354678623]
- 0:-50.41279951436661
- 1:66.07249354678623
556: [-50.41281295199941, 66.07195399802193]
- 0:-50.41281295199941
- 1:66.07195399802193
557: [-50.40883538195297, 66.07194060608926]
- 0:-50.40883538195297
- 1:66.07194060608926
558: [-50.4088218673644, 66.07248015395872]
- 0:-50.4088218673644
- 1:66.07248015395872
559: [-50.412135103659494, 66.07249352579058]
- 0:-50.412135103659494
- 1:66.07249352579058
560: [-50.41213070927477, 66.07276105079319]
- 0:-50.41213070927477
- 1:66.07276105079319
561: [-50.40086250480809, 66.07271648907216]
- 0:-50.40086250480809
- 1:66.07271648907216
562: [-50.400867007258036, 66.07244896513136]
- 0:-50.400867007258036
- 1:66.07244896513136
563: [-50.400206959402425, 66.07244451192867]
- 0:-50.400206959402425
- 1:66.07244451192867
564: [-50.40021130022701, 66.07217693682314]
- 0:-50.40021130022701
- 1:66.07217693682314
565: [-50.399551571750685, 66.07217246652128]
- 0:-50.399551571750685
- 1:66.07217246652128
566: [-50.39955591892598, 66.0719048917667]
- 0:-50.39955591892598
- 1:66.0719048917667
567: [-50.39823166400428, 66.07190050495439]
- 0:-50.39823166400428
- 1:66.07190050495439
568: [-50.39822270294426, 66.07216798600338]
- 0:-50.39822270294426
- 1:66.07216798600338
569: [-50.39689826532897, 66.07216353344057]
- 0:-50.39689826532897
- 1:66.07216353344057
570: [-50.396893892726304, 66.07243110823626]
- 0:-50.396893892726304
- 1:66.07243110823626
571: [-50.39490503789052, 66.072426645424]
- 0:-50.39490503789052
- 1:66.072426645424
572: [-50.39490968340422, 66.07215464651605]
- 0:-50.39490968340422
- 1:66.07215464651605
573: [-50.395573993668336, 66.07215911833869]
- 0:-50.395573993668336
- 1:66.07215911833869
574: [-50.39557837899443, 66.07189154395343]
- 0:-50.39557837899443
- 1:66.07189154395343
575: [-50.394914075102534, 66.071887072195]
- 0:-50.394914075102534
- 1:66.071887072195
576: [-50.39492289996169, 66.07161954034191]
- 0:-50.39492289996169
- 1:66.07161954034191
577: [-50.39359865079105, 66.07161510442386]
- 0:-50.39359865079105
- 1:66.07161510442386
578: [-50.393589813225034, 66.07188263610664]
- 0:-50.393589813225034
- 1:66.07188263610664
579: [-50.39292977325902, 66.07187814448535]
- 0:-50.39292977325902
- 1:66.07187814448535
580: [-50.39293418401124, 66.07161057063887]
- 0:-50.39293418401124
- 1:66.07161057063887
581: [-50.392269739309256, 66.07160615002162]
- 0:-50.392269739309256
- 1:66.07160615002162
582: [-50.392278589562906, 66.07133861880106]
- 0:-50.392278589562906
- 1:66.07133861880106
583: [-50.39161429631901, 66.07133412955446]
- 0:-50.39161429631901
- 1:66.07133412955446
584: [-50.391623152882595, 66.07106659870823]
- 0:-50.391623152882595
- 1:66.07106659870823
585: [-50.389634490750474, 66.07105769334518]
- 0:-50.389634490750474
- 1:66.07105769334518
586: [-50.389638933298855, 66.07079012067666]
- 0:-50.389638933298855
- 1:66.07079012067666
587: [-50.38699029008175, 66.07077677762528]
- 0:-50.38699029008175
- 1:66.07077677762528
588: [-50.38699475805407, 66.07050920549659]
- 0:-50.38699475805407
- 1:66.07050920549659
589: [-50.38567040277262, 66.07050475089602]
- 0:-50.38567040277262
- 1:66.07050475089602
590: [-50.38566134355408, 66.07077234556368]
- 0:-50.38566134355408
- 1:66.07077234556368
591: [-50.38168396241396, 66.07075890576839]
- 0:-50.38168396241396
- 1:66.07075890576839
592: [-50.381679443568444, 66.07102647768698]
- 0:-50.381679443568444
- 1:66.07102647768698
593: [-50.37969063700433, 66.07101759567583]
- 0:-50.37969063700433
- 1:66.07101759567583
594: [-50.37969960799652, 66.07075006666716]
- 0:-50.37969960799652
- 1:66.07075006666716
595: [-50.37638202381752, 66.0707366738332]
- 0:-50.37638202381752
- 1:66.0707366738332
596: [-50.37637759964184, 66.07100418008741]
- 0:-50.37637759964184
- 1:66.07100418008741
597: [-50.377701883116835, 66.07101309256517]
- 0:-50.377701883116835
- 1:66.07101309256517
598: [-50.37769732614097, 66.07128066439705]
- 0:-50.37769732614097
- 1:66.07128066439705
599: [-50.378357341022195, 66.07128511981774]
- 0:-50.378357341022195
- 1:66.07128511981774
600: [-50.378344119995816, 66.07182020808537]
- 0:-50.378344119995816
- 1:66.07182020808537
601: [-50.37768400381716, 66.07182022829828]
- 0:-50.37768400381716
- 1:66.07182022829828
602: [-50.37767501356181, 66.07208775820285]
- 0:-50.37767501356181
- 1:66.07208775820285
603: [-50.37635073573548, 66.0720832557398]
- 0:-50.37635073573548
- 1:66.0720832557398
604: [-50.37636425170088, 66.07154374310423]
- 0:-50.37636425170088
- 1:66.07154374310423
605: [-50.3737110170042, 66.07153478397917]
- 0:-50.3737110170042
- 1:66.07153478397917
606: [-50.37373766992635, 66.07045572545599]
- 0:-50.37373766992635
- 1:66.07045572545599
607: [-50.37440224685671, 66.07046017945359]
- 0:-50.37440224685671
- 1:66.07046017945359
608: [-50.37441104434902, 66.07018818956907]
- 0:-50.37441104434902
- 1:66.07018818956907
609: [-50.3737466980742, 66.07018819780238]
- 0:-50.3737466980742
- 1:66.07018819780238
610: [-50.37376437874569, 66.0693810821784]
- 0:-50.37376437874569
- 1:66.0693810821784
611: [-50.3744290192343, 66.0693810601349]
- 0:-50.3744290192343
- 1:66.0693810601349
612: [-50.374433462471295, 66.06911355580124]
- 0:-50.374433462471295
- 1:66.06911355580124
613: [-50.375097839002244, 66.0691179543385]
- 0:-50.375097839002244
- 1:66.0691179543385
614: [-50.37510662982337, 66.06884596583377]
- 0:-50.37510662982337
- 1:66.06884596583377
615: [-50.3764311262575, 66.06885487753794]
- 0:-50.3764311262575
- 1:66.06885487753794
616: [-50.376435639269175, 66.06858289786682]
- 0:-50.376435639269175
- 1:66.06858289786682
617: [-50.37709985613767, 66.06858735081978]
- 0:-50.37709985613767
- 1:66.06858735081978
618: [-50.37710436269493, 66.06831537138041]
- 0:-50.37710436269493
- 1:66.06831537138041
619: [-50.37644447375059, 66.06831532033858]
- 0:-50.37644447375059
- 1:66.06831532033858
620: [-50.376448986760515, 66.06804334125654]
- 0:-50.376448986760515
- 1:66.06804334125654
621: [-50.37578895814031, 66.06804335194235]
- 0:-50.37578895814031
- 1:66.06804335194235
622: [-50.37577994943615, 66.06831087754809]
- 0:-50.37577994943615
- 1:66.06831087754809
623: [-50.37379117647395, 66.06830196781708]
- 0:-50.37379117647395
- 1:66.06830196781708
624: [-50.373800204258046, 66.06803444247215]
- 0:-50.373800204258046
- 1:66.06803444247215
625: [-50.37446014531998, 66.06803891802254]
- 0:-50.37446014531998
- 1:66.06803891802254
626: [-50.37446908796138, 66.06776686561973]
- 0:-50.37446908796138
- 1:66.06776686561973
627: [-50.37248035056723, 66.0677579352237]
- 0:-50.37248035056723
- 1:66.0677579352237
628: [-50.37247596671307, 66.06802996518378]
- 0:-50.37247596671307
- 1:66.06802996518378
629: [-50.371147148971225, 66.06802549596792]
- 0:-50.371147148971225
- 1:66.06802549596792
630: [-50.37114252845512, 66.06829306398978]
- 0:-50.37114252845512
- 1:66.06829306398978
631: [-50.37047816854845, 66.06828864450942]
- 0:-50.37047816854845
- 1:66.06828864450942
632: [-50.37048706021499, 66.06802106804278]
- 0:-50.37048706021499
- 1:66.06802106804278
633: [-50.369822761898504, 66.06802105566342]
- 0:-50.369822761898504
- 1:66.06802105566342
634: [-50.36982717161897, 66.06774902595222]
- 0:-50.36982717161897
- 1:66.06774902595222
635: [-50.36916714391469, 66.06774900162898]
- 0:-50.36916714391469
- 1:66.06774900162898
636: [-50.36917172798813, 66.06747702383144]
- 0:-50.36917172798813
- 1:66.06747702383144
637: [-50.36851170611613, 66.06747699607526]
- 0:-50.36851170611613
- 1:66.06747699607526
638: [-50.36851615111975, 66.06720508378599]
- 0:-50.36851615111975
- 1:66.06720508378599
639: [-50.36918048672958, 66.06720951355288]
- 0:-50.36918048672958
- 1:66.06720951355288
640: [-50.36919397497299, 66.06666996149333]
- 0:-50.36919397497299
- 1:66.06666996149333
641: [-50.36720515739022, 66.06666101260787]
- 0:-50.36720515739022
- 1:66.06666101260787
642: [-50.367214080579956, 66.06639343830253]
- 0:-50.367214080579956
- 1:66.06639343830253
643: [-50.3652253002502, 66.06638457467169]
- 0:-50.3652253002502
- 1:66.06638457467169
644: [-50.365238697361185, 66.06584497370025]
- 0:-50.365238697361185
- 1:66.06584497370025
645: [-50.36457430047582, 66.06584499879962]
- 0:-50.36457430047582
- 1:66.06584499879962
646: [-50.364596513224654, 66.06503789176787]
- 0:-50.364596513224654
- 1:66.06503789176787
647: [-50.362607823095956, 66.06502898698578]
- 0:-50.362607823095956
- 1:66.06502898698578
648: [-50.36261230386162, 66.06475696120305]
- 0:-50.36261230386162
- 1:66.06475696120305
649: [-50.36062796974353, 66.06475254392191]
- 0:-50.36062796974353
- 1:66.06475254392191
650: [-50.36061912877956, 66.06502005049272]
- 0:-50.36061912877956
- 1:66.06502005049272
651: [-50.35995469325068, 66.06501564059441]
- 0:-50.35995469325068
- 1:66.06501564059441
652: [-50.35995033217625, 66.06528760127907]
- 0:-50.35995033217625
- 1:66.06528760127907
653: [-50.35928588977261, 66.0652831877769]
- 0:-50.35928588977261
- 1:66.0652831877769
654: [-50.3592813767088, 66.0655552138337]
- 0:-50.3592813767088
- 1:66.0655552138337
655: [-50.3599413392178, 66.06555517348109]
- 0:-50.3599413392178
- 1:66.06555517348109
656: [-50.35993683260728, 66.06582719989532]
- 0:-50.35993683260728
- 1:66.06582719989532
657: [-50.360596800946354, 66.06582715610953]
- 0:-50.360596800946354
- 1:66.06582715610953
658: [-50.36059239218423, 66.06609470722736]
- 0:-50.36059239218423
- 1:66.06609470722736
659: [-50.36125670737614, 66.06609917903324]
- 0:-50.36125670737614
- 1:66.06609917903324
660: [-50.36124787254405, 66.06636668713134]
- 0:-50.36124787254405
- 1:66.06636668713134
661: [-50.36191219371206, 66.06637115548692]
- 0:-50.36191219371206
- 1:66.06637115548692
662: [-50.36189887795948, 66.06691069173804]
- 0:-50.36189887795948
- 1:66.06691069173804
663: [-50.35991007022628, 66.06690185982582]
- 0:-50.35991007022628
- 1:66.06690185982582
664: [-50.35991457684305, 66.06662983223744]
- 0:-50.35991457684305
- 1:66.06662983223744
665: [-50.356601441821724, 66.06661638849279]
- 0:-50.356601441821724
- 1:66.06661638849279
666: [-50.35661476808149, 66.06608132967061]
- 0:-50.35661476808149
- 1:66.06608132967061
667: [-50.355954882245655, 66.0660768767004]
- 0:-50.355954882245655
- 1:66.0660768767004
668: [-50.35597276643099, 66.06526979343792]
- 0:-50.35597276643099
- 1:66.06526979343792
669: [-50.355312731434715, 66.06526528561835]
- 0:-50.355312731434715
- 1:66.06526528561835
670: [-50.355317191005, 66.06499773586583]
- 0:-50.355317191005
- 1:66.06499773586583
671: [-50.35465275198995, 66.0649932977224]
- 0:-50.35465275198995
- 1:66.0649932977224
672: [-50.35466165017986, 66.06472579192598]
- 0:-50.35466165017986
- 1:66.06472579192598
673: [-50.355326082821925, 66.06473022998146]
- 0:-50.355326082821925
- 1:66.06473022998146
674: [-50.35533063463232, 66.06445820518839]
- 0:-50.35533063463232
- 1:66.06445820518839
675: [-50.353341840120535, 66.06444933473101]
- 0:-50.353341840120535
- 1:66.06444933473101
676: [-50.353350728616746, 66.06418171297508]
- 0:-50.353350728616746
- 1:66.06418171297508
677: [-50.35202637098201, 66.06417726661346]
- 0:-50.35202637098201
- 1:66.06417726661346
678: [-50.35203086230793, 66.06390971832772]
- 0:-50.35203086230793
- 1:66.06390971832772
679: [-50.35137087881475, 66.06390530655975]
- 0:-50.35137087881475
- 1:66.06390530655975
680: [-50.35137537648685, 66.0636377586259]
- 0:-50.35137537648685
- 1:66.0636377586259
681: [-50.34939106291722, 66.06362886923425]
- 0:-50.34939106291722
- 1:66.06362886923425
682: [-50.34938211409926, 66.06389637318951]
- 0:-50.34938211409926
- 1:66.06389637318951
683: [-50.3500420988744, 66.06390079548167]
- 0:-50.3500420988744
- 1:66.06390079548167
684: [-50.3500332459541, 66.06443594354583]
- 0:-50.3500332459541
- 1:66.06443594354583
685: [-50.34936872311478, 66.06443595294004]
- 0:-50.34936872311478
- 1:66.06443595294004
686: [-50.349373333058494, 66.06416392901394]
- 0:-50.349373333058494
- 1:66.06416392901394
687: [-50.34738897726665, 66.06415500753373]
- 0:-50.34738897726665
- 1:66.06415500753373
688: [-50.34739351305227, 66.06388745968917]
- 0:-50.34739351305227
- 1:66.06388745968917
689: [-50.34672909447448, 66.06388297949647]
- 0:-50.34672909447448
- 1:66.06388297949647
690: [-50.34673790090064, 66.0636154243031]
- 0:-50.34673790090064
- 1:66.0636154243031
691: [-50.34607792039382, 66.06361098456635]
- 0:-50.34607792039382
- 1:66.06361098456635
692: [-50.34608246887131, 66.06334343742614]
- 0:-50.34608246887131
- 1:66.06334343742614
693: [-50.344093753666634, 66.06333453666552]
- 0:-50.344093753666634
- 1:66.06333453666552
694: [-50.34410258541205, 66.06306698239061]
- 0:-50.34410258541205
- 1:66.06306698239061
695: [-50.34277828753745, 66.06306255483115]
- 0:-50.34277828753745
- 1:66.06306255483115
696: [-50.34278264864117, 66.06279054654321]
- 0:-50.34278264864117
- 1:66.06279054654321
697: [-50.34145836168196, 66.06278610504314]
- 0:-50.34145836168196
- 1:66.06278610504314
698: [-50.34144496269422, 66.06332561554999]
- 0:-50.34144496269422
- 1:66.06332561554999
699: [-50.34210503429202, 66.06332560419055]
- 0:-50.34210503429202
- 1:66.06332560419055
700: [-50.34210035331423, 66.06359762653052]
- 0:-50.34210035331423
- 1:66.06359762653052
701: [-50.34342484552223, 66.06360211303216]
- 0:-50.34342484552223
- 1:66.06360211303216
702: [-50.343415839482816, 66.06386961620852]
- 0:-50.343415839482816
- 1:66.06386961620852
703: [-50.344744826166725, 66.06387854323536]
- 0:-50.344744826166725
- 1:66.06387854323536
704: [-50.34473568723918, 66.06414611199716]
- 0:-50.34473568723918
- 1:66.06414611199716
705: [-50.34540025914587, 66.06415053772818]
- 0:-50.34540025914587
- 1:66.06415053772818
706: [-50.34539112652336, 66.06441810686603]
- 0:-50.34539112652336
- 1:66.06441810686603
707: [-50.34141828117138, 66.06440028118958]
- 0:-50.34141828117138
- 1:66.06440028118958
708: [-50.341422706305984, 66.06413268202705]
- 0:-50.341422706305984
- 1:66.06413268202705
709: [-50.34009830254846, 66.06412381523367]
- 0:-50.34009830254846
- 1:66.06412381523367
710: [-50.340120648138615, 66.0633211596904]
- 0:-50.340120648138615
- 1:66.0633211596904
711: [-50.33746738493617, 66.06330781622512]
- 0:-50.33746738493617
- 1:66.06330781622512
712: [-50.33748083859776, 66.06276818990524]
- 0:-50.33748083859776
- 1:66.06276818990524
713: [-50.33880961397936, 66.06277712825465]
- 0:-50.33880961397936
- 1:66.06277712825465
714: [-50.33881401382628, 66.06250512063546]
- 0:-50.33881401382628
- 1:66.06250512063546
715: [-50.338154126449254, 66.06250516627702]
- 0:-50.338154126449254
- 1:66.06250516627702
716: [-50.33816742150313, 66.06196560666625]
- 0:-50.33816742150313
- 1:66.06196560666625
717: [-50.34148059529686, 66.06197892621896]
- 0:-50.34148059529686
- 1:66.06197892621896
718: [-50.341485042650085, 66.06171144637032]
- 0:-50.341485042650085
- 1:66.06171144637032
719: [-50.34082510321526, 66.061706979119]
- 0:-50.34082510321526
- 1:66.061706979119
720: [-50.34083866024588, 66.06116740714583]
- 0:-50.34083866024588
- 1:66.06116740714583
721: [-50.34149858691853, 66.06117187424428]
- 0:-50.34149858691853
- 1:66.06117187424428
722: [-50.34150739262921, 66.06089991221033]
- 0:-50.34150739262921
- 1:66.06089991221033
723: [-50.34217172190361, 66.06090430306384]
- 0:-50.34217172190361
- 1:66.06090430306384
724: [-50.34217630843753, 66.06063675919368]
- 0:-50.34217630843753
- 1:66.06063675919368
725: [-50.34284074746376, 66.06063678762624]
- 0:-50.34284074746376
- 1:66.06063678762624
726: [-50.34285400377592, 66.06010164146818]
- 0:-50.34285400377592
- 1:66.06010164146818
727: [-50.34351385235947, 66.06010168734169]
- 0:-50.34351385235947
- 1:66.06010168734169
728: [-50.343536195344974, 66.05929456813342]
- 0:-50.343536195344974
- 1:66.05929456813342
729: [-50.341547448953214, 66.05928564205132]
- 0:-50.341547448953214
- 1:66.05928564205132
730: [-50.34155647321928, 66.0590181440466]
- 0:-50.34155647321928
- 1:66.0590181440466
731: [-50.33956774173262, 66.05900918650494]
- 0:-50.33956774173262
- 1:66.05900918650494
732: [-50.33957661720421, 66.05874163745361]
- 0:-50.33957661720421
- 1:66.05874163745361
733: [-50.33891216962106, 66.05873718150508]
- 0:-50.33891216962106
- 1:66.05873718150508
734: [-50.33892105139921, 66.05846963282875]
- 0:-50.33892105139921
- 1:66.05846963282875
735: [-50.33958108354766, 66.05847416126483]
- 0:-50.33958108354766
- 1:66.05847416126483
736: [-50.33958988592622, 66.05820208571748]
- 0:-50.33958988592622
- 1:66.05820208571748
737: [-50.337601230039354, 66.05819321386937]
- 0:-50.337601230039354
- 1:66.05819321386937
738: [-50.337610124428245, 66.05792566594312]
- 0:-50.337610124428245
- 1:66.05792566594312
739: [-50.33628574620153, 66.05792118439813]
- 0:-50.33628574620153
- 1:66.05792118439813
740: [-50.33627683911183, 66.05818873215394]
- 0:-50.33627683911183
- 1:66.05818873215394
741: [-50.33561697903523, 66.05818423786758]
- 0:-50.33561697903523
- 1:66.05818423786758
742: [-50.33562131566042, 66.05791671103547]
- 0:-50.33562131566042
- 1:66.05791671103547
743: [-50.33363267051812, 66.05790777600595]
- 0:-50.33363267051812
- 1:66.05790777600595
744: [-50.33364160298414, 66.05764022888394]
- 0:-50.33364160298414
- 1:66.05764022888394
745: [-50.33231718210583, 66.05763129491051]
- 0:-50.33231718210583
- 1:66.05763129491051
746: [-50.33232598164278, 66.0573638133569]
- 0:-50.33232598164278
- 1:66.0573638133569
747: [-50.3316617291594, 66.0573593705798]
- 0:-50.3316617291594
- 1:66.0573593705798
748: [-50.331648306903055, 66.05789891877721]
- 0:-50.331648306903055
- 1:66.05789891877721
749: [-50.332308308760176, 66.05790336891995]
- 0:-50.332308308760176
- 1:66.05790336891995
750: [-50.332303772604156, 66.05817084384066]
- 0:-50.332303772604156
- 1:66.05817084384066
751: [-50.33362816927019, 66.05817536775973]
- 0:-50.33362816927019
- 1:66.05817536775973
752: [-50.33361928653326, 66.05844732582091]
- 0:-50.33361928653326
- 1:66.05844732582091
753: [-50.33428368127911, 66.0584473995689]
- 0:-50.33428368127911
- 1:66.0584473995689
754: [-50.334274804953225, 66.0587193580105]
- 0:-50.334274804953225
- 1:66.0587193580105
755: [-50.33493903778505, 66.0587193767006]
- 0:-50.33493903778505
- 1:66.0587193767006
756: [-50.33493016786882, 66.05899133552252]
- 0:-50.33493016786882
- 1:66.05899133552252
757: [-50.33228158544349, 66.05897799365121]
- 0:-50.33228158544349
- 1:66.05897799365121
758: [-50.332285953845414, 66.0587104662582]
- 0:-50.332285953845414
- 1:66.0587104662582
759: [-50.33096169736569, 66.05870597953351]
- 0:-50.33096169736569
- 1:66.05870597953351
760: [-50.33097043820811, 66.05843396991781]
- 0:-50.33097043820811
- 1:66.05843396991781
761: [-50.3283217995526, 66.05842501971266]
- 0:-50.3283217995526
- 1:66.05842501971266
762: [-50.32831298390178, 66.05869261862239]
- 0:-50.32831298390178
- 1:66.05869261862239
763: [-50.327652960412486, 66.05868814721025]
- 0:-50.327652960412486
- 1:66.05868814721025
764: [-50.327630784507235, 66.05949523202072]
- 0:-50.327630784507235
- 1:66.05949523202072
765: [-50.32564188433596, 66.05948635064922]
- 0:-50.32564188433596
- 1:66.05948635064922
766: [-50.32563292384976, 66.05975830914008]
- 0:-50.32563292384976
- 1:66.05975830914008
767: [-50.32497304095545, 66.05975387499372]
- 0:-50.32497304095545
- 1:66.05975387499372
768: [-50.32498642392827, 66.0592142725923]
- 0:-50.32498642392827
- 1:66.0592142725923
769: [-50.32310470416855, 66.05920985871781]
- 0:-50.32310470416855
- 1:66.05920985871781
770: [-50.32338118690967, 66.05964238811336]
- 0:-50.32338118690967
- 1:66.05964238811336
771: [-50.323514913241496, 66.05986979013684]
- 0:-50.323514913241496
- 1:66.05986979013684
772: [-50.323577332590894, 66.05998129963663]
- 0:-50.323577332590894
- 1:66.05998129963663
773: [-50.32362640929201, 66.06008826466449]
- 0:-50.32362640929201
- 1:66.06008826466449
774: [-50.32366659699669, 66.06019084664172]
- 0:-50.32366659699669
- 1:66.06019084664172
775: [-50.32369772780847, 66.0602889939551]
- 0:-50.32369772780847
- 1:66.0602889939551
776: [-50.32429533018406, 66.06028899609711]
- 0:-50.32429533018406
- 1:66.06028899609711
777: [-50.32428191199439, 66.06082848397423]
- 0:-50.32428191199439
- 1:66.06082848397423
778: [-50.32379578407428, 66.06082409792008]
- 0:-50.32379578407428
- 1:66.06082409792008
779: [-50.32381828332247, 66.06098903935944]
- 0:-50.32381828332247
- 1:66.06098903935944
780: [-50.32382693188318, 66.06114510458096]
- 0:-50.32382693188318
- 1:66.06114510458096
781: [-50.32383594297134, 66.06129227050356]
- 0:-50.32383594297134
- 1:66.06129227050356
782: [-50.32383584758183, 66.06144388772732]
- 0:-50.32383584758183
- 1:66.06144388772732
783: [-50.323831369356334, 66.06158657442056]
- 0:-50.323831369356334
- 1:66.06158657442056
784: [-50.32381814681609, 66.06172481300024]
- 0:-50.32381814681609
- 1:66.06172481300024
785: [-50.32380017886157, 66.06186302043781]
- 0:-50.32380017886157
- 1:66.06186302043781
786: [-50.323777898313416, 66.06199682444382]
- 0:-50.323777898313416
- 1:66.06199682444382
787: [-50.32374670537051, 66.06212612869267]
- 0:-50.32374670537051
- 1:66.06212612869267
788: [-50.3237110801847, 66.06225538829833]
- 0:-50.3237110801847
- 1:66.06225538829833
789: [-50.32366646726645, 66.06238474036293]
- 0:-50.32366646726645
- 1:66.06238474036293
790: [-50.323617470999224, 66.06250516181248]
- 0:-50.323617470999224
- 1:66.06250516181248
791: [-50.32355946464203, 66.06262555898154]
- 0:-50.32355946464203
- 1:66.06262555898154
792: [-50.323497123100296, 66.06274143593797]
- 0:-50.323497123100296
- 1:66.06274143593797
793: [-50.323430225548314, 66.06285745001202]
- 0:-50.323430225548314
- 1:66.06285745001202
794: [-50.32335439285106, 66.06296884751954]
- 0:-50.32335439285106
- 1:66.06296884751954
795: [-50.323175970820536, 66.06324539039414]
- 0:-50.323175970820536
- 1:66.06324539039414
796: [-50.32355498109157, 66.06324538661396]
- 0:-50.32355498109157
- 1:66.06324538661396
797: [-50.32354171728702, 66.06378493237148]
- 0:-50.32354171728702
- 1:66.06378493237148
798: [-50.324866036902684, 66.06378933102452]
- 0:-50.324866036902684
- 1:66.06378933102452
799: [-50.324843782315014, 66.06459643146792]
- 0:-50.324843782315014
- 1:66.06459643146792
800: [-50.32418368724925, 66.06459646798585]
- 0:-50.32418368724925
- 1:66.06459646798585
801: [-50.324139138861256, 66.06621067626594]
- 0:-50.324139138861256
- 1:66.06621067626594
802: [-50.323474669743995, 66.0662061885321]
- 0:-50.323474669743995
- 1:66.0662061885321
803: [-50.32346140530369, 66.06674574070219]
- 0:-50.32346140530369
- 1:66.06674574070219
804: [-50.322797090760645, 66.06674130089499]
- 0:-50.322797090760645
- 1:66.06674130089499
805: [-50.32282812594594, 66.06566665325103]
- 0:-50.32282812594594
- 1:66.06566665325103
806: [-50.3221638366029, 66.0656622102332]
- 0:-50.3221638366029
- 1:66.0656622102332
807: [-50.32217271073556, 66.06539460458093]
- 0:-50.32217271073556
- 1:66.06539460458093
808: [-50.32173579772593, 66.06539020850293]
- 0:-50.32173579772593
- 1:66.06539020850293
809: [-50.32174463037955, 66.06543919045113]
- 0:-50.32174463037955
- 1:66.06543919045113
810: [-50.32174900474008, 66.0654838338652]
- 0:-50.32174900474008
- 1:66.0654838338652
811: [-50.32174906479776, 66.06553737019608]
- 0:-50.32174906479776
- 1:66.06553737019608
812: [-50.321744740349075, 66.06559527224931]
- 0:-50.321744740349075
- 1:66.06559527224931
813: [-50.32172674144251, 66.06570677164237]
- 0:-50.32172674144251
- 1:66.06570677164237
814: [-50.32166877038991, 66.06592971501625]
- 0:-50.32166877038991
- 1:66.06592971501625
815: [-50.321642102785844, 66.06601887723784]
- 0:-50.321642102785844
- 1:66.06601887723784
816: [-50.321610808801246, 66.06610364930532]
- 0:-50.321610808801246
- 1:66.06610364930532
817: [-50.32157081722522, 66.06618838345011]
- 0:-50.32157081722522
- 1:66.06618838345011
818: [-50.32151728424271, 66.06627752394697]
- 0:-50.32151728424271
- 1:66.06627752394697
819: [-50.32145912468362, 66.06636227426117]
- 0:-50.32145912468362
- 1:66.06636227426117
820: [-50.32139226728435, 66.06644698661952]
- 0:-50.32139226728435
- 1:66.06644698661952
821: [-50.32131661427041, 66.06653613660419]
- 0:-50.32131661427041
- 1:66.06653613660419
822: [-50.3212319018426, 66.06662085157564]
- 0:-50.3212319018426
- 1:66.06662085157564
823: [-50.32113820004667, 66.06670565873073]
- 0:-50.32113820004667
- 1:66.06670565873073
824: [-50.321035680164464, 66.06679478674552]
- 0:-50.321035680164464
- 1:66.06679478674552
825: [-50.32092426846465, 66.06687953130164]
- 0:-50.32092426846465
- 1:66.06687953130164
826: [-50.320803747191114, 66.06696872686214]
- 0:-50.320803747191114
- 1:66.06696872686214
827: [-50.320669949053105, 66.06705790460668]
- 0:-50.320669949053105
- 1:66.06705790460668
828: [-50.3205316694539, 66.06714262690312]
- 0:-50.3205316694539
- 1:66.06714262690312
829: [-50.320380160630535, 66.06723174182571]
- 0:-50.320380160630535
- 1:66.06723174182571
830: [-50.320224142328826, 66.06732540408493]
- 0:-50.320224142328826
- 1:66.06732540408493
831: [-50.32007689886546, 66.06740121525817]
- 0:-50.32007689886546
- 1:66.06740121525817
832: [-50.31992529166143, 66.06748150866875]
- 0:-50.31992529166143
- 1:66.06748150866875
833: [-50.31976481788909, 66.06756171222206]
- 0:-50.31976481788909
- 1:66.06756171222206
834: [-50.31959535398892, 66.06764200769216]
- 0:-50.31959535398892
- 1:66.06764200769216
835: [-50.31922524131666, 66.06781146860477]
- 0:-50.31922524131666
- 1:66.06781146860477
836: [-50.31881953106361, 66.06798987085041]
- 0:-50.31881953106361
- 1:66.06798987085041
837: [-50.318453753003425, 66.06814143389889]
- 0:-50.318453753003425
- 1:66.06814143389889
838: [-50.318034638906816, 66.06831087802557]
- 0:-50.318034638906816
- 1:66.06831087802557
839: [-50.316710223951105, 66.06882814153582]
- 0:-50.316710223951105
- 1:66.06882814153582
840: [-50.31628224413239, 66.06899760692671]
- 0:-50.31628224413239
- 1:66.06899760692671
841: [-50.31591217276616, 66.06914916963939]
- 0:-50.31591217276616
- 1:66.06914916963939
842: [-50.31558665790004, 66.06928740424516]
- 0:-50.31558665790004
- 1:66.06928740424516
843: [-50.315381505600065, 66.06937210859606]
- 0:-50.315381505600065
- 1:66.06937210859606
844: [-50.31514955301906, 66.06946131671678]
- 0:-50.31514955301906
- 1:66.06946131671678
845: [-50.314899841390684, 66.06954605050753]
- 0:-50.314899841390684
- 1:66.06954605050753
846: [-50.314231070761295, 66.06978244352418]
- 0:-50.314231070761295
- 1:66.06978244352418
847: [-50.31403037350407, 66.06985818790452]
- 0:-50.31403037350407
- 1:66.06985818790452
848: [-50.31386102907854, 66.06992511430458]
- 0:-50.31386102907854
- 1:66.06992511430458
849: [-50.31366934188485, 66.07000088316826]
- 0:-50.31366934188485
- 1:66.07000088316826
850: [-50.31349977563948, 66.07007664368318]
- 0:-50.31349977563948
- 1:66.07007664368318
851: [-50.31335266618272, 66.07015249920448]
- 0:-50.31335266618272
- 1:66.07015249920448
852: [-50.31322334375511, 66.07022382581656]
- 0:-50.31322334375511
- 1:66.07022382581656
853: [-50.313169754452915, 66.07025954343116]
- 0:-50.313169754452915
- 1:66.07025954343116
854: [-50.31312074399044, 66.07029524102754]
- 0:-50.31312074399044
- 1:66.07029524102754
855: [-50.31307171125651, 66.07033082189089]
- 0:-50.31307171125651
- 1:66.07033082189089
856: [-50.31302718052046, 66.07037097511322]
- 0:-50.31302718052046
- 1:66.07037097511322
857: [-50.31294686414763, 66.07045573064778]
- 0:-50.31294686414763
- 1:66.07045573064778
858: [-50.31287555390448, 66.07055380805458]
- 0:-50.31287555390448
- 1:66.07055380805458
859: [-50.31282193808518, 66.07063853561218]
- 0:-50.31282193808518
- 1:66.07063853561218
860: [-50.31276848397816, 66.07073661160884]
- 0:-50.31276848397816
- 1:66.07073661160884
861: [-50.31261691393713, 66.07107552944902]
- 0:-50.31261691393713
- 1:66.07107552944902
862: [-50.312558889567626, 66.07120033587081]
- 0:-50.312558889567626
- 1:66.07120033587081
863: [-50.31248756199243, 66.07132082985153]
- 0:-50.31248756199243
- 1:66.07132082985153
864: [-50.31244745639842, 66.0713743249586]
- 0:-50.31244745639842
- 1:66.0713743249586
865: [-50.31240728193195, 66.07142329276026]
- 0:-50.31240728193195
- 1:66.07142329276026
866: [-50.31235375202142, 66.07147683432247]
- 0:-50.31235375202142
- 1:66.07147683432247
867: [-50.31230032103054, 66.07152590020075]
- 0:-50.31230032103054
- 1:66.07152590020075
868: [-50.31223787714852, 66.07157494091229]
- 0:-50.31223787714852
- 1:66.07157494091229
869: [-50.31217538650262, 66.07161957101327]
- 0:-50.31217538650262
- 1:66.07161957101327
870: [-50.31210398207699, 66.07165970025409]
- 0:-50.31210398207699
- 1:66.07165970025409
871: [-50.312028243080455, 66.07169530865896]
- 0:-50.312028243080455
- 1:66.07169530865896
872: [-50.31195252602616, 66.07173103374087]
- 0:-50.31195252602616
- 1:66.07173103374087
873: [-50.31186331596818, 66.07176227787876]
- 0:-50.31186331596818
- 1:66.07176227787876
874: [-50.31152888855066, 66.07188711593777]
- 0:-50.31152888855066
- 1:66.07188711593777
875: [-50.31142623108603, 66.07191828942723]
- 0:-50.31142623108603
- 1:66.07191828942723
876: [-50.311337119063154, 66.07194505752831]
- 0:-50.311337119063154
- 1:66.07194505752831
877: [-50.31123894761949, 66.07196738974878]
- 0:-50.31123894761949
- 1:66.07196738974878
878: [-50.31114986602533, 66.07198515472874]
- 0:-50.31114986602533
- 1:66.07198515472874
879: [-50.31106512514796, 66.07199414361911]
- 0:-50.31106512514796
- 1:66.07199414361911
880: [-50.310980415046735, 66.07199412946125]
- 0:-50.310980415046735
- 1:66.07199412946125
881: [-50.31091782856431, 66.07199410764086]
- 0:-50.31091782856431
- 1:66.07199410764086
882: [-50.31085107568113, 66.07198961657892]
- 0:-50.31085107568113
- 1:66.07198961657892
883: [-50.31077969721585, 66.07198073480033]
- 0:-50.31077969721585
- 1:66.07198073480033
884: [-50.31070388521114, 66.07197180780766]
- 0:-50.31070388521114
- 1:66.07197180780766
885: [-50.31054783457612, 66.07194061164512]
- 0:-50.31054783457612
- 1:66.07194061164512
886: [-50.3102535237004, 66.07187369039951]
- 0:-50.3102535237004
- 1:66.07187369039951
887: [-50.31010641848753, 66.07183799168936]
- 0:-50.31010641848753
- 1:66.07183799168936
888: [-50.30995926742893, 66.07179788222312]
- 0:-50.30995926742893
- 1:66.07179788222312
889: [-50.308741880059934, 66.07179348641998]
- 0:-50.308741880059934
- 1:66.07179348641998
890: [-50.30875088256172, 66.07152587585053]
- 0:-50.30875088256172
- 1:66.07152587585053
891: [-50.3080908767657, 66.07152140222763]
- 0:-50.3080908767657
- 1:66.07152140222763
892: [-50.308095328486694, 66.07125392856626]
- 0:-50.308095328486694
- 1:66.07125392856626
893: [-50.30743089515702, 66.07124940622589]
- 0:-50.30743089515702
- 1:66.07124940622589
894: [-50.307439932397436, 66.07098191312551]
- 0:-50.307439932397436
- 1:66.07098191312551
895: [-50.30677993849137, 66.07097743264725]
- 0:-50.30677993849137
- 1:66.07097743264725
896: [-50.30678438078337, 66.0707098429685]
- 0:-50.30678438078337
- 1:66.0707098429685
897: [-50.30545999319679, 66.07070094302487]
- 0:-50.30545999319679
- 1:66.07070094302487
898: [-50.30547350436442, 66.07016586178558]
- 0:-50.30547350436442
- 1:66.07016586178558
899: [-50.30480894928113, 66.07016139071884]
- 0:-50.30480894928113
- 1:66.07016139071884
900: [-50.304817843933925, 66.0698938474749]
- 0:-50.304817843933925
- 1:66.0698938474749
901: [-50.30349349213253, 66.06988492689489]
- 0:-50.30349349213253
- 1:66.06988492689489
902: [-50.30350239942412, 66.06961738411226]
- 0:-50.30350239942412
- 1:66.06961738411226
903: [-50.30283802372778, 66.06961295427152]
- 0:-50.30283802372778
- 1:66.06961295427152
904: [-50.302846937326116, 66.0693454118632]
- 0:-50.302846937326116
- 1:66.0693454118632
905: [-50.30218256761213, 66.06934097857176]
- 0:-50.30218256761213
- 1:66.06934097857176
906: [-50.302191487516964, 66.06907343653775]
- 0:-50.302191487516964
- 1:66.06907343653775
907: [-50.30152695598886, 66.0690689481482]
- 0:-50.30152695598886
- 1:66.0690689481482
908: [-50.301535882201506, 66.06880140648863]
- 0:-50.301535882201506
- 1:66.06880140648863
909: [-50.30020721094546, 66.06879693309467]
- 0:-50.30020721094546
- 1:66.06879693309467
910: [-50.300207312018095, 66.06879245749305]
- 0:-50.300207312018095
- 1:66.06879245749305
911: [-50.30005113971626, 66.06881473392363]
- 0:-50.30005113971626
- 1:66.06881473392363
912: [-50.29993953549156, 66.06882368873475]
- 0:-50.29993953549156
- 1:66.06882368873475
913: [-50.299828178015844, 66.06882810277446]
- 0:-50.299828178015844
- 1:66.06882810277446
914: [-50.29971226374349, 66.06883265294267]
- 0:-50.29971226374349
- 1:66.06883265294267
915: [-50.299591849664964, 66.06883263018626]
- 0:-50.299591849664964
- 1:66.06883263018626
916: [-50.29946695792402, 66.06882815121209]
- 0:-50.29946695792402
- 1:66.06882815121209
917: [-50.29933332324439, 66.06881922208302]
- 0:-50.29933332324439
- 1:66.06881922208302
918: [-50.2991994763634, 66.06880583062993]
- 0:-50.2991994763634
- 1:66.06880583062993
919: [-50.29906121854719, 66.06879251016996]
- 0:-50.29906121854719
- 1:66.06879251016996
920: [-50.29892747315355, 66.06877464282852]
- 0:-50.29892747315355
- 1:66.06877464282852
921: [-50.29878914908075, 66.06875679482059]
- 0:-50.29878914908075
- 1:66.06875679482059
922: [-50.29864208233059, 66.0687344965852]
- 0:-50.29864208233059
- 1:66.0687344965852
923: [-50.298481526379554, 66.06870771590508]
- 0:-50.298481526379554
- 1:66.06870771590508
924: [-50.29820056050926, 66.06865420090273]
- 0:-50.29820056050926
- 1:66.06865420090273
925: [-50.29748704525112, 66.0685160027991]
- 0:-50.29748704525112
- 1:66.0685160027991
926: [-50.297464923969486, 66.06851600803668]
- 0:-50.297464923969486
- 1:66.06851600803668
927: [-50.296902959346866, 66.06851151913548]
- 0:-50.296902959346866
- 1:66.06851151913548
928: [-50.2969075348835, 66.06840454303254]
- 0:-50.2969075348835
- 1:66.06840454303254
929: [-50.29652402296815, 66.06832428979067]
- 0:-50.29652402296815
- 1:66.06832428979067
930: [-50.29616731465513, 66.06823953544016]
- 0:-50.29616731465513
- 1:66.06823953544016
931: [-50.294923216116395, 66.0682350951288]
- 0:-50.294923216116395
- 1:66.0682350951288
932: [-50.294932195778586, 66.0678738953716]
- 0:-50.294932195778586
- 1:66.0678738953716
933: [-50.294784931225934, 66.06782042062585]
- 0:-50.294784931225934
- 1:66.06782042062585
934: [-50.29464224590473, 66.06776692639772]
- 0:-50.29464224590473
- 1:66.06776692639772
935: [-50.294512917885136, 66.0677088602441]
- 0:-50.294512917885136
- 1:66.0677088602441
936: [-50.29438804541388, 66.06765095644195]
- 0:-50.29438804541388
- 1:66.06765095644195
937: [-50.29427216300217, 66.06759296225523]
- 0:-50.29427216300217
- 1:66.06759296225523
938: [-50.2941651906176, 66.06753946999721]
- 0:-50.2941651906176
- 1:66.06753946999721
939: [-50.29406701879596, 66.0674815419578]
- 0:-50.29406701879596
- 1:66.0674815419578
940: [-50.293977793245595, 66.06741911309824]
- 0:-50.293977793245595
- 1:66.06741911309824
941: [-50.29362099935903, 66.06741907374602]
- 0:-50.29362099935903
- 1:66.06741907374602
942: [-50.29362556863182, 66.06715148907504]
- 0:-50.29362556863182
- 1:66.06715148907504
943: [-50.29296567713553, 66.06714705279104]
- 0:-50.29296567713553
- 1:66.06714705279104
944: [-50.29297010704073, 66.06687953353324]
- 0:-50.29297010704073
- 1:66.06687953353324
945: [-50.29231005371892, 66.06687504216224]
- 0:-50.29231005371892
- 1:66.06687504216224
946: [-50.292323607059586, 66.06633550985353]
- 0:-50.292323607059586
- 1:66.06633550985353
947: [-50.292987912612176, 66.06633999521168]
- 0:-50.292987912612176
- 1:66.06633999521168
948: [-50.29300128524019, 66.06580041226024]
- 0:-50.29300128524019
- 1:66.06580041226024
949: [-50.29233689019202, 66.06580040258864]
- 0:-50.29233689019202
- 1:66.06580040258864
950: [-50.29234569365054, 66.0655284034683]
- 0:-50.29234569365054
- 1:66.0655284034683
951: [-50.291021449906346, 66.06552394400939]
- 0:-50.291021449906346
- 1:66.06552394400939
952: [-50.29102600137184, 66.06525195115022]
- 0:-50.29102600137184
- 1:66.06525195115022
953: [-50.29036588243005, 66.06525192525365]
- 0:-50.29036588243005
- 1:66.06525192525365
954: [-50.29040161728098, 66.06390529643392]
- 0:-50.29040161728098
- 1:66.06390529643392
955: [-50.29106601214794, 66.06390972660738]
- 0:-50.29106601214794
- 1:66.06390972660738
956: [-50.291075039039775, 66.0636421918101]
- 0:-50.291075039039775
- 1:66.0636421918101
957: [-50.29173480585451, 66.06364222714056]
- 0:-50.29173480585451
- 1:66.06364222714056
958: [-50.29175278147477, 66.06310263109731]
- 0:-50.29175278147477
- 1:66.06310263109731
959: [-50.292412746036426, 66.06310712485467]
- 0:-50.292412746036426
- 1:66.06310712485467
960: [-50.2924261307606, 66.06256754904942]
- 0:-50.2924261307606
- 1:66.06256754904942
961: [-50.29176607651701, 66.06256753091853]
- 0:-50.29176607651701
- 1:66.06256753091853
962: [-50.2917794959555, 66.06202807314223]
- 0:-50.2917794959555
- 1:66.06202807314223
963: [-50.291119556428356, 66.06202357619442]
- 0:-50.291119556428356
- 1:66.06202357619442
964: [-50.29113286393347, 66.06148847847615]
- 0:-50.29113286393347
- 1:66.06148847847615
965: [-50.2904729366811, 66.06148397818647]
- 0:-50.2904729366811
- 1:66.06148397818647
966: [-50.29051753363272, 66.0598697874167]
- 0:-50.29051753363272
- 1:66.0598697874167
967: [-50.2911775252547, 66.05986981180394]
- 0:-50.2911775252547
- 1:66.05986981180394
968: [-50.291190832288166, 66.05933471871661]
- 0:-50.291190832288166
- 1:66.05933471871661
969: [-50.290530955971214, 66.05933021905552]
- 0:-50.290530955971214
- 1:66.05933021905552
970: [-50.29054423253558, 66.05879071692127]
- 0:-50.29054423253558
- 1:66.05879071692127
971: [-50.28921999186764, 66.05878625362055]
- 0:-50.28921999186764
- 1:66.05878625362055
972: [-50.28925121580924, 66.0577116446438]
- 0:-50.28925121580924
- 1:66.0577116446438
973: [-50.289911135547634, 66.05771155873664]
- 0:-50.289911135547634
- 1:66.05771155873664
974: [-50.289942333343674, 66.05663695409407]
- 0:-50.289942333343674
- 1:66.05663695409407
975: [-50.29060682600988, 66.05663696191834]
- 0:-50.29060682600988
- 1:66.05663696191834
976: [-50.29062896589236, 66.05582988764392]
- 0:-50.29062896589236
- 1:66.05582988764392
977: [-50.29128890510202, 66.05583432120709]
- 0:-50.29128890510202
- 1:66.05583432120709
978: [-50.29129793036991, 66.05556679508399]
- 0:-50.29129793036991
- 1:66.05556679508399
979: [-50.29195781964526, 66.05556681477472]
- 0:-50.29195781964526
- 1:66.05556681477472
980: [-50.29196667081969, 66.05529923719922]
- 0:-50.29196667081969
- 1:66.05529923719922
981: [-50.29263117316623, 66.05530364434189]
- 0:-50.29263117316623
- 1:66.05530364434189
982: [-50.29265342270654, 66.0544966253788]
- 0:-50.29265342270654
- 1:66.0544966253788
983: [-50.291989085225126, 66.0544921534186]
- 0:-50.291989085225126
- 1:66.0544921534186
984: [-50.29199793617489, 66.05422457699865]
- 0:-50.29199793617489
- 1:66.05422457699865
985: [-50.29398676731083, 66.05423351257396]
- 0:-50.29398676731083
- 1:66.05423351257396
986: [-50.29396883367663, 66.05477308989865]
- 0:-50.29396883367663
- 1:66.05477308989865
987: [-50.29463327837002, 66.05477307601056]
- 0:-50.29463327837002
- 1:66.05477307601056
988: [-50.29463784076673, 66.05450550488621]
- 0:-50.29463784076673
- 1:66.05450550488621
989: [-50.29596203730669, 66.05450996108343]
- 0:-50.29596203730669
- 1:66.05450996108343
990: [-50.29597101785805, 66.05424243580258]
- 0:-50.29597101785805
- 1:66.05424243580258
991: [-50.29663544811737, 66.05424241117036]
- 0:-50.29663544811737
- 1:66.05424241117036
992: [-50.29663984581114, 66.05397490550187]
- 0:-50.29663984581114
- 1:66.05397490550187
993: [-50.297099115963974, 66.0539748943264]
- 0:-50.297099115963974
- 1:66.0539748943264
994: [-50.29720169711955, 66.0538633758986]
- 0:-50.29720169711955
- 1:66.0538633758986
995: [-50.29730877432122, 66.05375643003761]
- 0:-50.29730877432122
- 1:66.05375643003761
996: [-50.29730880608315, 66.05370730676653]
- 0:-50.29730880608315
- 1:66.05370730676653
997: [-50.297357769273745, 66.05370732842789]
- 0:-50.297357769273745
- 1:66.05370732842789
998: [-50.29746926260078, 66.0536137239608]
- 0:-50.29746926260078
- 1:66.0536137239608
999: [-50.29758079927054, 66.05352452968339]
- 0:-50.29758079927054
- 1:66.05352452968339
1000: [-50.297701174544024, 66.05343530985468]
- 0:-50.297701174544024
- 1:66.05343530985468
1001: [-50.297826045915286, 66.05335066251712]
- 0:-50.297826045915286
- 1:66.05335066251712
1002: [-50.297955369269566, 66.05327035422779]
- 0:-50.297955369269566
- 1:66.05327035422779
1003: [-50.29808912251935, 66.0531900914285]
- 0:-50.29808912251935
- 1:66.0531900914285
1004: [-50.29823182465063, 66.05311874020443]
- 0:-50.29823182465063
- 1:66.05311874020443
1005: [-50.29837889037785, 66.05304290746298]
- 0:-50.29837889037785
- 1:66.05304290746298
1006: [-50.29865993577021, 66.05291809817132]
- 0:-50.29865993577021
- 1:66.05291809817132
1007: [-50.29865982518318, 66.05290916096337]
- 0:-50.29865982518318
- 1:66.05290916096337
1008: [-50.29799552993555, 66.05290472125277]
- 0:-50.29799552993555
- 1:66.05290472125277
1009: [-50.2980265642175, 66.05183006863675]
- 0:-50.2980265642175
- 1:66.05183006863675
1010: [-50.298686672504985, 66.0518300387951]
- 0:-50.298686672504985
- 1:66.0518300387951
1011: [-50.29870441397102, 66.05129494197524]
- 0:-50.29870441397102
- 1:66.05129494197524
1012: [-50.29804015714079, 66.0512905027448]
- 0:-50.29804015714079
- 1:66.0512905027448
1013: [-50.298048950301684, 66.05102292903003]
- 0:-50.298048950301684
- 1:66.05102292903003
1014: [-50.29870889388692, 66.05102296402823]
- 0:-50.29870889388692
- 1:66.05102296402823
1015: [-50.29871784833664, 66.05075544216633]
- 0:-50.29871784833664
- 1:66.05075544216633
1016: [-50.30004217372341, 66.05075984054245]
- 0:-50.30004217372341
- 1:66.05075984054245
1017: [-50.30005111541069, 66.05049231879784]
- 0:-50.30005111541069
- 1:66.05049231879784
1018: [-50.30071108922806, 66.0504967533291]
- 0:-50.30071108922806
- 1:66.0504967533291
1019: [-50.300719979958245, 66.05022482158383]
- 0:-50.300719979958245
- 1:66.05022482158383
1020: [-50.3009206743807, 66.05022475291462]
- 0:-50.3009206743807
- 1:66.05022475291462
1021: [-50.30005108799625, 66.04995274892657]
- 0:-50.30005108799625
- 1:66.04995274892657
1022: [-50.29918596739358, 66.0495247137447]
- 0:-50.29918596739358
- 1:66.0495247137447
1023: [-50.297794774427274, 66.0490877304226]
- 0:-50.297794774427274
- 1:66.0490877304226
1024: [-50.29674689032101, 66.04894058569968]
- 0:-50.29674689032101
- 1:66.04894058569968
1025: [-50.29571244644653, 66.04836977196618]
- 0:-50.29571244644653
- 1:66.04836977196618
1026: [-50.29502122498867, 66.047937213185]
- 0:-50.29502122498867
- 1:66.047937213185
1027: [-50.29397324929463, 66.04779011120198]
- 0:-50.29397324929463
- 1:66.04779011120198
1028: [-50.292925481882705, 66.04771429004698]
- 0:-50.292925481882705
- 1:66.04771429004698
1029: [-50.29153879341661, 66.04728176210507]
- 0:-50.29153879341661
- 1:66.04728176210507
1030: [-50.2908519944594, 66.0467065199144]
- 0:-50.2908519944594
- 1:66.0467065199144
1031: [-50.29070045349903, 66.04577901821375]
- 0:-50.29070045349903
- 1:66.04577901821375
1032: [-50.28967029335456, 66.04506563137977]
- 0:-50.28967029335456
- 1:66.04506563137977
1033: [-50.288631429096604, 66.04463303400385]
- 0:-50.288631429096604
- 1:66.04463303400385
1034: [-50.28706169185429, 66.04433877255852]
- 0:-50.28706169185429
- 1:66.04433877255852
1035: [-50.28496160479927, 66.04425851154348]
- 0:-50.28496160479927
- 1:66.04425851154348
1036: [-50.28285683537068, 66.0443208893055]
- 0:-50.28285683537068
- 1:66.0443208893055
1037: [-50.28075211589568, 66.04452605508362]
- 0:-50.28075211589568
- 1:66.04452605508362
1038: [-50.28034628417222, 66.04457508592567]
- 0:-50.28034628417222
- 1:66.04457508592567
1039: [-50.28034193797937, 66.04474898085152]
- 0:-50.28034193797937
- 1:66.04474898085152
1040: [-50.279071097530085, 66.04474451488882]
- 0:-50.279071097530085
- 1:66.04474451488882
1041: [-50.27835315903873, 66.04483815266308]
- 0:-50.27835315903873
- 1:66.04483815266308
1042: [-50.27834875946639, 66.04500763753941]
- 0:-50.27834875946639
- 1:66.04500763753941
1043: [-50.2776841780721, 66.04500316916878]
- 0:-50.2776841780721
- 1:66.04500316916878
1044: [-50.2776887632024, 66.04490508954193]
- 0:-50.2776887632024
- 1:66.04490508954193
1045: [-50.27635993987004, 66.04502542392551]
- 0:-50.27635993987004
- 1:66.04502542392551
1046: [-50.27635553876343, 66.04526626240538]
- 0:-50.27635553876343
- 1:66.04526626240538
1047: [-50.2745895531808, 66.04526180862227]
- 0:-50.2745895531808
- 1:66.04526180862227
1048: [-50.273894068353, 66.04541787449021]
- 0:-50.273894068353
- 1:66.04541787449021
1049: [-50.27370226877814, 66.04537775660148]
- 0:-50.27370226877814
- 1:66.04537775660148
1050: [-50.27369774144133, 66.04552489255359]
- 0:-50.27369774144133
- 1:66.04552489255359
1051: [-50.27303788709747, 66.0455204324312]
- 0:-50.27303788709747
- 1:66.0455204324312
1052: [-50.27302889397044, 66.04579240719048]
- 0:-50.27302889397044
- 1:66.04579240719048
1053: [-50.27368886013124, 66.04579239225988]
- 0:-50.27368886013124
- 1:66.04579239225988
1054: [-50.273680040976984, 66.04606441907913]
- 0:-50.273680040976984
- 1:66.04606441907913
1055: [-50.27302017387975, 66.04605995878269]
- 0:-50.27302017387975
- 1:66.04605995878269
1056: [-50.27300657684197, 66.0465995461453]
- 0:-50.27300657684197
- 1:66.0465995461453
1057: [-50.272342266892714, 66.04659503569269]
- 0:-50.272342266892714
- 1:66.04659503569269
1058: [-50.27233339461879, 66.04686265310009]
- 0:-50.27233339461879
- 1:66.04686265310009
1059: [-50.27167340197175, 66.04686266071064]
- 0:-50.27167340197175
- 1:66.04686266071064
1060: [-50.271660030515896, 66.04739770933419]
- 0:-50.271660030515896
- 1:66.04739770933419
1061: [-50.270995594778526, 66.04739766674889]
- 0:-50.270995594778526
- 1:66.04739766674889
1062: [-50.27098670964821, 66.04766528485648]
- 0:-50.27098670964821
- 1:66.04766528485648
1063: [-50.27032680276317, 66.04766081005945]
- 0:-50.27032680276317
- 1:66.04766081005945
1064: [-50.27031778337022, 66.047932786828]
- 0:-50.27031778337022
- 1:66.047932786828
1065: [-50.2696578696756, 66.04792830844893]
- 0:-50.2696578696756
- 1:66.04792830844893
1066: [-50.26964897175565, 66.04819592696361]
- 0:-50.26964897175565
- 1:66.04819592696361
1067: [-50.26898451523218, 66.0481958735487]
- 0:-50.26898451523218
- 1:66.0481958735487
1068: [-50.26898001896353, 66.04846342218609]
- 0:-50.26898001896353
- 1:66.04846342218609
1069: [-50.26831568365897, 66.04845900670331]
- 0:-50.26831568365897
- 1:66.04845900670331
1070: [-50.268306644725016, 66.04873098409442]
- 0:-50.268306644725016
- 1:66.04873098409442
1071: [-50.26764687831845, 66.0487265466345]
- 0:-50.26764687831845
- 1:66.0487265466345
1072: [-50.267655649717035, 66.04845899282266]
- 0:-50.267655649717035
- 1:66.04845899282266
1073: [-50.266910932175016, 66.04845452160008]
- 0:-50.266910932175016
- 1:66.04845452160008
1074: [-50.26685748022002, 66.04859274002659]
- 0:-50.26685748022002
- 1:66.04859274002659
1075: [-50.26678625096763, 66.04872206806841]
- 0:-50.26678625096763
- 1:66.04872206806841
1076: [-50.26698236815033, 66.04872207231696]
- 0:-50.26698236815033
- 1:66.04872207231696
1077: [-50.26696911419395, 66.04926158581183]
- 0:-50.26696911419395
- 1:66.04926158581183
1078: [-50.26630475841773, 66.04925715948997]
- 0:-50.26630475841773
- 1:66.04925715948997
1079: [-50.26630916858997, 66.04921255934671]
- 0:-50.26630916858997
- 1:66.04921255934671
1080: [-50.26623781086921, 66.04925718551931]
- 0:-50.26623781086921
- 1:66.04925718551931
1081: [-50.26616202274128, 66.04930176492503]
- 0:-50.26616202274128
- 1:66.04930176492503
1082: [-50.266086027654815, 66.0493418824347]
- 0:-50.266086027654815
- 1:66.0493418824347
1083: [-50.26600150720606, 66.04938200980652]
- 0:-50.26600150720606
- 1:66.04938200980652
1084: [-50.26582751537364, 66.04945776912461]
- 0:-50.26582751537364
- 1:66.04945776912461
1085: [-50.265640275778516, 66.04953362139454]
- 0:-50.265640275778516
- 1:66.04953362139454
1086: [-50.26543502283409, 66.04960941641518]
- 0:-50.26543502283409
- 1:66.04960941641518
1087: [-50.26521666755348, 66.04968523922176]
- 0:-50.26521666755348
- 1:66.04968523922176
1088: [-50.26498472888333, 66.04976105138583]
- 0:-50.26498472888333
- 1:66.04976105138583
1089: [-50.26473952001605, 66.04983683949894]
- 0:-50.26473952001605
- 1:66.04983683949894
1090: [-50.264489733769764, 66.04991264537611]
- 0:-50.264489733769764
- 1:66.04991264537611
1091: [-50.26422663833302, 66.04998401690075]
- 0:-50.26422663833302
- 1:66.04998401690075
1092: [-50.263959218097725, 66.05005086586999]
- 0:-50.263959218097725
- 1:66.05005086586999
1093: [-50.26368722047767, 66.0501177324774]
- 0:-50.26368722047767
- 1:66.0501177324774
1094: [-50.26340617643101, 66.05018015968109]
- 0:-50.26340617643101
- 1:66.05018015968109
1095: [-50.26312529864722, 66.05024263795389]
- 0:-50.26312529864722
- 1:66.05024263795389
1096: [-50.2628443590005, 66.05030058870412]
- 0:-50.2628443590005
- 1:66.05030058870412
1097: [-50.26255894918417, 66.05035408178337]
- 0:-50.26255894918417
- 1:66.05035408178337
1098: [-50.26227807574095, 66.05040314588209]
- 0:-50.26227807574095
- 1:66.05040314588209
1099: [-50.261992732377024, 66.05044775228568]
- 0:-50.261992732377024
- 1:66.05044775228568
1100: [-50.261720596906606, 66.05048785509778]
- 0:-50.261720596906606
- 1:66.05048785509778
1101: [-50.26145320427348, 66.05052799089572]
- 0:-50.26145320427348
- 1:66.05052799089572
1102: [-50.26118556650125, 66.050559254054]
- 0:-50.26118556650125
- 1:66.050559254054
1103: [-50.2609224439488, 66.05058597163638]
- 0:-50.2609224439488
- 1:66.05058597163638
1104: [-50.26066385867022, 66.05060826038759]
- 0:-50.26066385867022
- 1:66.05060826038759
1105: [-50.26041407359598, 66.05062611557626]
- 0:-50.26041407359598
- 1:66.05062611557626
1106: [-50.260168864243724, 66.05064395219244]
- 0:-50.260168864243724
- 1:66.05064395219244
1107: [-50.25992813245927, 66.0506528331731]
- 0:-50.25992813245927
- 1:66.0506528331731
1108: [-50.25969179276841, 66.05065735046607]
- 0:-50.25969179276841
- 1:66.05065735046607
1109: [-50.259464437574934, 66.05066177952062]
- 0:-50.259464437574934
- 1:66.05066177952062
1110: [-50.25924599084622, 66.05065730001344]
- 0:-50.25924599084622
- 1:66.05065730001344
1111: [-50.259031768937774, 66.05064840522591]
- 0:-50.259031768937774
- 1:66.05064840522591
1112: [-50.25882669937098, 66.05063947402738]
- 0:-50.25882669937098
- 1:66.05063947402738
1113: [-50.2586305386779, 66.05062163439213]
- 0:-50.2586305386779
- 1:66.05062163439213
1114: [-50.258438808598804, 66.0506038414596]
- 0:-50.258438808598804
- 1:66.0506038414596
1115: [-50.25825596572583, 66.05057702344617]
- 0:-50.25825596572583
- 1:66.05057702344617
1116: [-50.25810887380239, 66.05055474477216]
- 0:-50.25810887380239
- 1:66.05055474477216
1117: [-50.257957108427064, 66.05052354683458]
- 0:-50.257957108427064
- 1:66.05052354683458
1118: [-50.257801080573344, 66.05049235338805]
- 0:-50.257801080573344
- 1:66.05049235338805
1119: [-50.257640730588115, 66.05045663751763]
- 0:-50.257640730588115
- 1:66.05045663751763
1120: [-50.257480029907946, 66.05041652458104]
- 0:-50.257480029907946
- 1:66.05041652458104
1121: [-50.257315066883805, 66.05037641609982]
- 0:-50.257315066883805
- 1:66.05037641609982
1122: [-50.25715015274117, 66.05032730531859]
- 0:-50.25715015274117
- 1:66.05032730531859
1123: [-50.256980684950534, 66.05027832900396]
- 0:-50.256980684950534
- 1:66.05027832900396
1124: [-50.25680672782804, 66.0502247785111]
- 0:-50.25680672782804
- 1:66.0502247785111
1125: [-50.25663273372773, 66.05016681761465]
- 0:-50.25663273372773
- 1:66.05016681761465
1126: [-50.25645884845097, 66.05010438130383]
- 0:-50.25645884845097
- 1:66.05010438130383
1127: [-50.25627623330229, 66.05003749213034]
- 0:-50.25627623330229
- 1:66.05003749213034
1128: [-50.25609788170705, 66.04997059810005]
- 0:-50.25609788170705
- 1:66.04997059810005
1129: [-50.2559150631216, 66.04989924656877]
- 0:-50.2559150631216
- 1:66.04989924656877
1130: [-50.25573204036342, 66.04982343292167]
- 0:-50.25573204036342
- 1:66.04982343292167
1131: [-50.2555448641593, 66.04974314844712]
- 0:-50.2555448641593
- 1:66.04974314844712
1132: [-50.255031978868836, 66.04974316825395]
- 0:-50.255031978868836
- 1:66.04974316825395
1133: [-50.255041089858004, 66.04951131137372]
- 0:-50.255041089858004
- 1:66.04951131137372
1134: [-50.25487155747771, 66.0494265709276]
- 0:-50.25487155747771
- 1:66.0494265709276
1135: [-50.25470652745146, 66.04933299209362]
- 0:-50.25470652745146
- 1:66.04933299209362
1136: [-50.25454601528668, 66.04923486834133]
- 0:-50.25454601528668
- 1:66.04923486834133
1137: [-50.25438983805511, 66.04912785454907]
- 0:-50.25438983805511
- 1:66.04912785454907
1138: [-50.254238237902975, 66.04902082275919]
- 0:-50.254238237902975
- 1:66.04902082275919
1139: [-50.25409117758374, 66.04890936283597]
- 0:-50.25409117758374
- 1:66.04890936283597
1140: [-50.253944022201246, 66.04878896577902]
- 0:-50.253944022201246
- 1:66.04878896577902
1141: [-50.25380134774634, 66.04865961376278]
- 0:-50.25380134774634
- 1:66.04865961376278
1142: [-50.25373897632962, 66.04865961524521]
- 0:-50.25373897632962
- 1:66.04865961524521
1143: [-50.25373007155301, 66.04892716755054]
- 0:-50.25373007155301
- 1:66.04892716755054
1144: [-50.253070035418055, 66.0489271930622]
- 0:-50.253070035418055
- 1:66.0489271930622
1145: [-50.25307905520444, 66.04865516568202]
- 0:-50.25307905520444
- 1:66.04865516568202
1146: [-50.25241459477921, 66.04865514055977]
- 0:-50.25241459477921
- 1:66.04865514055977
1147: [-50.252423475252165, 66.0483831785701]
- 0:-50.252423475252165
- 1:66.0483831785701
1148: [-50.251759020704625, 66.04838314998753]
- 0:-50.251759020704625
- 1:66.04838314998753
1149: [-50.25176790758411, 66.0481111883785]
- 0:-50.25176790758411
- 1:66.0481111883785
1150: [-50.25110803468686, 66.04811113859509]
- 0:-50.25110803468686
- 1:66.04811113859509
1151: [-50.251116927928, 66.04783917736621]
- 0:-50.251116927928
- 1:66.04783917736621
1152: [-50.25045259424712, 66.04783466675016]
- 0:-50.25045259424712
- 1:66.04783466675016
1153: [-50.25046138478788, 66.04756718103944]
- 0:-50.25046138478788
- 1:66.04756718103944
1154: [-50.24913704966612, 66.04756267182472]
- 0:-50.24913704966612
- 1:66.04756267182472
1155: [-50.249145962148035, 66.04729071144487]
- 0:-50.249145962148035
- 1:66.04729071144487
1156: [-50.24848164005528, 66.04728619040354]
- 0:-50.24848164005528
- 1:66.04728619040354
1157: [-50.248490449518876, 66.0470187055286]
- 0:-50.248490449518876
- 1:66.0470187055286
1158: [-50.249150481079056, 66.04702311414314]
- 0:-50.249150481079056
- 1:66.04702311414314
1159: [-50.24915936462677, 66.04670209797649]
- 0:-50.24915936462677
- 1:66.04670209797649
1160: [-50.24774591595525, 66.0468581172785]
- 0:-50.24774591595525
- 1:66.0468581172785
1161: [-50.24441479962788, 66.04677343470134]
- 0:-50.24441479962788
- 1:66.04677343470134
1162: [-50.241784025492734, 66.04690274827558]
- 0:-50.241784025492734
- 1:66.04690274827558
1163: [-50.23933150852094, 66.04688940272094]
- 0:-50.23933150852094
- 1:66.04688940272094
1164: [-50.236870246532746, 66.04716136606613]
- 0:-50.236870246532746
- 1:66.04716136606613
1165: [-50.23581790306999, 66.0472282571447]
- 0:-50.23581790306999
- 1:66.0472282571447
1166: [-50.234934942408856, 66.04743784757892]
- 0:-50.234934942408856
- 1:66.04743784757892
1167: [-50.233699764802665, 66.04778561935548]
- 0:-50.233699764802665
- 1:66.04778561935548
1168: [-50.233507913725134, 66.04835641465233]
- 0:-50.233507913725134
- 1:66.04835641465233
1169: [-50.2334946804708, 66.0487844849337]
- 0:-50.2334946804708
- 1:66.0487844849337
1170: [-50.23346779683075, 66.04882909076598]
- 0:-50.23346779683075
- 1:66.04882909076598
1171: [-50.23386460445369, 66.04882907002244]
- 0:-50.23386460445369
- 1:66.04882907002244
1172: [-50.23386028681616, 66.04910106479771]
- 0:-50.23386028681616
- 1:66.04910106479771
1173: [-50.23452021070524, 66.04910549948025]
- 0:-50.23452021070524
- 1:66.04910549948025
1174: [-50.23451128931193, 66.04937310159832]
- 0:-50.23451128931193
- 1:66.04937310159832
1175: [-50.2351756494706, 66.04937758070815]
- 0:-50.2351756494706
- 1:66.04937758070815
1176: [-50.23516671257626, 66.04964506648136]
- 0:-50.23516671257626
- 1:66.04964506648136
1177: [-50.235826815930636, 66.04964954605661]
- 0:-50.235826815930636
- 1:66.04964954605661
1178: [-50.23581773952446, 66.04991709719421]
- 0:-50.23581773952446
- 1:66.04991709719421
1179: [-50.23648211165693, 66.0499215694203]
- 0:-50.23648211165693
- 1:66.0499215694203
1180: [-50.23644205416829, 66.05126822323447]
- 0:-50.23644205416829
- 1:66.05126822323447
1181: [-50.23578222637713, 66.05126373341926]
- 0:-50.23578222637713
- 1:66.05126373341926
1182: [-50.23575534363649, 66.05207078984722]
- 0:-50.23575534363649
- 1:66.05207078984722
1183: [-50.234823404699746, 66.05206633683879]
- 0:-50.234823404699746
- 1:66.05206633683879
1184: [-50.23473423848777, 66.05208863778242]
- 0:-50.23473423848777
- 1:66.05208863778242
1185: [-50.23463603067579, 66.05210649774185]
- 0:-50.23463603067579
- 1:66.05210649774185
1186: [-50.234413163702825, 66.05215110080785]
- 0:-50.234413163702825
- 1:66.05215110080785
1187: [-50.23416778236901, 66.05218677369392]
- 0:-50.23416778236901
- 1:66.05218677369392
1188: [-50.23367295597042, 66.0522625837987]
- 0:-50.23367295597042
- 1:66.0522625837987
1189: [-50.23354362902745, 66.05228040609367]
- 0:-50.23354362902745
- 1:66.05228040609367
1190: [-50.233409837146134, 66.0522937701542]
- 0:-50.233409837146134
- 1:66.0522937701542
1191: [-50.23326274059284, 66.05230269687657]
- 0:-50.23326274059284
- 1:66.05230269687657
1192: [-50.233106636539446, 66.0523115925904]
- 0:-50.233106636539446
- 1:66.0523115925904
1193: [-50.23294165866926, 66.0523160987962]
- 0:-50.23294165866926
- 1:66.0523160987962
1194: [-50.232767673325505, 66.05232057392413]
- 0:-50.232767673325505
- 1:66.05232057392413
1195: [-50.23258052924191, 66.05232054655531]
- 0:-50.23258052924191
- 1:66.05232054655531
1196: [-50.23237976733687, 66.0523160948677]
- 0:-50.23237976733687
- 1:66.0523160948677
1197: [-50.232023057380864, 66.05230276644029]
- 0:-50.232023057380864
- 1:66.05230276644029
1198: [-50.231608286081965, 66.05228042147367]
- 0:-50.231608286081965
- 1:66.05228042147367
1199: [-50.23120706557059, 66.05225367890046]
- 0:-50.23120706557059
- 1:66.05225367890046
1200: [-50.23028403812302, 66.05219122847942]
- 0:-50.23028403812302
- 1:66.05219122847942
1201: [-50.22985596492882, 66.05216444019896]
- 0:-50.22985596492882
- 1:66.05216444019896
1202: [-50.22965090726966, 66.05215557764319]
- 0:-50.22965090726966
- 1:66.05215557764319
1203: [-50.22945898601446, 66.05215110060689]
- 0:-50.22945898601446
- 1:66.05215110060689
1204: [-50.22928965608494, 66.05214666856274]
- 0:-50.22928965608494
- 1:66.05214666856274
1205: [-50.2291380390359, 66.05214660524841]
- 0:-50.2291380390359
- 1:66.05214660524841
1206: [-50.22896848403307, 66.05215112312321]
- 0:-50.22896848403307
- 1:66.05215112312321
1207: [-50.22881695514188, 66.05215999653078]
- 0:-50.22881695514188
- 1:66.05215999653078
1208: [-50.22868759151458, 66.05217340356877]
- 0:-50.22868759151458
- 1:66.05217340356877
1209: [-50.22862518573765, 66.05218680472713]
- 0:-50.22862518573765
- 1:66.05218680472713
1210: [-50.228571732314116, 66.05219571009931]
- 0:-50.228571732314116
- 1:66.05219571009931
1211: [-50.22852274283838, 66.05220907371857]
- 0:-50.22852274283838
- 1:66.05220907371857
1212: [-50.228478016537295, 66.05222243365371]
- 0:-50.228478016537295
- 1:66.05222243365371
1213: [-50.228438034368416, 66.05223582840975]
- 0:-50.228438034368416
- 1:66.05223582840975
1214: [-50.22840231538834, 66.05224921949075]
- 0:-50.22840231538834
- 1:66.05224921949075
1215: [-50.22836662953683, 66.05226702075888]
- 0:-50.22836662953683
- 1:66.05226702075888
1216: [-50.22833983842008, 66.05228932837638]
- 0:-50.22833983842008
- 1:66.05228932837638
1217: [-50.2283175907184, 66.05230720889223]
- 0:-50.2283175907184
- 1:66.05230720889223
1218: [-50.22829520856554, 66.05232944786198]
- 0:-50.22829520856554
- 1:66.05232944786198
1219: [-50.228282001396465, 66.0523517697549]
- 0:-50.228282001396465
- 1:66.0523517697549
1220: [-50.22826851397973, 66.05237851508724]
- 0:-50.22826851397973
- 1:66.05237851508724
1221: [-50.22826403399869, 66.05240529160645]
- 0:-50.22826403399869
- 1:66.05240529160645
1222: [-50.228259554010066, 66.05243206812834]
- 0:-50.228259554010066
- 1:66.05243206812834
1223: [-50.22826839505685, 66.05249892739434]
- 0:-50.22826839505685
- 1:66.05249892739434
1224: [-50.22829070767439, 66.0525702761471]
- 0:-50.22829070767439
- 1:66.0525702761471
1225: [-50.22832202794878, 66.05264165609886]
- 0:-50.22832202794878
- 1:66.05264165609886
1226: [-50.2283710615182, 66.05271740514421]
- 0:-50.2283710615182
- 1:66.05271740514421
1227: [-50.22857624971463, 66.05302066598898]
- 0:-50.22857624971463
- 1:66.05302066598898
1228: [-50.2286519658351, 66.0531454625044]
- 0:-50.2286519658351
- 1:66.0531454625044
1229: [-50.228683086916945, 66.05321238058504]
- 0:-50.228683086916945
- 1:66.05321238058504
1230: [-50.2287054255728, 66.05327031712778]
- 0:-50.2287054255728
- 1:66.05327031712778
1231: [-50.22872346770515, 66.05332384713756]
- 0:-50.22872346770515
- 1:66.05332384713756
1232: [-50.22873218875393, 66.0533773592451]
- 0:-50.22873218875393
- 1:66.0533773592451
1233: [-50.228741113036854, 66.05350221342194]
- 0:-50.228741113036854
- 1:66.05350221342194
1234: [-50.228736766135206, 66.05362704018196]
- 0:-50.228736766135206
- 1:66.05362704018196
1235: [-50.22871888948915, 66.0537563797109]
- 0:-50.22871888948915
- 1:66.0537563797109
1236: [-50.22869217235397, 66.05388573988824]
- 0:-50.22869217235397
- 1:66.05388573988824
1237: [-50.22865190334989, 66.05401949610584]
- 0:-50.22865190334989
- 1:66.05401949610584
1238: [-50.228602939359554, 66.05415320797587]
- 0:-50.228602939359554
- 1:66.05415320797587
1239: [-50.22854061249577, 66.0542914843328]
- 0:-50.22854061249577
- 1:66.0542914843328
1240: [-50.22846910933717, 66.05442967781704]
- 0:-50.22846910933717
- 1:66.05442967781704
1241: [-50.22837992435819, 66.0545679124561]
- 0:-50.22837992435819
- 1:66.0545679124561
1242: [-50.22828636226645, 66.05471062598289]
- 0:-50.22828636226645
- 1:66.05471062598289
1243: [-50.22817932661281, 66.05484884998944]
- 0:-50.22817932661281
- 1:66.05484884998944
1244: [-50.228063336531086, 66.05499156974027]
- 0:-50.228063336531086
- 1:66.05499156974027
1245: [-50.22793865033938, 66.05513424500597]
- 0:-50.22793865033938
- 1:66.05513424500597
1246: [-50.22780037738701, 66.05527690587742]
- 0:-50.22780037738701
- 1:66.05527690587742
1247: [-50.22765322910532, 66.05541517692528]
- 0:-50.22765322910532
- 1:66.05541517692528
1248: [-50.227497070881455, 66.05555341662232]
- 0:-50.227497070881455
- 1:66.05555341662232
1249: [-50.22735432114147, 66.05567379611101]
- 0:-50.22735432114147
- 1:66.05567379611101
1250: [-50.227202729195156, 66.05579419596341]
- 0:-50.227202729195156
- 1:66.05579419596341
1251: [-50.228357847355916, 66.05580310742006]
- 0:-50.228357847355916
- 1:66.05580310742006
1252: [-50.22833986538157, 66.05633820814995]
- 0:-50.22833986538157
- 1:66.05633820814995
1253: [-50.22900422812039, 66.05634266945471]
- 0:-50.22900422812039
- 1:66.05634266945471
1254: [-50.22899528758541, 66.05661468897557]
- 0:-50.22899528758541
- 1:66.05661468897557
1255: [-50.229655191525495, 66.0566146885147]
- 0:-50.229655191525495
- 1:66.0566146885147
1256: [-50.22965083470967, 66.05688669147018]
- 0:-50.22965083470967
- 1:66.05688669147018
1257: [-50.23097511882637, 66.05689113845565]
- 0:-50.23097511882637
- 1:66.05689113845565
1258: [-50.23096619754056, 66.05716315882465]
- 0:-50.23096619754056
- 1:66.05716315882465
1259: [-50.23162611268265, 66.05716314799942]
- 0:-50.23162611268265
- 1:66.05716314799942
1260: [-50.23161280473667, 66.05770264575699]
- 0:-50.23161280473667
- 1:66.05770264575699
1261: [-50.23293729196076, 66.05770712386082]
- 0:-50.23293729196076
- 1:66.05770712386082
1262: [-50.23292838985885, 66.0579791453699]
- 0:-50.23292838985885
- 1:66.0579791453699
1263: [-50.23425257462103, 66.05798362282681]
- 0:-50.23425257462103
- 1:66.05798362282681
1264: [-50.234230394189964, 66.05879073517757]
- 0:-50.234230394189964
- 1:66.05879073517757
1265: [-50.23489023329696, 66.05879518258817]
- 0:-50.23489023329696
- 1:66.05879518258817
1266: [-50.234908200933795, 66.05825559962916]
- 0:-50.234908200933795
- 1:66.05825559962916
1267: [-50.235568026904296, 66.05826004337317]
- 0:-50.235568026904296
- 1:66.05826004337317
1268: [-50.23557695941155, 66.05799254825398]
- 0:-50.23557695941155
- 1:66.05799254825398
1269: [-50.23823009952643, 66.0580058776122]
- 0:-50.23823009952643
- 1:66.0580058776122
1270: [-50.238243592915765, 66.05746636452416]
- 0:-50.238243592915765
- 1:66.05746636452416
1271: [-50.23890782939374, 66.05747083820812]
- 0:-50.23890782939374
- 1:66.05747083820812
1272: [-50.23891240932311, 66.05719882052908]
- 0:-50.23891240932311
- 1:66.05719882052908
1273: [-50.240241181608, 66.05720774388102]
- 0:-50.240241181608
- 1:66.05720774388102
1274: [-50.24022342767871, 66.05774285059577]
- 0:-50.24022342767871
- 1:66.05774285059577
1275: [-50.23955890724504, 66.05774280745102]
- 0:-50.23955890724504
- 1:66.05774280745102
1276: [-50.239554444564654, 66.05801035048339]
- 0:-50.239554444564654
- 1:66.05801035048339
1277: [-50.23889004992997, 66.05800594515979]
- 0:-50.23889004992997
- 1:66.05800594515979
1278: [-50.23888103824813, 66.05827791601041]
- 0:-50.23888103824813
- 1:66.05827791601041
1279: [-50.236232451848544, 66.05826458316383]
- 0:-50.236232451848544
- 1:66.05826458316383
1280: [-50.23621465563364, 66.05880410148144]
- 0:-50.23621465563364
- 1:66.05880410148144
1281: [-50.23687903667167, 66.05880411086392]
- 0:-50.23687903667167
- 1:66.05880411086392
1282: [-50.236870005441986, 66.05907608233618]
- 0:-50.236870005441986
- 1:66.05907608233618
1283: [-50.23753439236097, 66.05907608826104]
- 0:-50.23753439236097
- 1:66.05907608826104
1284: [-50.23752553517057, 66.0593481118445]
- 0:-50.23752553517057
- 1:66.0593481118445
1285: [-50.238189927971504, 66.05934811431082]
- 0:-50.238189927971504
- 1:66.05934811431082
1286: [-50.23815426544586, 66.06042722279506]
- 0:-50.23815426544586
- 1:66.06042722279506
1287: [-50.236829914804154, 66.06041825903269]
- 0:-50.236829914804154
- 1:66.06041825903269
1288: [-50.23683883507786, 66.06015076143036]
- 0:-50.23683883507786
- 1:66.06015076143036
1289: [-50.2361745333437, 66.06014627632285]
- 0:-50.2361745333437
- 1:66.06014627632285
1290: [-50.23616116837303, 66.06068584652833]
- 0:-50.23616116837303
- 1:66.06068584652833
1291: [-50.23549685341383, 66.06068135773023]
- 0:-50.23549685341383
- 1:66.06068135773023
1292: [-50.23548780883484, 66.06095333108539]
- 0:-50.23548780883484
- 1:66.06095333108539
1293: [-50.23283912588368, 66.06093997633845]
- 0:-50.23283912588368
- 1:66.06093997633845
1294: [-50.2328301891163, 66.06120759102002]
- 0:-50.2328301891163
- 1:66.06120759102002
1295: [-50.227532773464674, 66.06118082876696]
- 0:-50.227532773464674
- 1:66.06118082876696
1296: [-50.2275237640347, 66.06144832632047]
- 0:-50.2275237640347
- 1:66.06144832632047
1297: [-50.226199425889455, 66.06144389314302]
- 0:-50.226199425889455
- 1:66.06144389314302
1298: [-50.22619057132118, 66.06171144255973]
- 0:-50.22619057132118
- 1:66.06171144255973
1299: [-50.224866218538075, 66.06170699514631]
- 0:-50.224866218538075
- 1:66.06170699514631
1300: [-50.224857351202466, 66.06197454468172]
- 0:-50.224857351202466
- 1:66.06197454468172
1301: [-50.218891038473664, 66.06194328380258]
- 0:-50.218891038473664
- 1:66.06194328380258
1302: [-50.21888657802349, 66.06221529164796]
- 0:-50.21888657802349
- 1:66.06221529164796
1303: [-50.218222235791366, 66.06221082730272]
- 0:-50.218222235791366
- 1:66.06221082730272
1304: [-50.21821330477626, 66.06247837655789]
- 0:-50.21821330477626
- 1:66.06247837655789
1305: [-50.21556448924074, 66.06246500410491]
- 0:-50.21556448924074
- 1:66.06246500410491
1306: [-50.21557344565695, 66.06219745519316]
- 0:-50.21557344565695
- 1:66.06219745519316
1307: [-50.214249074378486, 66.06219301158492]
- 0:-50.214249074378486
- 1:66.06219301158492
1308: [-50.21423113607584, 66.06272810935668]
- 0:-50.21423113607584
- 1:66.06272810935668
1309: [-50.21555573159399, 66.06273701544013]
- 0:-50.21555573159399
- 1:66.06273701544013
1310: [-50.2155467750407, 66.06300456493106]
- 0:-50.2155467750407
- 1:66.06300456493106
1311: [-50.21621113811312, 66.06300904365011]
- 0:-50.21621113811312
- 1:66.06300904365011
1312: [-50.21620218786153, 66.06327659351557]
- 0:-50.21620218786153
- 1:66.06327659351557
1313: [-50.21686212432164, 66.06328102028246]
- 0:-50.21686212432164
- 1:66.06328102028246
1314: [-50.21684870038981, 66.06382057994524]
- 0:-50.21684870038981
- 1:66.06382057994524
1315: [-50.21750861769746, 66.06382059297411]
- 0:-50.21750861769746
- 1:66.06382059297411
1316: [-50.21749971147585, 66.06409255427589]
- 0:-50.21749971147585
- 1:66.06409255427589
1317: [-50.21816409900188, 66.06409702275005]
- 0:-50.21816409900188
- 1:66.06409702275005
1318: [-50.21815516754596, 66.06436457403007]
- 0:-50.21815516754596
- 1:66.06436457403007
1319: [-50.22146840127759, 66.06438240841406]
- 0:-50.22146840127759
- 1:66.06438240841406
1320: [-50.22147726879257, 66.06411044630025]
- 0:-50.22147726879257
- 1:66.06411044630025
1321: [-50.22280177340939, 66.06411934078747]
- 0:-50.22280177340939
- 1:66.06411934078747
1322: [-50.222797151545436, 66.06438688920545]
- 0:-50.222797151545436
- 1:66.06438688920545
1323: [-50.22412152147095, 66.06439583473306]
- 0:-50.22412152147095
- 1:66.06439583473306
1324: [-50.22412593041521, 66.06412382403167]
- 0:-50.22412593041521
- 1:66.06412382403167
1325: [-50.22479031382473, 66.06412825720308]
- 0:-50.22479031382473
- 1:66.06412825720308
1326: [-50.22480833025357, 66.06358873016734]
- 0:-50.22480833025357
- 1:66.06358873016734
1327: [-50.22613265938889, 66.06359765409731]
- 0:-50.22613265938889
- 1:66.06359765409731
1328: [-50.22614151438959, 66.0633301026554]
- 0:-50.22614151438959
- 1:66.0633301026554
1329: [-50.22680141186409, 66.0633300664294]
- 0:-50.22680141186409
- 1:66.0633300664294
1330: [-50.22681042810782, 66.06306256693891]
- 0:-50.22681042810782
- 1:66.06306256693891
1331: [-50.22747478429642, 66.0630669856489]
- 0:-50.22747478429642
- 1:66.0630669856489
1332: [-50.22748817065276, 66.06252747710803]
- 0:-50.22748817065276
- 1:66.06252747710803
1333: [-50.22815251361363, 66.06253189212742]
- 0:-50.22815251361363
- 1:66.06253189212742
1334: [-50.22817046522675, 66.06199236771843]
- 0:-50.22817046522675
- 1:66.06199236771843
1335: [-50.22883038439413, 66.06199684767677]
- 0:-50.22883038439413
- 1:66.06199684767677
1336: [-50.228839326167325, 66.06172482227652]
- 0:-50.228839326167325
- 1:66.06172482227652
1337: [-50.2314879282629, 66.06173821071354]
- 0:-50.2314879282629
- 1:66.06173821071354
1338: [-50.231483422855824, 66.06201016771226]
- 0:-50.231483422855824
- 1:66.06201016771226
1339: [-50.23346771738158, 66.06201911705762]
- 0:-50.23346771738158
- 1:66.06201911705762
1340: [-50.23345893254956, 66.06228666799068]
- 0:-50.23345893254956
- 1:66.06228666799068
1341: [-50.23611200601523, 66.0623000064241]
- 0:-50.23611200601523
- 1:66.0623000064241
1342: [-50.23612093305264, 66.06203250688341]
- 0:-50.23612093305264
- 1:66.06203250688341
1343: [-50.2367808473709, 66.06203694476642]
- 0:-50.2367808473709
- 1:66.06203694476642
1344: [-50.236798778026824, 66.06149735428707]
- 0:-50.236798778026824
- 1:66.06149735428707
1345: [-50.23613429840577, 66.06149293375842]
- 0:-50.23613429840577
- 1:66.06149293375842
1346: [-50.236143371106394, 66.0612253700917]
- 0:-50.236143371106394
- 1:66.0612253700917
1347: [-50.236807809791216, 66.06122538017068]
- 0:-50.236807809791216
- 1:66.06122538017068
1348: [-50.236812130432696, 66.06095778218095]
- 0:-50.236812130432696
- 1:66.06095778218095
1349: [-50.237476618643655, 66.06096231574283]
- 0:-50.237476618643655
- 1:66.06096231574283
1350: [-50.23745436488452, 66.06176938713627]
- 0:-50.23745436488452
- 1:66.06176938713627
1351: [-50.2381142720109, 66.06177381792268]
- 0:-50.2381142720109
- 1:66.06177381792268
1352: [-50.23810521824363, 66.0620413824275]
- 0:-50.23810521824363
- 1:66.0620413824275
1353: [-50.238769563636176, 66.06204585752943]
- 0:-50.238769563636176
- 1:66.06204585752943
1354: [-50.23876082964802, 66.062313409143]
- 0:-50.23876082964802
- 1:66.062313409143
1355: [-50.240085064585585, 66.06231789084528]
- 0:-50.240085064585585
- 1:66.06231789084528
1356: [-50.2400806430599, 66.0625898492473]
- 0:-50.2400806430599
- 1:66.0625898492473
1357: [-50.241405056617424, 66.06259436873393]
- 0:-50.241405056617424
- 1:66.06259436873393
1358: [-50.24139606975946, 66.06286634492822]
- 0:-50.24139606975946
- 1:66.06286634492822
1359: [-50.24272032662644, 66.06287079879348]
- 0:-50.24272032662644
- 1:66.06287079879348
1360: [-50.24271152027441, 66.06314282718031]
- 0:-50.24271152027441
- 1:66.06314282718031
1361: [-50.24205156231918, 66.06313830379841]
- 0:-50.24205156231918
- 1:66.06313830379841
1362: [-50.242042714059984, 66.06340592199169]
- 0:-50.242042714059984
- 1:66.06340592199169
1363: [-50.2427070890149, 66.06341037631611]
- 0:-50.2427070890149
- 1:66.06341037631611
1364: [-50.24269822521572, 66.06367787815782]
- 0:-50.24269822521572
- 1:66.06367787815782
1365: [-50.24335802778197, 66.06368234647307]
- 0:-50.24335802778197
- 1:66.06368234647307
1366: [-50.243349170242325, 66.06394984868822]
- 0:-50.243349170242325
- 1:66.06394984868822
1367: [-50.24401372484685, 66.06395434785533]
- 0:-50.24401372484685
- 1:66.06395434785533
1368: [-50.24400472779103, 66.06422191544729]
- 0:-50.24400472779103
- 1:66.06422191544729
1369: [-50.244669120712835, 66.06422635943882]
- 0:-50.244669120712835
- 1:66.06422635943882
1370: [-50.244651174965554, 66.06476590608852]
- 0:-50.244651174965554
- 1:66.06476590608852
1371: [-50.245315690240986, 66.0647658712825]
- 0:-50.245315690240986
- 1:66.0647658712825
1372: [-50.245306595834485, 66.06503791534983]
- 0:-50.245306595834485
- 1:66.06503791534983
1373: [-50.24597117489249, 66.06504240424665]
- 0:-50.24597117489249
- 1:66.06504240424665
1374: [-50.24596234250089, 66.06530990824942]
- 0:-50.24596234250089
- 1:66.06530990824942
1375: [-50.24728656197734, 66.06531437930066]
- 0:-50.24728656197734
- 1:66.06531437930066
1376: [-50.24730434711336, 66.0647793062384]
- 0:-50.24730434711336
- 1:66.0647793062384
1377: [-50.24929310980564, 66.06478823404306]
- 0:-50.24929310980564
- 1:66.06478823404306
1378: [-50.2492843092513, 66.06505573818237]
- 0:-50.2492843092513
- 1:66.06505573818237
1379: [-50.24994413955573, 66.06506017185056]
- 0:-50.24994413955573
- 1:66.06506017185056
1380: [-50.24993072877612, 66.06559976895663]
- 0:-50.24993072877612
- 1:66.06559976895663
1381: [-50.25059073915521, 66.06560425099941]
- 0:-50.25059073915521
- 1:66.06560425099941
1382: [-50.25057728238362, 66.06613932224295]
- 0:-50.25057728238362
- 1:66.06613932224295
1383: [-50.251237305043304, 66.06614380094356]
- 0:-50.251237305043304
- 1:66.06614380094356
1384: [-50.25123278848227, 66.0664113023497]
- 0:-50.25123278848227
- 1:66.0664113023497
1385: [-50.25189281709136, 66.06641577762113]
- 0:-50.25189281709136
- 1:66.06641577762113
1386: [-50.2518795902105, 66.06695531307585]
- 0:-50.2518795902105
- 1:66.06695531307585
1387: [-50.25253942641116, 66.06695532281942]
- 0:-50.25253942641116
- 1:66.06695532281942
1388: [-50.25252589867149, 66.06749487288428]
- 0:-50.25252589867149
- 1:66.06749487288428
1389: [-50.25120173015312, 66.0674903918559]
- 0:-50.25120173015312
- 1:66.0674903918559
1390: [-50.251166055084695, 66.06856509325824]
- 0:-50.251166055084695
- 1:66.06856509325824
1391: [-50.25183040024054, 66.06856956475133]
- 0:-50.25183040024054
- 1:66.06856956475133
1392: [-50.251821456565985, 66.06883702155925]
- 0:-50.251821456565985
- 1:66.06883702155925
1393: [-50.252485975424385, 66.06884154131438]
- 0:-50.252485975424385
- 1:66.06884154131438
1394: [-50.25247689222844, 66.06910906351037]
- 0:-50.25247689222844
- 1:66.06910906351037
1395: [-50.253141249360816, 66.06911352810162]
- 0:-50.253141249360816
- 1:66.06911352810162
1396: [-50.25312346814667, 66.06965308747534]
- 0:-50.25312346814667
- 1:66.06965308747534
1397: [-50.25378794626385, 66.0696530731664]
- 0:-50.25378794626385
- 1:66.0696530731664
1398: [-50.25376110683697, 66.07046015768229]
- 0:-50.25376110683697
- 1:66.07046015768229
1399: [-50.25442566290162, 66.07046466734455]
- 0:-50.25442566290162
- 1:66.07046466734455
1400: [-50.254416598407516, 66.07073219152993]
- 0:-50.254416598407516
- 1:66.07073219152993
1401: [-50.2550809927332, 66.07073664603021]
- 0:-50.2550809927332
- 1:66.07073664603021
1402: [-50.25507224810294, 66.07100415728284]
- 0:-50.25507224810294
- 1:66.07100415728284
1403: [-50.25441217266119, 66.07100422543206]
- 0:-50.25441217266119
- 1:66.07100422543206
1404: [-50.25438103418186, 66.07207887406402]
- 0:-50.25438103418186
- 1:66.07207887406402
1405: [-50.25504102674558, 66.07208328180211]
- 0:-50.25504102674558
- 1:66.07208328180211
1406: [-50.25501865803324, 66.07289042182514]
- 0:-50.25501865803324
- 1:66.07289042182514
1407: [-50.254354212400294, 66.07288596667146]
- 0:-50.254354212400294
- 1:66.07288596667146
1408: [-50.25434086732762, 66.07342546497905]
- 0:-50.25434086732762
- 1:66.07342546497905
1409: [-50.25500074591791, 66.07342993814693]
- 0:-50.25500074591791
- 1:66.07342993814693
1410: [-50.25498737598031, 66.07396502717353]
- 0:-50.25498737598031
- 1:66.07396502717353
1411: [-50.25432310992037, 66.0739650340027]
- 0:-50.25432310992037
- 1:66.0739650340027
1412: [-50.25431404465149, 66.07423256193825]
- 0:-50.25431404465149
- 1:66.07423256193825
1413: [-50.25365414658445, 66.07422808501843]
- 0:-50.25365414658445
- 1:66.07422808501843
1414: [-50.25363637600142, 66.07476765561083]
- 0:-50.25363637600142
- 1:66.07476765561083
1415: [-50.25297188466153, 66.07476319281359]
- 0:-50.25297188466153
- 1:66.07476319281359
1416: [-50.25298096277541, 66.07449566447634]
- 0:-50.25298096277541
- 1:66.07449566447634
1417: [-50.25232091166009, 66.07449124548006]
- 0:-50.25232091166009
- 1:66.07449124548006
1418: [-50.25228973120956, 66.07557031883033]
- 0:-50.25228973120956
- 1:66.07557031883033
1419: [-50.24963663561874, 66.07555691362896]
- 0:-50.24963663561874
- 1:66.07555691362896
1420: [-50.249618583025395, 66.07609202374785]
- 0:-50.249618583025395
- 1:66.07609202374785
1421: [-50.24895869604329, 66.07609204907513]
- 0:-50.24895869604329
- 1:66.07609204907513
1422: [-50.2489498930582, 66.07635956532975]
- 0:-50.2489498930582
- 1:66.07635956532975
1423: [-50.24960967720132, 66.07636401573407]
- 0:-50.24960967720132
- 1:66.07636401573407
1424: [-50.24960531506559, 66.07663157971174]
- 0:-50.24960531506559
- 1:66.07663157971174
1425: [-50.24894094413441, 66.07662714688217]
- 0:-50.24894094413441
- 1:66.07662714688217
1426: [-50.248891917785656, 66.07824573985674]
- 0:-50.248891917785656
- 1:66.07824573985674
1427: [-50.248231942750294, 66.0782413503885]
- 0:-50.248231942750294
- 1:66.0782413503885
1428: [-50.24824089837569, 66.07797376719036]
- 0:-50.24824089837569
- 1:66.07797376719036
1429: [-50.24492317811998, 66.0779559367889]
- 0:-50.24492317811998
- 1:66.0779559367889
1430: [-50.24491433654403, 66.07822345454711]
- 0:-50.24491433654403
- 1:66.07822345454711
1431: [-50.24425435911942, 66.07821904403984]
- 0:-50.24425435911942
- 1:66.07821904403984
1432: [-50.244258772209925, 66.07795147882605]
- 0:-50.244258772209925
- 1:66.07795147882605
1433: [-50.24227002255792, 66.07794254198504]
- 0:-50.24227002255792
- 1:66.07794254198504
1434: [-50.242279035417965, 66.07767495985175]
- 0:-50.242279035417965
- 1:66.07767495985175
1435: [-50.240954667486086, 66.07766605996672]
- 0:-50.240954667486086
- 1:66.07766605996672
1436: [-50.24096354708929, 66.0773985432971]
- 0:-50.24096354708929
- 1:66.0773985432971
1437: [-50.23963475559609, 66.07738958182308]
- 0:-50.23963475559609
- 1:66.07738958182308
1438: [-50.239643647880705, 66.07712206561396]
- 0:-50.239643647880705
- 1:66.07712206561396
1439: [-50.23831930232023, 66.07711313791545]
- 0:-50.23831930232023
- 1:66.07711313791545
1440: [-50.23829253292599, 66.07792468993055]
- 0:-50.23829253292599
- 1:66.07792468993055
1441: [-50.2376325577239, 66.07792024443621]
- 0:-50.2376325577239
- 1:66.07792024443621
1442: [-50.237596821949786, 66.07899490583084]
- 0:-50.237596821949786
- 1:66.07899490583084
1443: [-50.23693702340235, 66.07899491891115]
- 0:-50.23693702340235
- 1:66.07899491891115
1444: [-50.236928105269456, 66.07926243679564]
- 0:-50.236928105269456
- 1:66.07926243679564
1445: [-50.233614980910815, 66.07924457272416]
- 0:-50.233614980910815
- 1:66.07924457272416
1446: [-50.23361934988394, 66.07897707234329]
- 0:-50.23361934988394
- 1:66.07897707234329
1447: [-50.23229507523074, 66.07896813188101]
- 0:-50.23229507523074
- 1:66.07896813188101
1448: [-50.23230403783477, 66.07870061488842]
- 0:-50.23230403783477
- 1:66.07870061488842
1449: [-50.23097966222286, 66.07869613620537]
- 0:-50.23097966222286
- 1:66.07869613620537
1450: [-50.23098416874048, 66.0784241609906]
- 0:-50.23098416874048
- 1:66.0784241609906
1451: [-50.228995397755895, 66.078415245784]
- 0:-50.228995397755895
- 1:66.078415245784
1452: [-50.22900422431855, 66.07814767804963]
- 0:-50.22900422431855
- 1:66.07814767804963
1453: [-50.22833982396208, 66.07814325201068]
- 0:-50.22833982396208
- 1:66.07814325201068
1454: [-50.228348769411376, 66.07787120900956]
- 0:-50.228348769411376
- 1:66.07787120900956
1455: [-50.22768884327845, 66.07787123830363]
- 0:-50.22768884327845
- 1:66.07787123830363
1456: [-50.22769321433381, 66.07759921253735]
- 0:-50.22769321433381
- 1:66.07759921253735
1457: [-50.22703343998073, 66.07759917341242]
- 0:-50.22703343998073
- 1:66.07759917341242
1458: [-50.22704225228109, 66.07732719615488]
- 0:-50.22704225228109
- 1:66.07732719615488
1459: [-50.225713520297184, 66.07732273052554]
- 0:-50.225713520297184
- 1:66.07732273052554
1460: [-50.22572237842399, 66.07705516436995]
- 0:-50.22572237842399
- 1:66.07705516436995
1461: [-50.22505800166281, 66.0770507210146]
- 0:-50.22505800166281
- 1:66.0770507210146
1462: [-50.22506683327047, 66.07677874460128]
- 0:-50.22506683327047
- 1:66.07677874460128
1463: [-50.224406930045596, 66.0767787566726]
- 0:-50.224406930045596
- 1:66.0767787566726
1464: [-50.22441591395696, 66.07650671565472]
- 0:-50.22441591395696
- 1:66.07650671565472
1465: [-50.22308707081961, 66.0765022872588]
- 0:-50.22308707081961
- 1:66.0765022872588
1466: [-50.223096067625534, 66.07623024670859]
- 0:-50.223096067625534
- 1:66.07623024670859
1467: [-50.22243159504175, 66.07623026508796]
- 0:-50.22243159504175
- 1:66.07623026508796
1468: [-50.22244045232411, 66.07595828989724]
- 0:-50.22244045232411
- 1:66.07595828989724
1469: [-50.22177609926366, 66.07595382922561]
- 0:-50.22177609926366
- 1:66.07595382922561
1470: [-50.22178499525906, 66.07568626502795]
- 0:-50.22178499525906
- 1:66.07568626502795
1471: [-50.2211249150421, 66.07568179751134]
- 0:-50.2211249150421
- 1:66.07568179751134
1472: [-50.221133985007334, 66.07541428544302]
- 0:-50.221133985007334
- 1:66.07541428544302
1473: [-50.220469476233845, 66.07540976613681]
- 0:-50.220469476233845
- 1:66.07540976613681
1474: [-50.22047855250235, 66.07514225444287]
- 0:-50.22047855250235
- 1:66.07514225444287
1475: [-50.21981404972589, 66.07513773168544]
- 0:-50.21981404972589
- 1:66.07513773168544
1476: [-50.219822986360185, 66.07487028534258]
- 0:-50.219822986360185
- 1:66.07487028534258
1477: [-50.21915848957924, 66.07486575913322]
- 0:-50.21915848957924
- 1:66.07486575913322
1478: [-50.219167410758345, 66.07459819642939]
- 0:-50.219167410758345
- 1:66.07459819642939
1479: [-50.21850308767106, 66.0745937185277]
- 0:-50.21850308767106
- 1:66.0745937185277
1480: [-50.21851186921765, 66.07432622117254]
- 0:-50.21851186921765
- 1:66.07432622117254
1481: [-50.21785198647664, 66.0743217882967]
- 0:-50.21785198647664
- 1:66.0743217882967
1482: [-50.217860920224595, 66.07405422633968]
- 0:-50.217860920224595
- 1:66.07405422633968
1483: [-50.217196609127136, 66.07404974156044]
- 0:-50.217196609127136
- 1:66.07404974156044
1484: [-50.217214457600505, 66.0735102081124]
- 0:-50.217214457600505
- 1:66.0735102081124
1485: [-50.21588559944612, 66.07350576880253]
- 0:-50.21588559944612
- 1:66.07350576880253
1486: [-50.21589449901373, 66.07323368067011]
- 0:-50.21589449901373
- 1:66.07323368067011
1487: [-50.214570086070715, 66.07322927596564]
- 0:-50.214570086070715
- 1:66.07322927596564
1488: [-50.21457902022985, 66.07295730503414]
- 0:-50.21457902022985
- 1:66.07295730503414
1489: [-50.212590330013754, 66.07294837728804]
- 0:-50.212590330013754
- 1:66.07294837728804
1490: [-50.21258134563221, 66.07321593740106]
- 0:-50.21258134563221
- 1:66.07321593740106
1491: [-50.21324578620439, 66.07322038166889]
- 0:-50.21324578620439
- 1:66.07322038166889
1492: [-50.213236839061636, 66.07349235272129]
- 0:-50.213236839061636
- 1:66.07349235272129
1493: [-50.21190794457714, 66.07348346047078]
- 0:-50.21190794457714
- 1:66.07348346047078
1494: [-50.211925895435776, 66.07294392956881]
- 0:-50.211925895435776
- 1:66.07294392956881
1495: [-50.2112659252578, 66.07294393757455]
- 0:-50.2112659252578
- 1:66.07294393757455
1496: [-50.211279286857746, 66.07240430752572]
- 0:-50.211279286857746
- 1:66.07240430752572
1497: [-50.21061929834798, 66.0723999016348]
- 0:-50.21061929834798
- 1:66.0723999016348
1498: [-50.21062386756499, 66.07213229391236]
- 0:-50.21062386756499
- 1:66.07213229391236
1499: [-50.20929946803815, 66.07212342300393]
- 0:-50.20929946803815
- 1:66.07212342300393
1500: [-50.209308483968755, 66.07185586447464]
- 0:-50.209308483968755
- 1:66.07185586447464
1501: [-50.20864407299247, 66.0718513994342]
- 0:-50.20864407299247
- 1:66.0718513994342
1502: [-50.2086707956821, 66.07104432850075]
- 0:-50.2086707956821
- 1:66.07104432850075
1503: [-50.20999514493607, 66.07105320576682]
- 0:-50.20999514493607
- 1:66.07105320576682
1504: [-50.210004123851874, 66.07078123778663]
- 0:-50.210004123851874
- 1:66.07078123778663
1505: [-50.21132831274435, 66.07079016578238]
- 0:-50.21132831274435
- 1:66.07079016578238
1506: [-50.211323895928885, 66.07105770715685]
- 0:-50.211323895928885
- 1:66.07105770715685
1507: [-50.21330833419939, 66.07106659245596]
- 0:-50.21330833419939
- 1:66.07106659245596
1508: [-50.21331716580265, 66.07079909953208]
- 0:-50.21331716580265
- 1:66.07079909953208
1509: [-50.21398154831798, 66.07080353952234]
- 0:-50.21398154831798
- 1:66.07080353952234
1510: [-50.21396363695371, 66.07134306629541]
- 0:-50.21396363695371
- 1:66.07134306629541
1511: [-50.2152881290816, 66.07134752868048]
- 0:-50.2152881290816
- 1:66.07134752868048
1512: [-50.21528360441908, 66.0716151359727]
- 0:-50.21528360441908
- 1:66.0716151359727
1513: [-50.215943570981004, 66.07161951706661]
- 0:-50.215943570981004
- 1:66.07161951706661
1514: [-50.215939052663295, 66.07188712470979]
- 0:-50.215939052663295
- 1:66.07188712470979
1515: [-50.21461026968487, 66.07188267226294]
- 0:-50.21461026968487
- 1:66.07188267226294
1516: [-50.21460145055412, 66.07215016651135]
- 0:-50.21460145055412
- 1:66.07215016651135
1517: [-50.21593013169357, 66.07215909464135]
- 0:-50.21593013169357
- 1:66.07215909464135
1518: [-50.21591225819823, 66.07269862484003]
- 0:-50.21591225819823
- 1:66.07269862484003
1519: [-50.21524783199733, 66.07269419485422]
- 0:-50.21524783199733
- 1:66.07269419485422
1520: [-50.21523901903486, 66.07296169005365]
- 0:-50.21523901903486
- 1:66.07296169005365
1521: [-50.21656790554746, 66.07297066339372]
- 0:-50.21656790554746
- 1:66.07297066339372
1522: [-50.216581332265804, 66.07243108392198]
- 0:-50.216581332265804
- 1:66.07243108392198
1523: [-50.218569998007894, 66.07244006454418]
- 0:-50.218569998007894
- 1:66.07244006454418
1524: [-50.21856110273182, 66.07271203540844]
- 0:-50.21856110273182
- 1:66.07271203540844
1525: [-50.21988991875894, 66.0727164459905]
- 0:-50.21988991875894
- 1:66.0727164459905
1526: [-50.21988100439394, 66.07298400676088]
- 0:-50.21988100439394
- 1:66.07298400676088
1527: [-50.22186958813568, 66.07299741054456]
- 0:-50.22186958813568
- 1:66.07299741054456
1528: [-50.22186069278107, 66.07326497186236]
- 0:-50.22186069278107
- 1:66.07326497186236
1529: [-50.222525295404836, 66.07326941845926]
- 0:-50.222525295404836
- 1:66.07326941845926
1530: [-50.22251623866294, 66.07353692839668]
- 0:-50.22251623866294
- 1:66.07353692839668
1531: [-50.22317626715151, 66.07354138823462]
- 0:-50.22317626715151
- 1:66.07354138823462
1532: [-50.22317181861727, 66.07380899858622]
- 0:-50.22317181861727
- 1:66.07380899858622
1533: [-50.22449615367611, 66.07381790440078]
- 0:-50.22449615367611
- 1:66.07381790440078
1534: [-50.22448711587162, 66.07408541517422]
- 0:-50.22448711587162
- 1:66.07408541517422
1535: [-50.225811429197066, 66.07408989652161]
- 0:-50.225811429197066
- 1:66.07408989652161
1536: [-50.22580703898235, 66.07436191828413]
- 0:-50.22580703898235
- 1:66.07436191828413
1537: [-50.22713150920071, 66.07436632070812]
- 0:-50.22713150920071
- 1:66.07436632070812
1538: [-50.227122551636505, 66.07463835972769]
- 0:-50.227122551636505
- 1:66.07463835972769
1539: [-50.229775688172566, 66.07465171135209]
- 0:-50.229775688172566
- 1:66.07465171135209
1540: [-50.22976686877919, 66.0749192754253]
- 0:-50.22976686877919
- 1:66.0749192754253
1541: [-50.2350686353027, 66.07494606066946]
- 0:-50.2350686353027
- 1:66.07494606066946
1542: [-50.23509095336747, 66.07413894729106]
- 0:-50.23509095336747
- 1:66.07413894729106
1543: [-50.23575542116504, 66.07414338851768]
- 0:-50.23575542116504
- 1:66.07414338851768
1544: [-50.23578215376415, 66.07333632534925]
- 0:-50.23578215376415
- 1:66.07333632534925
1545: [-50.23644213323206, 66.07333630438305]
- 0:-50.23644213323206
- 1:66.07333630438305
1546: [-50.23645981179438, 66.07280123001865]
- 0:-50.23645981179438
- 1:66.07280123001865
1547: [-50.2357955223483, 66.07279672774887]
- 0:-50.2357955223483
- 1:66.07279672774887
1548: [-50.23582225405383, 66.07198966893277]
- 0:-50.23582225405383
- 1:66.07198966893277
1549: [-50.23648209037143, 66.07199412312814]
- 0:-50.23648209037143
- 1:66.07199412312814
1550: [-50.23650002550856, 66.07145451110567]
- 0:-50.23650002550856
- 1:66.07145451110567
1551: [-50.235175652446934, 66.0714456817044]
- 0:-50.235175652446934
- 1:66.0714456817044
1552: [-50.23516675132195, 66.07171760180584]
- 0:-50.23516675132195
- 1:66.07171760180584
1553: [-50.23185374253279, 66.07169978791673]
- 0:-50.23185374253279
- 1:66.07169978791673
1554: [-50.23185813009516, 66.07143229580326]
- 0:-50.23185813009516
- 1:66.07143229580326
1555: [-50.22987375642536, 66.0714188797941]
- 0:-50.22987375642536
- 1:66.0714188797941
1556: [-50.229878308921414, 66.07115132316919]
- 0:-50.229878308921414
- 1:66.07115132316919
1557: [-50.2292183418198, 66.07114689914874]
- 0:-50.2292183418198
- 1:66.07114689914874
1558: [-50.22922716672723, 66.07087933919941]
- 0:-50.22922716672723
- 1:66.07087933919941
1559: [-50.22856277181972, 66.07087486368123]
- 0:-50.22856277181972
- 1:66.07087486368123
1560: [-50.228571770721544, 66.07060735585064]
- 0:-50.228571770721544
- 1:66.07060735585064
1561: [-50.2259185335177, 66.07059394243272]
- 0:-50.2259185335177
- 1:66.07059394243272
1562: [-50.22592739011621, 66.07032638348562]
- 0:-50.22592739011621
- 1:66.07032638348562
1563: [-50.22393869194066, 66.07031305881429]
- 0:-50.22393869194066
- 1:66.07031305881429
1564: [-50.22395644309009, 66.0697779423008]
- 0:-50.22395644309009
- 1:66.0697779423008
1565: [-50.22329223820442, 66.06977349062028]
- 0:-50.22329223820442
- 1:66.06977349062028
1566: [-50.22330112004886, 66.06950593288067]
- 0:-50.22330112004886
- 1:66.06950593288067
1567: [-50.22197667420295, 66.06949702887871]
- 0:-50.22197667420295
- 1:66.06949702887871
1568: [-50.22196781193834, 66.06976899694934]
- 0:-50.22196781193834
- 1:66.06976899694934
1569: [-50.22130329223008, 66.0697645479014]
- 0:-50.22130329223008
- 1:66.0697645479014
1570: [-50.22131230688, 66.06949251494119]
- 0:-50.22131230688
- 1:66.06949251494119
1571: [-50.2193235439305, 66.06948359252135]
- 0:-50.2193235439305
- 1:66.06948359252135
1572: [-50.21933246386221, 66.06921603558533]
- 0:-50.21933246386221
- 1:66.06921603558533
1573: [-50.218008193637466, 66.06920714128056]
- 0:-50.218008193637466
- 1:66.06920714128056
1574: [-50.21801698029216, 66.06893964977837]
- 0:-50.21801698029216
- 1:66.06893964977837
1575: [-50.21669272125666, 66.06893074158641]
- 0:-50.21669272125666
- 1:66.06893074158641
1576: [-50.2166972329984, 66.06866313706013]
- 0:-50.2166972329984
- 1:66.06866313706013
1577: [-50.21603716920976, 66.06865870862764]
- 0:-50.21603716920976
- 1:66.06865870862764
1578: [-50.21604612071545, 66.06839115298725]
- 0:-50.21604612071545
- 1:66.06839115298725
1579: [-50.215381629462, 66.06838667259034]
- 0:-50.215381629462
- 1:66.06838667259034
1580: [-50.215399513778586, 66.06784715187844]
- 0:-50.215399513778586
- 1:66.06784715187844
1581: [-50.21473523377555, 66.06784713034584]
- 0:-50.21473523377555
- 1:66.06784713034584
1582: [-50.21474399904338, 66.0675751135166]
- 0:-50.21474399904338
- 1:66.0675751135166
1583: [-50.214079579012484, 66.06757515349516]
- 0:-50.214079579012484
- 1:66.06757515349516
1584: [-50.21408866425022, 66.06730312384032]
- 0:-50.21408866425022
- 1:66.06730312384032
1585: [-50.21342866163323, 66.06730309225665]
- 0:-50.21342866163323
- 1:66.06730309225665
1586: [-50.21343302819559, 66.06703114429024]
- 0:-50.21343302819559
- 1:66.06703114429024
1587: [-50.21277314652727, 66.06702663385441]
- 0:-50.21277314652727
- 1:66.06702663385441
1588: [-50.2127819835251, 66.06675914534313]
- 0:-50.2127819835251
- 1:66.06675914534313
1589: [-50.212117696360345, 66.06675469956167]
- 0:-50.212117696360345
- 1:66.06675469956167
1590: [-50.21212651793845, 66.06648709469214]
- 0:-50.21212651793845
- 1:66.06648709469214
1591: [-50.21146223676595, 66.06648264545919]
- 0:-50.21146223676595
- 1:66.06648264545919
1592: [-50.21147108636855, 66.06621515769514]
- 0:-50.21147108636855
- 1:66.06621515769514
1593: [-50.208157954137995, 66.06619727659785]
- 0:-50.208157954137995
- 1:66.06619727659785
1594: [-50.20816698136191, 66.06592972458826]
- 0:-50.20816698136191
- 1:66.06592972458826
1595: [-50.20750697599273, 66.065925251408]
- 0:-50.20750697599273
- 1:66.065925251408
1596: [-50.2075114305341, 66.06565771589749]
- 0:-50.2075114305341
- 1:66.06565771589749
1597: [-50.20618702000387, 66.06564882703482]
- 0:-50.20618702000387
- 1:66.06564882703482
1598: [-50.206178119700034, 66.06591631353632]
- 0:-50.206178119700034
- 1:66.06591631353632
1599: [-50.20551828082925, 66.06591188160579]
- 0:-50.20551828082925
- 1:66.06591188160579
1600: [-50.20552701984015, 66.06564434341593]
- 0:-50.20552701984015
- 1:66.06564434341593
1601: [-50.20154959129112, 66.06562651171633]
- 0:-50.20154959129112
- 1:66.06562651171633
1602: [-50.20155848528337, 66.0653544989539]
- 0:-50.20155848528337
- 1:66.0653544989539
1603: [-50.20089407740512, 66.06535005854222]
- 0:-50.20089407740512
- 1:66.06535005854222
1604: [-50.20088517693456, 66.06562207121705]
- 0:-50.20088517693456
- 1:66.06562207121705
1605: [-50.20022517357137, 66.0656175595391]
- 0:-50.20022517357137
- 1:66.0656175595391
1606: [-50.20023413097035, 66.06535007409703]
- 0:-50.20023413097035
- 1:66.06535007409703
1607: [-50.199569722230436, 66.06534562662918]
- 0:-50.199569722230436
- 1:66.06534562662918
1608: [-50.19957866426125, 66.06507802482828]
- 0:-50.19957866426125
- 1:66.06507802482828
1609: [-50.198254291357, 66.06506916861179]
- 0:-50.198254291357
- 1:66.06506916861179
1610: [-50.1982632460219, 66.06480156727189]
- 0:-50.1982632460219
- 1:66.06480156727189
1611: [-50.19759884889402, 66.06479710938328]
- 0:-50.19759884889402
- 1:66.06479710938328
1612: [-50.19760766392187, 66.0645295733658]
- 0:-50.19760766392187
- 1:66.0645295733658
1613: [-50.19694327278698, 66.06452511202413]
- 0:-50.19694327278698
- 1:66.06452511202413
1614: [-50.19695221176372, 66.06425310104211]
- 0:-50.19695221176372
- 1:66.06425310104211
1615: [-50.195627902247686, 66.06424862756195]
- 0:-50.195627902247686
- 1:66.06424862756195
1616: [-50.195636736210304, 66.06398109237779]
- 0:-50.195636736210304
- 1:66.06398109237779
1617: [-50.19431240959626, 66.06397219461539]
- 0:-50.19431240959626
- 1:66.06397219461539
1618: [-50.194330220784046, 66.06343265013521]
- 0:-50.194330220784046
- 1:66.06343265013521
1619: [-50.1936658533574, 66.06342817149172]
- 0:-50.1936658533574
- 1:66.06342817149172
1620: [-50.19367470618565, 66.06316063743314]
- 0:-50.19367470618565
- 1:66.06316063743314
1621: [-50.19301034475276, 66.0631561553369]
- 0:-50.19301034475276
- 1:66.0631561553369
1622: [-50.19301920388346, 66.0628886216522]
- 0:-50.19301920388346
- 1:66.0628886216522
1623: [-50.19169512031079, 66.06288415856528]
- 0:-50.19169512031079
- 1:66.06288415856528
1624: [-50.191703797035395, 66.06261216318488]
- 0:-50.191703797035395
- 1:66.06261216318488
1625: [-50.191039447216205, 66.06260767066759]
- 0:-50.191039447216205
- 1:66.06260767066759
1626: [-50.19106619979194, 66.06180059769432]
- 0:-50.19106619979194
- 1:66.06180059769432
1627: [-50.19040630129267, 66.06179615133865]
- 0:-50.19040630129267
- 1:66.06179615133865
1628: [-50.19042406959032, 66.06126108783023]
- 0:-50.19042406959032
- 1:66.06126108783023
1629: [-50.1890952860453, 66.06125215095464]
- 0:-50.1890952860453
- 1:66.06125215095464
1630: [-50.189104182831535, 66.06098461980508]
- 0:-50.189104182831535
- 1:66.06098461980508
1631: [-50.188444302194, 66.06098016318408]
- 0:-50.188444302194
- 1:66.06098016318408
1632: [-50.18845320523817, 66.06071263240815]
- 0:-50.18845320523817
- 1:66.06071263240815
1633: [-50.186464569490845, 66.06069920762968]
- 0:-50.186464569490845
- 1:66.06069920762968
1634: [-50.186473323975505, 66.06043162560249]
- 0:-50.186473323975505
- 1:66.06043162560249
1635: [-50.18514905444037, 66.06042722353608]
- 0:-50.18514905444037
- 1:66.06042722353608
1636: [-50.18518028618156, 66.05934811922423]
- 0:-50.18518028618156
- 1:66.05934811922423
1637: [-50.184520273828184, 66.05934359027253]
- 0:-50.184520273828184
- 1:66.05934359027253
1638: [-50.184529214590754, 66.0590760617466]
- 0:-50.184529214590754
- 1:66.0590760617466
1639: [-50.18386479772196, 66.05907159645172]
- 0:-50.18386479772196
- 1:66.05907159645172
1640: [-50.183882498044255, 66.05853207835348]
- 0:-50.183882498044255
- 1:66.05853207835348
1641: [-50.1818939091255, 66.05852317356951]
- 0:-50.1818939091255
- 1:66.05852317356951
1642: [-50.18191179356714, 66.0579835922236]
- 0:-50.18191179356714
- 1:66.0579835922236
1643: [-50.18125171251734, 66.05798363809625]
- 0:-50.18125171251734
- 1:66.05798363809625
1644: [-50.18126960944228, 66.05744405808376]
- 0:-50.18126960944228
- 1:66.05744405808376
1645: [-50.17861656427406, 66.05743068397572]
- 0:-50.17861656427406
- 1:66.05743068397572
1646: [-50.17862536886629, 66.05715869618385]
- 0:-50.17862536886629
- 1:66.05715869618385
1647: [-50.177300928376695, 66.05715422476005]
- 0:-50.177300928376695
- 1:66.05715422476005
1648: [-50.17730989176145, 66.05688217251193]
- 0:-50.17730989176145
- 1:66.05688217251193
1649: [-50.173336908065444, 66.05686436770407]
- 0:-50.173336908065444
- 1:66.05686436770407
1650: [-50.1733189791462, 66.05739946930696]
- 0:-50.1733189791462
- 1:66.05739946930696
1651: [-50.172654639990746, 66.05739947149648]
- 0:-50.172654639990746
- 1:66.05739947149648
1652: [-50.17265016316222, 66.05766698188768]
- 0:-50.17265016316222
- 1:66.05766698188768
1653: [-50.17198579274727, 66.05766257022002]
- 0:-50.17198579274727
- 1:66.05766257022002
1654: [-50.17197673165646, 66.05793009566243]
- 0:-50.17197673165646
- 1:66.05793009566243
1655: [-50.170652578974334, 66.05792565701476]
- 0:-50.170652578974334
- 1:66.05792565701476
1656: [-50.170643505117056, 66.05819318257461]
- 0:-50.170643505117056
- 1:66.05819318257461
1657: [-50.16997914472499, 66.05819317039995]
- 0:-50.16997914472499
- 1:66.05819317039995
1658: [-50.169961319094064, 66.0587283258571]
- 0:-50.169961319094064
- 1:66.0587283258571
1659: [-50.17062571632682, 66.0587327484715]
- 0:-50.17062571632682
- 1:66.0587327484715
1660: [-50.17061680977759, 66.05900032671822]
- 0:-50.17061680977759
- 1:66.05900032671822
1661: [-50.17128121300377, 66.05900474587891]
- 0:-50.17128121300377
- 1:66.05900474587891
1662: [-50.171254368730956, 66.0598118410806]
- 0:-50.171254368730956
- 1:66.0598118410806
1663: [-50.17257880179658, 66.05982073596762]
- 0:-50.17257880179658
- 1:66.05982073596762
1664: [-50.17258785701355, 66.05955320841119]
- 0:-50.17258785701355
- 1:66.05955320841119
1665: [-50.17457194121595, 66.05956216028058]
- 0:-50.17457194121595
- 1:66.05956216028058
1666: [-50.17456321852896, 66.05982967498903]
- 0:-50.17456321852896
- 1:66.05982967498903
1667: [-50.17522749264032, 66.05983413815834]
- 0:-50.17522749264032
- 1:66.05983413815834
1668: [-50.17525422200137, 66.05902704140658]
- 0:-50.17525422200137
- 1:66.05902704140658
1669: [-50.1759142119558, 66.05903150263713]
- 0:-50.1759142119558
- 1:66.05903150263713
1670: [-50.1759230427736, 66.05875951342398]
- 0:-50.1759230427736
- 1:66.05875951342398
1671: [-50.17658760394418, 66.05876395607983]
- 0:-50.17658760394418
- 1:66.05876395607983
1672: [-50.17659645325871, 66.05849637735203]
- 0:-50.17659645325871
- 1:66.05849637735203
1673: [-50.175932065988455, 66.05849198659534]
- 0:-50.175932065988455
- 1:66.05849198659534
1674: [-50.17595877522166, 66.05768489394872]
- 0:-50.17595877522166
- 1:66.05768489394872
1675: [-50.17662314327724, 66.05768928444446]
- 0:-50.17662314327724
- 1:66.05768928444446
1676: [-50.17660527746425, 66.05822438864124]
- 0:-50.17660527746425
- 1:66.05822438864124
1677: [-50.177265247482254, 66.05822884260131]
- 0:-50.177265247482254
- 1:66.05822884260131
1678: [-50.17725642970906, 66.05850083139862]
- 0:-50.17725642970906
- 1:66.05850083139862
1679: [-50.17858519858129, 66.05850530171327]
- 0:-50.17858519858129
- 1:66.05850530171327
1680: [-50.178576368335875, 66.05877288069533]
- 0:-50.178576368335875
- 1:66.05877288069533
1681: [-50.17923634989247, 66.0587773243]
- 0:-50.17923634989247
- 1:66.0587773243
1682: [-50.179227237872844, 66.05904932705901]
- 0:-50.179227237872844
- 1:66.05904932705901
1683: [-50.18121618396159, 66.05905826148629]
- 0:-50.18121618396159
- 1:66.05905826148629
1684: [-50.18120721143628, 66.05932578958227]
- 0:-50.18120721143628
- 1:66.05932578958227
1685: [-50.18187163628183, 66.0593302690792]
- 0:-50.18187163628183
- 1:66.0593302690792
1686: [-50.181862670056006, 66.05959779754983]
- 0:-50.181862670056006
- 1:66.05959779754983
1687: [-50.181198286203, 66.05959784499674]
- 0:-50.181198286203
- 1:66.05959784499674
1688: [-50.18117156131906, 66.06040489400381]
- 0:-50.18117156131906
- 1:66.06040489400381
1689: [-50.18183581842834, 66.06040491173191]
- 0:-50.18183581842834
- 1:66.06040491173191
1690: [-50.18181807877946, 66.06094443339641]
- 0:-50.18181807877946
- 1:66.06094443339641
1691: [-50.18115361549762, 66.06093995337582]
- 0:-50.18115361549762
- 1:66.06093995337582
1692: [-50.181149268237206, 66.06121199539326]
- 0:-50.181149268237206
- 1:66.06121199539326
1693: [-50.18048479810488, 66.06120751176852]
- 0:-50.18048479810488
- 1:66.06120751176852
1694: [-50.180475986244886, 66.06147509389804]
- 0:-50.180475986244886
- 1:66.06147509389804
1695: [-50.179151657600485, 66.06147062783074]
- 0:-50.179151657600485
- 1:66.06147062783074
1696: [-50.17916048216015, 66.06120304586872]
- 0:-50.17916048216015
- 1:66.06120304586872
1697: [-50.178496032376096, 66.06119866837962]
- 0:-50.178496032376096
- 1:66.06119866837962
1698: [-50.17850498384973, 66.06092661154696]
- 0:-50.17850498384973
- 1:66.06092661154696
1699: [-50.17718053207129, 66.06092218961497]
- 0:-50.17718053207129
- 1:66.06092218961497
1700: [-50.17716282330358, 66.06145723599921]
- 0:-50.17716282330358
- 1:66.06145723599921
1701: [-50.17782713423623, 66.06146168555583]
- 0:-50.17782713423623
- 1:66.06146168555583
1702: [-50.1778181761883, 66.06173374289042]
- 0:-50.1778181761883
- 1:66.06173374289042
1703: [-50.17914266541996, 66.0617381582711]
- 0:-50.17914266541996
- 1:66.0617381582711
1704: [-50.17913372021621, 66.06201021607286]
- 0:-50.17913372021621
- 1:66.06201021607286
1705: [-50.179798163269865, 66.06201017994246]
- 0:-50.179798163269865
- 1:66.06201017994246
1706: [-50.17978905691752, 66.06228218631578]
- 0:-50.17978905691752
- 1:66.06228218631578
1707: [-50.180449094847404, 66.0622822136684]
- 0:-50.180449094847404
- 1:66.0622822136684
1708: [-50.18046688646842, 66.06174709977041]
- 0:-50.18046688646842
- 1:66.06174709977041
1709: [-50.1824557082339, 66.06175602868342]
- 0:-50.1824557082339
- 1:66.06175602868342
1710: [-50.18244677373865, 66.0620279701835]
- 0:-50.18244677373865
- 1:66.0620279701835
1711: [-50.18310680332486, 66.06202798343087]
- 0:-50.18310680332486
- 1:66.06202798343087
1712: [-50.18309789679066, 66.0623000420442]
- 0:-50.18309789679066
- 1:66.0623000420442
1713: [-50.1811134230139, 66.06228664583534]
- 0:-50.1811134230139
- 1:66.06228664583534
1714: [-50.18107777001614, 66.06336576308352]
- 0:-50.18107777001614
- 1:66.06336576308352
1715: [-50.18041341615526, 66.0633613305676]
- 0:-50.18041341615526
- 1:66.0633613305676
1716: [-50.18040458215966, 66.0636287982747]
- 0:-50.18040458215966
- 1:66.0636287982747
1717: [-50.17974448680024, 66.06362436014433]
- 0:-50.17974448680024
- 1:66.06362436014433
1718: [-50.179726707126854, 66.06416388828819]
- 0:-50.179726707126854
- 1:66.06416388828819
1719: [-50.18039124814833, 66.06416837638938]
- 0:-50.18039124814833
- 1:66.06416837638938
1720: [-50.18038226800771, 66.06443590989056]
- 0:-50.18038226800771
- 1:66.06443590989056
1721: [-50.18104223610747, 66.06444040969143]
- 0:-50.18104223610747
- 1:66.06444040969143
1722: [-50.1810510423485, 66.06417282429642]
- 0:-50.1810510423485
- 1:66.06417282429642
1723: [-50.181715389159784, 66.06417284315437]
- 0:-50.181715389159784
- 1:66.06417284315437
1724: [-50.18172435653248, 66.06390530977113]
- 0:-50.18172435653248
- 1:66.06390530977113
1725: [-50.18238445710359, 66.06390973746058]
- 0:-50.18238445710359
- 1:66.06390973746058
1726: [-50.18239341807604, 66.06364220427783]
- 0:-50.18239341807604
- 1:66.06364220427783
1727: [-50.18371769849895, 66.06364670143618]
- 0:-50.18371769849895
- 1:66.06364670143618
1728: [-50.18372647913231, 66.06337911656823]
- 0:-50.18372647913231
- 1:66.06337911656823
1729: [-50.18439099857645, 66.06338358323546]
- 0:-50.18439099857645
- 1:66.06338358323546
1730: [-50.18438205674311, 66.06365111638716]
- 0:-50.18438205674311
- 1:66.06365111638716
1731: [-50.185706360909656, 66.06366000279735]
- 0:-50.185706360909656
- 1:66.06366000279735
1732: [-50.18568867001022, 66.06419512211012]
- 0:-50.18568867001022
- 1:66.06419512211012
1733: [-50.18502859149368, 66.06419512225463]
- 0:-50.18502859149368
- 1:66.06419512225463
1734: [-50.18501965582221, 66.06446265635957]
- 0:-50.18501965582221
- 1:66.06446265635957
1735: [-50.18700393546973, 66.06447159409726]
- 0:-50.18700393546973
- 1:66.06447159409726
1736: [-50.18696385941742, 66.0658182573296]
- 0:-50.18696385941742
- 1:66.0658182573296
1737: [-50.1882881166395, 66.06582718189077]
- 0:-50.1882881166395
- 1:66.06582718189077
1738: [-50.1882792123229, 66.06609471815675]
- 0:-50.1882792123229
- 1:66.06609471815675
1739: [-50.18894379307484, 66.0660991609592]
- 0:-50.18894379307484
- 1:66.0660991609592
1740: [-50.18891697990314, 66.06690624711098]
- 0:-50.18891697990314
- 1:66.06690624711098
1741: [-50.189576973086744, 66.06690629166553]
- 0:-50.189576973086744
- 1:66.06690629166553
1742: [-50.1895636497675, 66.06744582704489]
- 0:-50.1895636497675
- 1:66.06744582704489
1743: [-50.18757473136615, 66.0674368792406]
- 0:-50.18757473136615
- 1:66.0674368792406
1744: [-50.18756582030564, 66.06770441715152]
- 0:-50.18756582030564
- 1:66.06770441715152
1745: [-50.18822571450099, 66.067708944346]
- 0:-50.18822571450099
- 1:66.067708944346
1746: [-50.18821236528677, 66.06824848118185]
- 0:-50.18821236528677
- 1:66.06824848118185
1747: [-50.18887236917992, 66.06824841290326]
- 0:-50.18887236917992
- 1:66.06824841290326
1748: [-50.18885888664017, 66.06878801598647]
- 0:-50.18885888664017
- 1:66.06878801598647
1749: [-50.189518951496794, 66.06879247155797]
- 0:-50.189518951496794
- 1:66.06879247155797
1750: [-50.189483262926274, 66.06986710714564]
- 0:-50.189483262926274
- 1:66.06986710714564
1751: [-50.190147618983964, 66.06987155723117]
- 0:-50.190147618983964
- 1:66.06987155723117
1752: [-50.190138732748345, 66.0701390980803]
- 0:-50.190138732748345
- 1:66.0701390980803
1753: [-50.19080309480062, 66.07014354471407]
- 0:-50.19080309480062
- 1:66.07014354471407
1754: [-50.190767505046956, 66.07122271402575]
- 0:-50.190767505046956
- 1:66.07122271402575
1755: [-50.19010294966092, 66.07121821524639]
- 0:-50.19010294966092
- 1:66.07121821524639
1756: [-50.19009406307972, 66.07148575753881]
- 0:-50.19009406307972
- 1:66.07148575753881
1757: [-50.188769734766524, 66.0714813128038]
- 0:-50.188769734766524
- 1:66.0714813128038
1758: [-50.18874291755484, 66.07228841636392]
- 0:-50.18874291755484
- 1:66.07228841636392
1759: [-50.18808308312101, 66.07228394303289]
- 0:-50.18808308312101
- 1:66.07228394303289
1760: [-50.18805624618735, 66.07309104894135]
- 0:-50.18805624618735
- 1:66.07309104894135
1761: [-50.18739181199433, 66.07308658723936]
- 0:-50.18739181199433
- 1:66.07308658723936
1762: [-50.18737844819942, 66.07362613557056]
- 0:-50.18737844819942
- 1:66.07362613557056
1763: [-50.18671416841607, 66.0736217219806]
- 0:-50.18671416841607
- 1:66.0736217219806
1764: [-50.186678399710694, 66.0747007876113]
- 0:-50.186678399710694
- 1:66.0747007876113
1765: [-50.18601409384548, 66.07469637013459]
- 0:-50.18601409384548
- 1:66.07469637013459
1766: [-50.185982852418284, 66.07577101416229]
- 0:-50.185982852418284
- 1:66.07577101416229
1767: [-50.186642916816005, 66.07577543417838]
- 0:-50.186642916816005
- 1:66.07577543417838
1768: [-50.18663399732035, 66.07604298094326]
- 0:-50.18663399732035
- 1:66.07604298094326
1769: [-50.1872983347803, 66.07604739531666]
- 0:-50.1872983347803
- 1:66.07604739531666
1770: [-50.18728038915826, 66.07658696542194]
- 0:-50.18728038915826
- 1:66.07658696542194
1771: [-50.18794490675141, 66.0765914282337]
- 0:-50.18794490675141
- 1:66.0765914282337
1772: [-50.18793599979643, 66.07685897603643]
- 0:-50.18793599979643
- 1:66.07685897603643
1773: [-50.188600209701825, 66.0768634485358]
- 0:-50.188600209701825
- 1:66.0768634485358
1774: [-50.18858240833022, 66.0773985451742]
- 0:-50.18858240833022
- 1:66.0773985451742
1775: [-50.18924694429736, 66.07740300116947]
- 0:-50.18924694429736
- 1:66.07740300116947
1776: [-50.18923793103024, 66.07767502557071]
- 0:-50.18923793103024
- 1:66.07767502557071
1777: [-50.18989801081988, 66.07767501801565]
- 0:-50.18989801081988
- 1:66.07767501801565
1778: [-50.189880115701826, 66.07821459229498]
- 0:-50.189880115701826
- 1:66.07821459229498
1779: [-50.190544502481245, 66.07821898969961]
- 0:-50.190544502481245
- 1:66.07821898969961
1780: [-50.190535620568006, 66.07848653957203]
- 0:-50.190535620568006
- 1:66.07848653957203
1781: [-50.191200034988775, 66.07849105026618]
- 0:-50.191200034988775
- 1:66.07849105026618
1782: [-50.191182311198766, 66.07903056169337]
- 0:-50.191182311198766
- 1:66.07903056169337
1783: [-50.19184654282491, 66.079030606577]
- 0:-50.19184654282491
- 1:66.079030606577
1784: [-50.19181984367393, 66.07984214642403]
- 0:-50.19181984367393
- 1:66.07984214642403
1785: [-50.19049555405519, 66.07983322895369]
- 0:-50.19049555405519
- 1:66.07983322895369
1786: [-50.19049985493336, 66.07956569312826]
- 0:-50.19049985493336
- 1:66.07956569312826
1787: [-50.18917557651982, 66.07955676172743]
- 0:-50.18917557651982
- 1:66.07955676172743
1788: [-50.18918447141686, 66.0792892108734]
- 0:-50.18918447141686
- 1:66.0792892108734
1789: [-50.18786020421756, 66.0792802655909]
- 0:-50.18786020421756
- 1:66.0792802655909
1790: [-50.18786911175271, 66.07901271519634]
- 0:-50.18786911175271
- 1:66.07901271519634
1791: [-50.1852159191445, 66.07899939043244]
- 0:-50.1852159191445
- 1:66.07899939043244
1792: [-50.185198053087, 66.0795344908229]
- 0:-50.185198053087
- 1:66.0795344908229
1793: [-50.18453804479799, 66.07952999767417]
- 0:-50.18453804479799
- 1:66.07952999767417
1794: [-50.18452913177769, 66.07980195887144]
- 0:-50.18452913177769
- 1:66.07980195887144
1795: [-50.18585354794024, 66.07980646406966]
- 0:-50.18585354794024
- 1:66.07980646406966
1796: [-50.185844647769066, 66.0800784257324]
- 0:-50.185844647769066
- 1:66.0800784257324
1797: [-50.18650893581, 66.08008290984243]
- 0:-50.18650893581
- 1:66.08008290984243
1798: [-50.18650001528808, 66.08035046121813]
- 0:-50.18650001528808
- 1:66.08035046121813
1799: [-50.18716004156705, 66.0803549441073]
- 0:-50.18716004156705
- 1:66.0803549441073
1800: [-50.18715112730937, 66.08062249585562]
- 0:-50.18715112730937
- 1:66.08062249585562
1801: [-50.187815573399, 66.08062690814911]
- 0:-50.187815573399
- 1:66.08062690814911
1802: [-50.18779763835039, 66.08116648830375]
- 0:-50.18779763835039
- 1:66.08116648830375
1803: [-50.18912652792759, 66.08117089193969]
- 0:-50.18912652792759
- 1:66.08117089193969
1804: [-50.18913542319636, 66.08090333935846]
- 0:-50.18913542319636
- 1:66.08090333935846
1805: [-50.19045973817165, 66.08090786089873]
- 0:-50.19045973817165
- 1:66.08090786089873
1806: [-50.190450883003045, 66.08117982433578]
- 0:-50.190450883003045
- 1:66.08117982433578
1807: [-50.191115166416104, 66.08117987339337]
- 0:-50.191115166416104
- 1:66.08117987339337
1808: [-50.19112418864204, 66.08091225561293]
- 0:-50.19112418864204
- 1:66.08091225561293
1809: [-50.192448696240966, 66.08092121852339]
- 0:-50.192448696240966
- 1:66.08092121852339
1810: [-50.19240409215564, 66.08226341028849]
- 0:-50.19240409215564
- 1:66.08226341028849
1811: [-50.191079569939184, 66.08225897395829]
- 0:-50.191079569939184
- 1:66.08225897395829
1812: [-50.191070693410694, 66.08252652823475]
- 0:-50.191070693410694
- 1:66.08252652823475
1813: [-50.191735035926776, 66.08253098487863]
- 0:-50.191735035926776
- 1:66.08253098487863
1814: [-50.19170845266368, 66.08333806041107]
- 0:-50.19170845266368
- 1:66.08333806041107
1815: [-50.19237281403513, 66.08334251377879]
- 0:-50.19237281403513
- 1:66.08334251377879
1816: [-50.19234593562845, 66.08414960532401]
- 0:-50.19234593562845
- 1:66.08414960532401
1817: [-50.19301031585679, 66.08415405541703]
- 0:-50.19301031585679
- 1:66.08415405541703
1818: [-50.19298362377299, 66.08496120162282]
- 0:-50.19298362377299
- 1:66.08496120162282
1819: [-50.19231922430781, 66.08495675126854]
- 0:-50.19231922430781
- 1:66.08495675126854
1820: [-50.192301355309965, 66.08549622517071]
- 0:-50.192301355309965
- 1:66.08549622517071
1821: [-50.19296573981282, 66.08549626493406]
- 0:-50.19296573981282
- 1:66.08549626493406
1822: [-50.19295690940978, 66.08576823368703]
- 0:-50.19295690940978
- 1:66.08576823368703
1823: [-50.19362118167319, 66.08577274571375]
- 0:-50.19362118167319
- 1:66.08577274571375
1824: [-50.193612329757606, 66.08604030407365]
- 0:-50.193612329757606
- 1:66.08604030407365
1825: [-50.19427675408126, 66.08604474770242]
- 0:-50.19427675408126
- 1:66.08604474770242
1826: [-50.19426790847519, 66.08631230643479]
- 0:-50.19426790847519
- 1:66.08631230643479
1827: [-50.19492775638345, 66.08631676225845]
- 0:-50.19492775638345
- 1:66.08631676225845
1828: [-50.19489652781176, 66.08739135690924]
- 0:-50.19489652781176
- 1:66.08739135690924
1829: [-50.19356781121725, 66.08738693491237]
- 0:-50.19356781121725
- 1:66.08738693491237
1830: [-50.19357678161262, 66.08711489937062]
- 0:-50.19357678161262
- 1:66.08711489937062
1831: [-50.19225234481343, 66.0871104609998]
- 0:-50.19225234481343
- 1:66.0871104609998
1832: [-50.192261328064404, 66.08683842592397]
- 0:-50.192261328064404
- 1:66.08683842592397
1833: [-50.19093248746847, 66.08683404096452]
- 0:-50.19093248746847
- 1:66.08683404096452
1834: [-50.19094148361759, 66.08656200635522]
- 0:-50.19094148361759
- 1:66.08656200635522
1835: [-50.189617068819125, 66.08655754016512]
- 0:-50.189617068819125
- 1:66.08655754016512
1836: [-50.18962595904923, 66.08628998174315]
- 0:-50.18962595904923
- 1:66.08628998174315
1837: [-50.1889615255024, 66.08628551331421]
- 0:-50.1889615255024
- 1:66.08628551331421
1838: [-50.18897042204119, 66.08601795526494]
- 0:-50.18897042204119
- 1:66.08601795526494
1839: [-50.18830599449552, 66.08601348338561]
- 0:-50.18830599449552
- 1:66.08601348338561
1840: [-50.18831487025536, 66.08574151494207]
- 0:-50.18831487025536
- 1:66.08574151494207
1841: [-50.187655079805815, 66.08574155174539]
- 0:-50.187655079805815
- 1:66.08574155174539
1842: [-50.18765952568302, 66.08546953411734]
- 0:-50.18765952568302
- 1:66.08546953411734
1843: [-50.18699954649732, 66.0854651049243]
- 0:-50.18699954649732
- 1:66.0854651049243
1844: [-50.187012941098736, 66.08492994177224]
- 0:-50.187012941098736
- 1:66.08492994177224
1845: [-50.186352974208376, 66.08492550923837]
- 0:-50.186352974208376
- 1:66.08492550923837
1846: [-50.186361895865986, 66.08465795297033]
- 0:-50.186361895865986
- 1:66.08465795297033
1847: [-50.185697498808814, 66.0846534674021]
- 0:-50.185697498808814
- 1:66.0846534674021
1848: [-50.18570640010821, 66.08438150076576]
- 0:-50.18570640010821
- 1:66.08438150076576
1849: [-50.18504188964425, 66.08438148742643]
- 0:-50.18504188964425
- 1:66.08438148742643
1850: [-50.18505094342981, 66.0841094562306]
- 0:-50.18505094342981
- 1:66.0841094562306
1851: [-50.18372648948211, 66.0841049931295]
- 0:-50.18372648948211
- 1:66.0841049931295
1852: [-50.18369984237438, 66.08491212259099]
- 0:-50.18369984237438
- 1:66.08491212259099
1853: [-50.183035291253944, 66.08490768774594]
- 0:-50.183035291253944
- 1:66.08490768774594
1854: [-50.18302648376672, 66.0851751789346]
- 0:-50.18302648376672
- 1:66.0851751789346
1855: [-50.18567952326095, 66.0851930557443]
- 0:-50.18567952326095
- 1:66.0851930557443
1856: [-50.185639490873285, 66.0865352378669]
- 0:-50.185639490873285
- 1:66.0865352378669
1857: [-50.18298637151887, 66.08652188693736]
- 0:-50.18298637151887
- 1:66.08652188693736
1858: [-50.182990742909325, 66.08625434458072]
- 0:-50.182990742909325
- 1:66.08625434458072
1859: [-50.1823308878849, 66.08624982564368]
- 0:-50.1823308878849
- 1:66.08624982564368
1860: [-50.18233970197791, 66.08598233338788]
- 0:-50.18233970197791
- 1:66.08598233338788
1861: [-50.18101100629453, 66.08597336730124]
- 0:-50.18101100629453
- 1:66.08597336730124
1862: [-50.180993253993414, 66.08651294420825]
- 0:-50.180993253993414
- 1:66.08651294420825
1863: [-50.18165765108043, 66.08651292757737]
- 0:-50.18165765108043
- 1:66.08651292757737
1864: [-50.18164856432875, 66.08678496096799]
- 0:-50.18164856432875
- 1:66.08678496096799
1865: [-50.18297744382579, 66.08679385556903]
- 0:-50.18297744382579
- 1:66.08679385556903
1866: [-50.182968489811415, 66.08706141370912]
- 0:-50.182968489811415
- 1:66.08706141370912
1867: [-50.184292917575, 66.08706583386409]
- 0:-50.184292917575
- 1:66.08706583386409
1868: [-50.18428385657435, 66.08733786818888]
- 0:-50.18428385657435
- 1:66.08733786818888
1869: [-50.18494843809912, 66.08733788594884]
- 0:-50.18494843809912
- 1:66.08733788594884
1870: [-50.18493938351249, 66.0876099206526]
- 0:-50.18493938351249
- 1:66.0876099206526
1871: [-50.185603829886446, 66.08761429394778]
- 0:-50.185603829886446
- 1:66.08761429394778
1872: [-50.18559490113037, 66.0878818532928]
- 0:-50.18559490113037
- 1:66.0878818532928
1873: [-50.18691926604105, 66.08789083828664]
- 0:-50.18691926604105
- 1:66.08789083828664
1874: [-50.18690584883265, 66.08842589102674]
- 0:-50.18690584883265
- 1:66.08842589102674
1875: [-50.18823023767225, 66.08843486226786]
- 0:-50.18823023767225
- 1:66.08843486226786
1876: [-50.18821240896765, 66.08896986690645]
- 0:-50.18821240896765
- 1:66.08896986690645
1877: [-50.18887690698554, 66.0889743397201]
- 0:-50.18887690698554
- 1:66.0889743397201
1878: [-50.18885009612223, 66.08978149998238]
- 0:-50.18885009612223
- 1:66.08978149998238
1879: [-50.18951444526751, 66.08978591771826]
- 0:-50.18951444526751
- 1:66.08978591771826
1880: [-50.18946083849277, 66.09140012981786]
- 0:-50.18946083849277
- 1:66.09140012981786
1881: [-50.18813667325785, 66.09139568523874]
- 0:-50.18813667325785
- 1:66.09139568523874
1882: [-50.18814538255601, 66.0911236591469]
- 0:-50.18814538255601
- 1:66.0911236591469
1883: [-50.18615240831701, 66.0911147187956]
- 0:-50.18615240831701
- 1:66.0911147187956
1884: [-50.186161185423046, 66.09084722085697]
- 0:-50.186161185423046
- 1:66.09084722085697
1885: [-50.185501224044955, 66.09084271801115]
- 0:-50.185501224044955
- 1:66.09084271801115
1886: [-50.18551015352284, 66.090575155504]
- 0:-50.18551015352284
- 1:66.090575155504
1887: [-50.18418141144018, 66.09056627363088]
- 0:-50.18418141144018
- 1:66.09056627363088
1888: [-50.18419035360454, 66.0902987115833]
- 0:-50.18419035360454
- 1:66.0902987115833
1889: [-50.18286589207582, 66.0902898136666]
- 0:-50.18286589207582
- 1:66.0902898136666
1890: [-50.182879338414125, 66.08975023020467]
- 0:-50.182879338414125
- 1:66.08975023020467
1891: [-50.182219422248345, 66.08974582691273]
- 0:-50.182219422248345
- 1:66.08974582691273
1892: [-50.18222380027694, 66.08947828116371]
- 0:-50.18222380027694
- 1:66.08947828116371
1893: [-50.181563868453615, 66.08947375769789]
- 0:-50.181563868453615
- 1:66.08947375769789
1894: [-50.18155509480258, 66.089745781182]
- 0:-50.18155509480258
- 1:66.089745781182
1895: [-50.17956630099053, 66.08973238831088]
- 0:-50.17956630099053
- 1:66.08973238831088
1896: [-50.179575141393066, 66.0894648926615]
- 0:-50.179575141393066
- 1:66.0894648926615
1897: [-50.17891079267124, 66.08946042206202]
- 0:-50.17891079267124
- 1:66.08946042206202
1898: [-50.17892858490354, 66.08892083929675]
- 0:-50.17892858490354
- 1:66.08892083929675
1899: [-50.17826412807583, 66.08892084108297]
- 0:-50.17826412807583
- 1:66.08892084108297
1900: [-50.17827310161662, 66.08864887072076]
- 0:-50.17827310161662
- 1:66.08864887072076
1901: [-50.17760865068402, 66.08864886905154]
- 0:-50.17760865068402
- 1:66.08864886905154
1902: [-50.177599791358766, 66.08891636358452]
- 0:-50.177599791358766
- 1:66.08891636358452
1903: [-50.174946610350695, 66.08890300891684]
- 0:-50.174946610350695
- 1:66.08890300891684
1904: [-50.174955448552055, 66.08863098716756]
- 0:-50.174955448552055
- 1:66.08863098716756
1905: [-50.17363109923356, 66.08862651929043]
- 0:-50.17363109923356
- 1:66.08862651929043
1906: [-50.17363999666178, 66.08835902555707]
- 0:-50.17363999666178
- 1:66.08835902555707
1907: [-50.17165130613507, 66.08834562390967]
- 0:-50.17165130613507
- 1:66.08834562390967
1908: [-50.171660222578716, 66.0880781307217]
- 0:-50.171660222578716
- 1:66.0880781307217
1909: [-50.16966696491886, 66.08806471236416]
- 0:-50.16966696491886
- 1:66.08806471236416
1910: [-50.16967604655112, 66.08779715480215]
- 0:-50.16967604655112
- 1:66.08779715480215
1911: [-50.16901602094821, 66.08779274689724]
- 0:-50.16901602094821
- 1:66.08779274689724
1912: [-50.16902494114982, 66.08752513787931]
- 0:-50.16902494114982
- 1:66.08752513787931
1913: [-50.1676960281875, 66.08751621122369]
- 0:-50.1676960281875
- 1:66.08751621122369
1914: [-50.1677049826346, 66.08724871941374]
- 0:-50.1677049826346
- 1:66.08724871941374
1915: [-50.16571625735081, 66.08723981611661]
- 0:-50.16571625735081
- 1:66.08723981611661
1916: [-50.16572518573538, 66.08696779732567]
- 0:-50.16572518573538
- 1:66.08696779732567
1917: [-50.16506074032809, 66.08696331827814]
- 0:-50.16506074032809
- 1:66.08696331827814
1918: [-50.16506955241251, 66.08669577555344]
- 0:-50.16506955241251
- 1:66.08669577555344
1919: [-50.163080860415, 66.08668683048612]
- 0:-50.163080860415
- 1:66.08668683048612
1920: [-50.16308981455062, 66.08641481262622]
- 0:-50.16308981455062
- 1:66.08641481262622
1921: [-50.16242554808446, 66.0864103714645]
- 0:-50.16242554808446
- 1:66.0864103714645
1922: [-50.162443222833964, 66.08587528813362]
- 0:-50.162443222833964
- 1:66.08587528813362
1923: [-50.16177896874368, 66.08587084360897]
- 0:-50.16177896874368
- 1:66.08587084360897
1924: [-50.161769957355084, 66.08613833320703]
- 0:-50.161769957355084
- 1:66.08613833320703
1925: [-50.16044558064405, 66.08613390773154]
- 0:-50.16044558064405
- 1:66.08613390773154
1926: [-50.160436724147914, 66.08640144928607]
- 0:-50.160436724147914
- 1:66.08640144928607
1927: [-50.15977214226411, 66.08639700707002]
- 0:-50.15977214226411
- 1:66.08639700707002
1928: [-50.15976346957666, 66.08666901142946]
- 0:-50.15976346957666
- 1:66.08666901142946
1929: [-50.15910346354347, 66.08666455125926]
- 0:-50.15910346354347
- 1:66.08666455125926
1930: [-50.15909459419889, 66.08693209321792]
- 0:-50.15909459419889
- 1:66.08693209321792
1931: [-50.159754292741496, 66.08693656654144]
- 0:-50.159754292741496
- 1:66.08693656654144
1932: [-50.159736589093065, 66.08747606226696]
- 0:-50.159736589093065
- 1:66.08747606226696
1933: [-50.15774782837442, 66.08746273784433]
- 0:-50.15774782837442
- 1:66.08746273784433
1934: [-50.1577299398002, 66.08800229911893]
- 0:-50.1577299398002
- 1:66.08800229911893
1935: [-50.158394393715575, 66.08800670060421]
- 0:-50.158394393715575
- 1:66.08800670060421
1936: [-50.15838551764622, 66.08827424391494]
- 0:-50.15838551764622
- 1:66.08827424391494
1937: [-50.15970987565671, 66.08828316754646]
- 0:-50.15970987565671
- 1:66.08828316754646
1938: [-50.159700866070764, 66.08855077622408]
- 0:-50.159700866070764
- 1:66.08855077622408
1939: [-50.165007330541954, 66.08858195594466]
- 0:-50.165007330541954
- 1:66.08858195594466
1940: [-50.16501626575752, 66.08830993577871]
- 0:-50.16501626575752
- 1:66.08830993577871
1941: [-50.16568042942932, 66.08831442834324]
- 0:-50.16568042942932
- 1:66.08831442834324
1942: [-50.16565388825071, 66.08912153853402]
- 0:-50.16565388825071
- 1:66.08912153853402
1943: [-50.166318216927344, 66.08912596290757]
- 0:-50.166318216927344
- 1:66.08912596290757
1944: [-50.166309416980226, 66.08939350839094]
- 0:-50.166309416980226
- 1:66.08939350839094
1945: [-50.16697360551266, 66.08939799423223]
- 0:-50.16697360551266
- 1:66.08939799423223
1946: [-50.166955895761454, 66.08993756197324]
- 0:-50.166955895761454
- 1:66.08993756197324
1947: [-50.167615782032996, 66.08993751842844]
- 0:-50.167615782032996
- 1:66.08993751842844
1948: [-50.16760687229175, 66.09020954069152]
- 0:-50.16760687229175
- 1:66.09020954069152
1949: [-50.16827139316818, 66.09021400665856]
- 0:-50.16827139316818
- 1:66.09021400665856
1950: [-50.16823566446575, 66.09128863295659]
- 0:-50.16823566446575
- 1:66.09128863295659
1951: [-50.16757111796682, 66.09128416664124]
- 0:-50.16757111796682
- 1:66.09128416664124
1952: [-50.16759808478262, 66.09047708749411]
- 0:-50.16759808478262
- 1:66.09047708749411
1953: [-50.1662736576295, 66.09047265777146]
- 0:-50.1662736576295
- 1:66.09047265777146
1954: [-50.166229051397764, 66.09181483226152]
- 0:-50.166229051397764
- 1:66.09181483226152
1955: [-50.16424031109581, 66.09180589043257]
- 0:-50.16424031109581
- 1:66.09180589043257
1956: [-50.16422238102457, 66.09234541086619]
- 0:-50.16422238102457
- 1:66.09234541086619
1957: [-50.164886764074936, 66.09234543246467]
- 0:-50.164886764074936
- 1:66.09234543246467
1958: [-50.16487782785599, 66.09261745701171]
- 0:-50.16487782785599
- 1:66.09261745701171
1959: [-50.16686662452727, 66.09262638902352]
- 0:-50.16686662452727
- 1:66.09262638902352
1960: [-50.16683103371399, 66.0937054877337]
- 0:-50.16683103371399
- 1:66.0937054877337
1961: [-50.16749544684648, 66.09370549561896]
- 0:-50.16749544684648
- 1:66.09370549561896
1962: [-50.167486536178174, 66.09397752197154]
- 0:-50.167486536178174
- 1:66.09397752197154
1963: [-50.166157627509605, 66.09396856395036]
- 0:-50.166157627509605
- 1:66.09396856395036
1964: [-50.16612200958021, 66.09504766810717]
- 0:-50.16612200958021
- 1:66.09504766810717
1965: [-50.16678645529898, 66.09504767994049]
- 0:-50.16678645529898
- 1:66.09504767994049
1966: [-50.16675069424874, 66.09612673723477]
- 0:-50.16675069424874
- 1:66.09612673723477
1967: [-50.16608634533405, 66.09612224921749]
- 0:-50.16608634533405
- 1:66.09612224921749
1968: [-50.16607739741966, 66.09638986708495]
- 0:-50.16607739741966
- 1:66.09638986708495
1969: [-50.16475300104691, 66.09638540651515]
- 0:-50.16475300104691
- 1:66.09638540651515
1970: [-50.16476193824105, 66.09611337788115]
- 0:-50.16476193824105
- 1:66.09611337788115
1971: [-50.16409758820999, 66.0961088792812]
- 0:-50.16409758820999
- 1:66.0961088792812
1972: [-50.16410657670421, 66.09584137871246]
- 0:-50.16410657670421
- 1:66.09584137871246
1973: [-50.16477092035764, 66.09584587722529]
- 0:-50.16477092035764
- 1:66.09584587722529
1974: [-50.16477988085026, 66.09557826010192]
- 0:-50.16477988085026
- 1:66.09557826010192
1975: [-50.16411539739299, 66.09557382659169]
- 0:-50.16411539739299
- 1:66.09557382659169
1976: [-50.16412434086339, 66.0953017989204]
- 0:-50.16412434086339
- 1:66.0953017989204
1977: [-50.16346005447706, 66.09530182471896]
- 0:-50.16346005447706
- 1:66.09530182471896
1978: [-50.16343328258448, 66.0961089048333]
- 0:-50.16343328258448
- 1:66.0961089048333
1979: [-50.162768785512185, 66.09610446407662]
- 0:-50.162768785512185
- 1:66.09610446407662
1980: [-50.16275995192737, 66.09637201660028]
- 0:-50.16275995192737
- 1:66.09637201660028
1981: [-50.162099909210994, 66.0963720336406]
- 0:-50.162099909210994
- 1:66.0963720336406
1982: [-50.16208206142288, 66.09690708754161]
- 0:-50.16208206142288
- 1:66.09690708754161
1983: [-50.163406363870685, 66.09691605245891]
- 0:-50.163406363870685
- 1:66.09691605245891
1984: [-50.16339753645778, 66.0971836059295]
- 0:-50.16339753645778
- 1:66.0971836059295
1985: [-50.162733159952225, 66.09717909991046]
- 0:-50.162733159952225
- 1:66.09717909991046
1986: [-50.16271963964949, 66.09771868203322]
- 0:-50.16271963964949
- 1:66.09771868203322
1987: [-50.162055249910175, 66.09771417232753]
- 0:-50.162055249910175
- 1:66.09771417232753
1988: [-50.1620374459895, 66.09825375681547]
- 0:-50.1620374459895
- 1:66.09825375681547
1989: [-50.161373210759, 66.09824929524181]
- 0:-50.161373210759
- 1:66.09824929524181
1990: [-50.16136419615874, 66.09851679804804]
- 0:-50.16136419615874
- 1:66.09851679804804
1991: [-50.16003527436969, 66.09851235307879]
- 0:-50.16003527436969
- 1:66.09851235307879
1992: [-50.16004430172829, 66.09824485044234]
- 0:-50.16004430172829
- 1:66.09824485044234
1993: [-50.1573911641691, 66.09822701730326]
- 0:-50.1573911641691
- 1:66.09822701730326
1994: [-50.1574000491896, 66.09795946345396]
- 0:-50.1574000491896
- 1:66.09795946345396
1995: [-50.156740088253144, 66.09795497607492]
- 0:-50.156740088253144
- 1:66.09795497607492
1996: [-50.156731196895485, 66.09822252983818]
- 0:-50.156731196895485
- 1:66.09822252983818
1997: [-50.15606683444672, 66.09822251590788]
- 0:-50.15606683444672
- 1:66.09822251590788
1998: [-50.15604903876431, 66.09875762412636]
- 0:-50.15604903876431
- 1:66.09875762412636
1999: [-50.15538447325736, 66.09875314367092]
- 0:-50.15538447325736
- 1:66.09875314367092
2000: [-50.15537561242348, 66.09902522585722]
- 0:-50.15537561242348
- 1:66.09902522585722
2001: [-50.154711186280736, 66.09902067687229]
- 0:-50.154711186280736
- 1:66.09902067687229
2002: [-50.15470227550408, 66.09928823152592]
- 0:-50.15470227550408
- 1:66.09928823152592
2003: [-50.15403786412439, 66.09928379567464]
- 0:-50.15403786412439
- 1:66.09928379567464
2004: [-50.15402005136838, 66.09982331665742]
- 0:-50.15402005136838
- 1:66.09982331665742
2005: [-50.154684329384, 66.09982781758788]
- 0:-50.154684329384
- 1:66.09982781758788
2006: [-50.15466652921306, 66.10036733990401]
- 0:-50.15466652921306
- 1:66.10036733990401
2007: [-50.15599538023394, 66.10037179069212]
- 0:-50.15599538023394
- 1:66.10037179069212
2008: [-50.156013344503094, 66.09983673088213]
- 0:-50.156013344503094
- 1:66.09983673088213
2009: [-50.156673182739084, 66.09984117052959]
- 0:-50.156673182739084
- 1:66.09984117052959
2010: [-50.156655398893136, 66.10037628236078]
- 0:-50.156655398893136
- 1:66.10037628236078
2011: [-50.15731968818329, 66.1003807693497]
- 0:-50.15731968818329
- 1:66.1003807693497
2012: [-50.15730193911238, 66.10092029350938]
- 0:-50.15730193911238
- 1:66.10092029350938
2013: [-50.15663749072786, 66.1009158712547]
- 0:-50.15663749072786
- 1:66.1009158712547
2014: [-50.156623999678544, 66.10145539523364]
- 0:-50.156623999678544
- 1:66.10145539523364
2015: [-50.1559596842901, 66.1014509043852]
- 0:-50.1559596842901
- 1:66.1014509043852
2016: [-50.15594188693103, 66.10198601948389]
- 0:-50.15594188693103
- 1:66.10198601948389
2017: [-50.155277434153874, 66.10198600086704]
- 0:-50.155277434153874
- 1:66.10198600086704
2018: [-50.15526852898872, 66.10225355876203]
- 0:-50.15526852898872
- 1:66.10225355876203
2019: [-50.15393975490591, 66.10224915157033]
- 0:-50.15393975490591
- 1:66.10224915157033
2020: [-50.15393098315506, 66.10251664467674]
- 0:-50.15393098315506
- 1:66.10251664467674
2021: [-50.151942100834134, 66.10250329872783]
- 0:-50.151942100834134
- 1:66.10250329872783
2022: [-50.15195103793022, 66.10223574097598]
- 0:-50.15195103793022
- 1:66.10223574097598
2023: [-50.14995777494489, 66.10222684048132]
- 0:-50.14995777494489
- 1:66.10222684048132
2024: [-50.1499488187057, 66.10249439797751]
- 0:-50.1499488187057
- 1:66.10249439797751
2025: [-50.14862442132688, 66.10248545727039]
- 0:-50.14862442132688
- 1:66.10248545727039
2026: [-50.14863339028546, 66.10221789994743]
- 0:-50.14863339028546
- 1:66.10221789994743
2027: [-50.14730458656039, 66.1022090111116]
- 0:-50.14730458656039
- 1:66.1022090111116
2028: [-50.14729562556312, 66.10248097929644]
- 0:-50.14729562556312
- 1:66.10248097929644
2029: [-50.14530689924975, 66.10246757952625]
- 0:-50.14530689924975
- 1:66.10246757952625
2030: [-50.14529806610549, 66.10273518856856]
- 0:-50.14529806610549
- 1:66.10273518856856
2031: [-50.1386585525193, 66.10269946675632]
- 0:-50.1386585525193
- 1:66.10269946675632
2032: [-50.13866730315607, 66.10243192345419]
- 0:-50.13866730315607
- 1:66.10243192345419
2033: [-50.13667858326945, 66.1024185030264]
- 0:-50.13667858326945
- 1:66.1024185030264
2034: [-50.13666968628944, 66.1026905219886]
- 0:-50.13666968628944
- 1:66.1026905219886
2035: [-50.13335201313448, 66.10267274158896]
- 0:-50.13335201313448
- 1:66.10267274158896
2036: [-50.13336094250683, 66.10240072305722]
- 0:-50.13336094250683
- 1:66.10240072305722
2037: [-50.13203212958776, 66.10239178837925]
- 0:-50.13203212958776
- 1:66.10239178837925
2038: [-50.13204111159564, 66.10212429809621]
- 0:-50.13204111159564
- 1:66.10212429809621
2039: [-50.12938796386751, 66.10211084933488]
- 0:-50.12938796386751
- 1:66.10211084933488
2040: [-50.12939678567208, 66.10183889678207]
- 0:-50.12939678567208
- 1:66.10183889678207
2041: [-50.130061254182785, 66.10184334739397]
- 0:-50.130061254182785
- 1:66.10184334739397
2042: [-50.130079066901686, 66.10130820012819]
- 0:-50.130079066901686
- 1:66.10130820012819
2043: [-50.12875474034818, 66.10129928251251]
- 0:-50.12875474034818
- 1:66.10129928251251
2044: [-50.128732502289395, 66.10183890553175]
- 0:-50.128732502289395
- 1:66.10183890553175
2045: [-50.128072450624096, 66.10183438278516]
- 0:-50.128072450624096
- 1:66.10183438278516
2046: [-50.12805019932612, 66.10237400676553]
- 0:-50.12805019932612
- 1:66.10237400676553
2047: [-50.12871464235744, 66.10237393684015]
- 0:-50.12871464235744
- 1:66.10237393684015
2048: [-50.12869682133762, 66.10291349708015]
- 0:-50.12869682133762
- 1:66.10291349708015
2049: [-50.130689990046285, 66.10292686294855]
- 0:-50.130689990046285
- 1:66.10292686294855
2050: [-50.13064996683643, 66.10400152528706]
- 0:-50.13064996683643
- 1:66.10400152528706
2051: [-50.131314171936886, 66.10400598254037]
- 0:-50.131314171936886
- 1:66.10400598254037
2052: [-50.131305350784714, 66.10427352662788]
- 0:-50.131305350784714
- 1:66.10427352662788
2053: [-50.131969729628786, 66.10427803231663]
- 0:-50.131969729628786
- 1:66.10427803231663
2054: [-50.13196091478858, 66.10454557677508]
- 0:-50.13196091478858
- 1:66.10454557677508
2055: [-50.132625278217844, 66.10454996225356]
- 0:-50.132625278217844
- 1:66.10454996225356
2056: [-50.132611923669494, 66.10482204825247]
- 0:-50.132611923669494
- 1:66.10482204825247
2057: [-50.134605201636404, 66.10483094138556]
- 0:-50.134605201636404
- 1:66.10483094138556
2058: [-50.13459609808847, 66.10509849976071]
- 0:-50.13459609808847
- 1:66.10509849976071
2059: [-50.135260640539, 66.10510292317626]
- 0:-50.135260640539
- 1:66.10510292317626
2060: [-50.13523384924983, 66.10591005023362]
- 0:-50.13523384924983
- 1:66.10591005023362
2061: [-50.13456930627898, 66.10591003764506]
- 0:-50.13456930627898
- 1:66.10591003764506
2062: [-50.13456051650397, 66.10617758416507]
- 0:-50.13456051650397
- 1:66.10617758416507
2063: [-50.13323169306582, 66.10616871303091]
- 0:-50.13323169306582
- 1:66.10616871303091
2064: [-50.13322274123557, 66.10644061887878]
- 0:-50.13322274123557
- 1:66.10644061887878
2065: [-50.1312339129447, 66.10642727861419]
- 0:-50.1312339129447
- 1:66.10642727861419
2066: [-50.131225091167195, 66.10669482527936]
- 0:-50.131225091167195
- 1:66.10669482527936
2067: [-50.13056069373288, 66.10669484313634]
- 0:-50.13056069373288
- 1:66.10669484313634
2068: [-50.13055186550556, 66.10696239000502]
- 0:-50.13055186550556
- 1:66.10696239000502
2069: [-50.12988727535815, 66.1069579412567]
- 0:-50.12988727535815
- 1:66.1069579412567
2070: [-50.129869623932656, 66.10749744678827]
- 0:-50.129869623932656
- 1:66.10749744678827
2071: [-50.129205020542955, 66.10749299433074]
- 0:-50.129205020542955
- 1:66.10749299433074
2072: [-50.12919617934246, 66.10776054188615]
- 0:-50.12919617934246
- 1:66.10776054188615
2073: [-50.12853188328561, 66.10775607281737]
- 0:-50.12853188328561
- 1:66.10775607281737
2074: [-50.12852290709042, 66.10802809656816]
- 0:-50.12852290709042
- 1:66.10802809656816
2075: [-50.12785845783776, 66.10802368875416]
- 0:-50.12785845783776
- 1:66.10802368875416
2076: [-50.12784943598281, 66.10829118482282]
- 0:-50.12784943598281
- 1:66.10829118482282
2077: [-50.12851405936994, 66.10829564461159]
- 0:-50.12851405936994
- 1:66.10829564461159
2078: [-50.12850504382532, 66.10856314105182]
- 0:-50.12850504382532
- 1:66.10856314105182
2079: [-50.12916494038179, 66.10856767547935]
- 0:-50.12916494038179
- 1:66.10856767547935
2080: [-50.12915611675871, 66.10883963531295]
- 0:-50.12915611675871
- 1:66.10883963531295
2081: [-50.13048488747186, 66.10884408757664]
- 0:-50.13048488747186
- 1:66.10884408757664
2082: [-50.130493883988215, 66.10857659059151]
- 0:-50.130493883988215
- 1:66.10857659059151
2083: [-50.13115819818976, 66.10858104934269]
- 0:-50.13115819818976
- 1:66.10858104934269
2084: [-50.13116714861601, 66.108309024664]
- 0:-50.13116714861601
- 1:66.108309024664
2085: [-50.131831455960054, 66.10831347979455]
- 0:-50.131831455960054
- 1:66.10831347979455
2086: [-50.13184043957345, 66.10804598320952]
- 0:-50.13184043957345
- 1:66.10804598320952
2087: [-50.13316935447767, 66.10805486969694]
- 0:-50.13316935447767
- 1:66.10805486969694
2088: [-50.133178285296516, 66.10778284534003]
- 0:-50.133178285296516
- 1:66.10778284534003
2089: [-50.134502453074816, 66.1077917958047]
- 0:-50.134502453074816
- 1:66.1077917958047
2090: [-50.13451582960649, 66.10752423415882]
- 0:-50.13451582960649
- 1:66.10752423415882
2091: [-50.13584025688089, 66.10752862947831]
- 0:-50.13584025688089
- 1:66.10752862947831
2092: [-50.13583135204156, 66.10780065388907]
- 0:-50.13583135204156
- 1:66.10780065388907
2093: [-50.13516705978464, 66.10779622011165]
- 0:-50.13516705978464
- 1:66.10779622011165
2094: [-50.13515796178279, 66.10806378172482]
- 0:-50.13515796178279
- 1:66.10806378172482
2095: [-50.134493662773366, 66.10805934432676]
- 0:-50.134493662773366
- 1:66.10805934432676
2096: [-50.134484577054096, 66.10833131726717]
- 0:-50.134484577054096
- 1:66.10833131726717
2097: [-50.13249593069411, 66.1083179832743]
- 0:-50.13249593069411
- 1:66.1083179832743
2098: [-50.13248713957586, 66.10858994324657]
- 0:-50.13248713957586
- 1:66.10858994324657
2099: [-50.13182251202157, 66.10858550456055]
- 0:-50.13182251202157
- 1:66.10858550456055
2100: [-50.131813696027415, 66.10885305360294]
- 0:-50.131813696027415
- 1:66.10885305360294
2101: [-50.131149375814445, 66.10884859829912]
- 0:-50.131149375814445
- 1:66.10884859829912
2102: [-50.131140385607836, 66.1091160956557]
- 0:-50.131140385607836
- 1:66.1091160956557
2103: [-50.129811602976616, 66.10911165029277]
- 0:-50.129811602976616
- 1:66.10911165029277
2104: [-50.12979380401356, 66.10965122532222]
- 0:-50.12979380401356
- 1:66.10965122532222
2105: [-50.12912929557293, 66.10964670726925]
- 0:-50.12912929557293
- 1:66.10964670726925
2106: [-50.12913811940454, 66.10937474656292]
- 0:-50.12913811940454
- 1:66.10937474656292
2107: [-50.12714942615746, 66.10936585487913]
- 0:-50.12714942615746
- 1:66.10936585487913
2108: [-50.127140565322875, 66.1096334041829]
- 0:-50.127140565322875
- 1:66.1096334041829
2109: [-50.12514740868101, 66.10962442876841]
- 0:-50.12514740868101
- 1:66.10962442876841
2110: [-50.12513838227486, 66.10989204297546]
- 0:-50.12513838227486
- 1:66.10989204297546
2111: [-50.12447403253028, 66.10988755200889]
- 0:-50.12447403253028
- 1:66.10988755200889
2112: [-50.12444724361535, 66.11069467749729]
- 0:-50.12444724361535
- 1:66.11069467749729
2113: [-50.12577612760083, 66.11070359154374]
- 0:-50.12577612760083
- 1:66.11070359154374
2114: [-50.12576708588731, 66.11097109021522]
- 0:-50.12576708588731
- 1:66.11097109021522
2115: [-50.12510274955272, 66.11097113037152]
- 0:-50.12510274955272
- 1:66.11097113037152
2116: [-50.12509386915119, 66.1112386811381]
- 0:-50.12509386915119
- 1:66.1112386811381
2117: [-50.12376495868373, 66.11122975967572]
- 0:-50.12376495868373
- 1:66.11122975967572
2118: [-50.12375606544593, 66.11149731055417]
- 0:-50.12375606544593
- 1:66.11149731055417
2119: [-50.12242732535274, 66.111492837855]
- 0:-50.12242732535274
- 1:66.111492837855
2120: [-50.12243621450269, 66.1112208759719]
- 0:-50.12243621450269
- 1:66.1112208759719
2121: [-50.123100576080894, 66.11122526120748]
- 0:-50.123100576080894
- 1:66.11122526120748
2122: [-50.12310947563088, 66.11095771069988]
- 0:-50.12310947563088
- 1:66.11095771069988
2123: [-50.12111621978371, 66.11094437598675]
- 0:-50.12111621978371
- 1:66.11094437598675
2124: [-50.12110731772743, 66.11121633740667]
- 0:-50.12110731772743
- 1:66.11121633740667
2125: [-50.119783011009375, 66.1112074774333]
- 0:-50.119783011009375
- 1:66.1112074774333
2126: [-50.11977407951876, 66.11147502779859]
- 0:-50.11977407951876
- 1:66.11147502779859
2127: [-50.11844533416554, 66.11147051273639]
- 0:-50.11844533416554
- 1:66.11147051273639
2128: [-50.11845426219825, 66.11119855137008]
- 0:-50.11845426219825
- 1:66.11119855137008
2129: [-50.11778973017345, 66.11119408951873]
- 0:-50.11778973017345
- 1:66.11119408951873
2130: [-50.11778096340676, 66.11146610270075]
- 0:-50.11778096340676
- 1:66.11146610270075
2131: [-50.11711642452367, 66.11146163722775]
- 0:-50.11711642452367
- 1:66.11146163722775
2132: [-50.11709869403729, 66.11200120121508]
- 0:-50.11709869403729
- 1:66.11200120121508
2133: [-50.11576990356426, 66.11199224636044]
- 0:-50.11576990356426
- 1:66.11199224636044
2134: [-50.11576093356508, 66.11225979706904]
- 0:-50.11576093356508
- 1:66.11225979706904
2135: [-50.1144321658113, 66.11225535585885]
- 0:-50.1144321658113
- 1:66.11225535585885
2136: [-50.11446333427788, 66.1114437662674]
- 0:-50.11446333427788
- 1:66.1114437662674
2137: [-50.11578765979337, 66.11145268271913]
- 0:-50.11578765979337
- 1:66.11145268271913
2138: [-50.11580107021503, 66.11118518501264]
- 0:-50.11580107021503
- 1:66.11118518501264
2139: [-50.116460995062255, 66.11118955341952]
- 0:-50.116460995062255
- 1:66.11118955341952
2140: [-50.116469942487676, 66.11091759260395]
- 0:-50.116469942487676
- 1:66.11091759260395
2141: [-50.11779868074131, 66.11092653969759]
- 0:-50.11779868074131
- 1:66.11092653969759
2142: [-50.11780763123778, 66.11065899016094]
- 0:-50.11780763123778
- 1:66.11065899016094
2143: [-50.11847215049523, 66.1106634518391]
- 0:-50.11847215049523
- 1:66.1106634518391
2144: [-50.11849892859213, 66.10985186561881]
- 0:-50.11849892859213
- 1:66.10985186561881
2145: [-50.119163113999775, 66.10985633646595]
- 0:-50.119163113999775
- 1:66.10985633646595
2146: [-50.119172051448636, 66.10958878790387]
- 0:-50.119172051448636
- 1:66.10958878790387
2147: [-50.119836544223496, 66.10959324216604]
- 0:-50.119836544223496
- 1:66.10959324216604
2148: [-50.119854389713026, 66.10905373459002]
- 0:-50.119854389713026
- 1:66.10905373459002
2149: [-50.120518869248166, 66.10905818514354]
- 0:-50.120518869248166
- 1:66.10905818514354
2150: [-50.120527793718786, 66.10879063726692]
- 0:-50.120527793718786
- 1:66.10879063726692
2151: [-50.12119209875775, 66.10879503230126]
- 0:-50.12119209875775
- 1:66.10879503230126
2152: [-50.12120100013815, 66.10852307349873]
- 0:-50.12120100013815
- 1:66.10852307349873
2153: [-50.12186546606332, 66.10852751680963]
- 0:-50.12186546606332
- 1:66.10852751680963
2154: [-50.12188327238244, 66.1079880110282]
- 0:-50.12188327238244
- 1:66.1079880110282
2155: [-50.12254772506822, 66.10799245063077]
- 0:-50.12254772506822
- 1:66.10799245063077
2156: [-50.12255663011162, 66.10772490364299]
- 0:-50.12255663011162
- 1:66.10772490364299
2157: [-50.12322107604539, 66.10772933962431]
- 0:-50.12322107604539
- 1:66.10772933962431
2158: [-50.123229957684266, 66.10745738172805]
- 0:-50.123229957684266
- 1:66.10745738172805
2159: [-50.123894396760825, 66.10746181408764]
- 0:-50.123894396760825
- 1:66.10746181408764
2160: [-50.1239032889001, 66.10719426750127]
- 0:-50.1239032889001
- 1:66.10719426750127
2161: [-50.12456772122443, 66.10719869623975]
- 0:-50.12456772122443
- 1:66.10719869623975
2162: [-50.124576589750376, 66.10692673875342]
- 0:-50.124576589750376
- 1:66.10692673875342
2163: [-50.12524101521726, 66.10693116387031]
- 0:-50.12524101521726
- 1:66.10693116387031
2164: [-50.12525877361988, 66.10639607178555]
- 0:-50.12525877361988
- 1:66.10639607178555
2165: [-50.12393009418259, 66.10638715349165]
- 0:-50.12393009418259
- 1:66.10638715349165
2166: [-50.12392120225472, 66.10665469921905]
- 0:-50.12392120225472
- 1:66.10665469921905
2167: [-50.123256614695386, 66.10665021522536]
- 0:-50.123256614695386
- 1:66.10665021522536
2168: [-50.1232388562054, 66.107189835228]
- 0:-50.1232388562054
- 1:66.107189835228
2169: [-50.12257456948914, 66.1071853345509]
- 0:-50.12257456948914
- 1:66.1071853345509
2170: [-50.12258774651419, 66.10691778842475]
- 0:-50.12258774651419
- 1:66.10691778842475
2171: [-50.1219233194659, 66.1069133491918]
- 0:-50.1219233194659
- 1:66.1069133491918
2172: [-50.12191440829404, 66.10718089523486]
- 0:-50.12191440829404
- 1:66.10718089523486
2173: [-50.12058555685733, 66.10717641709161]
- 0:-50.12058555685733
- 1:66.10717641709161
2174: [-50.12057663285164, 66.10744396325123]
- 0:-50.12057663285164
- 1:66.10744396325123
2175: [-50.11791905038111, 66.10743060500292]
- 0:-50.11791905038111
- 1:66.10743060500292
2176: [-50.11790129746933, 66.10796563262984]
- 0:-50.11790129746933
- 1:66.10796563262984
2177: [-50.119230060739554, 66.1079746155351]
- 0:-50.119230060739554
- 1:66.1079746155351
2178: [-50.11922112375892, 66.10824216238056]
- 0:-50.11922112375892
- 1:66.10824216238056
2179: [-50.11855684669865, 66.10824216805894]
- 0:-50.11855684669865
- 1:66.10824216805894
2180: [-50.1185300161887, 66.10904481005784]
- 0:-50.1185300161887
- 1:66.10904481005784
2181: [-50.117865551665716, 66.10904476005443]
- 0:-50.117865551665716
- 1:66.10904476005443
2182: [-50.11785676937958, 66.10931235977698]
- 0:-50.11785676937958
- 1:66.10931235977698
2183: [-50.11719228188486, 66.10930789502132]
- 0:-50.11719228188486
- 1:66.10930789502132
2184: [-50.11718334141427, 66.10957985417949]
- 0:-50.11718334141427
- 1:66.10957985417949
2185: [-50.11651901480503, 66.10957543770557]
- 0:-50.11651901480503
- 1:66.10957543770557
2186: [-50.116501088866585, 66.11011053443225]
- 0:-50.116501088866585
- 1:66.11011053443225
2187: [-50.11583672776146, 66.11010599748488]
- 0:-50.11583672776146
- 1:66.11010599748488
2188: [-50.115818825937474, 66.11064562310095]
- 0:-50.115818825937474
- 1:66.11064562310095
2189: [-50.11515461934204, 66.1106411343521]
- 0:-50.11515461934204
- 1:66.1106411343521
2190: [-50.115145512670395, 66.11091315956563]
- 0:-50.115145512670395
- 1:66.11091315956563
2191: [-50.114481299221545, 66.1109086671967]
- 0:-50.114481299221545
- 1:66.1109086671967
2192: [-50.11449908054294, 66.11036910620511]
- 0:-50.11449908054294
- 1:66.11036910620511
2193: [-50.115163281124566, 66.11037359840088]
- 0:-50.115163281124566
- 1:66.11037359840088
2194: [-50.1151813634208, 66.10983402543856]
- 0:-50.1151813634208
- 1:66.10983402543856
2195: [-50.11451689853166, 66.10983407428016]
- 0:-50.11451689853166
- 1:66.10983407428016
2196: [-50.11450791638067, 66.11010162253045]
- 0:-50.11450791638067
- 1:66.11010162253045
2197: [-50.113179066363784, 66.11009270552354]
- 0:-50.113179066363784
- 1:66.11009270552354
2198: [-50.113170217764335, 66.11036018902624]
- 0:-50.113170217764335
- 1:66.11036018902624
2199: [-50.11184580920545, 66.11035572114311]
- 0:-50.11184580920545
- 1:66.11035572114311
2200: [-50.111863641644284, 66.10981616199129]
- 0:-50.111863641644284
- 1:66.10981616199129
2201: [-50.11319248035737, 66.10982509291495]
- 0:-50.11319248035737
- 1:66.10982509291495
2202: [-50.11320145977798, 66.10955313398573]
- 0:-50.11320145977798
- 1:66.10955313398573
2203: [-50.114525697282645, 66.10956206326999]
- 0:-50.114525697282645
- 1:66.10956206326999
2204: [-50.11453909827439, 66.10929445101378]
- 0:-50.11453909827439
- 1:66.10929445101378
2205: [-50.11652779402223, 66.10930342673052]
- 0:-50.11652779402223
- 1:66.10930342673052
2206: [-50.11653675681436, 66.10903587908341]
- 0:-50.11653675681436
- 1:66.10903587908341
2207: [-50.117201238294214, 66.10904034728755]
- 0:-50.117201238294214
- 1:66.10904034728755
2208: [-50.117210157255585, 66.10876827194674]
- 0:-50.117210157255585
- 1:66.10876827194674
2209: [-50.11787448550839, 66.10877280139253]
- 0:-50.11787448550839
- 1:66.10877280139253
2210: [-50.1178923852087, 66.10823770718441]
- 0:-50.1178923852087
- 1:66.10823770718441
2211: [-50.115903585065176, 66.10822429062677]
- 0:-50.115903585065176
- 1:66.10822429062677
2212: [-50.11589034367502, 66.10849183709598]
- 0:-50.11589034367502
- 1:66.10849183709598
2213: [-50.11390155797095, 66.10848291642637]
- 0:-50.11390155797095
- 1:66.10848291642637
2214: [-50.113892569837745, 66.10875046315792]
- 0:-50.113892569837745
- 1:66.10875046315792
2215: [-50.11322826063798, 66.10874602929869]
- 0:-50.11322826063798
- 1:66.10874602929869
2216: [-50.11321928143111, 66.10901798735516]
- 0:-50.11321928143111
- 1:66.10901798735516
2217: [-50.11255496537652, 66.10901354987526]
- 0:-50.11255496537652
- 1:66.10901354987526
2218: [-50.11254596433702, 66.10928109700721]
- 0:-50.11254596433702
- 1:66.10928109700721
2219: [-50.11121715062949, 66.10927215936259]
- 0:-50.11121715062949
- 1:66.10927215936259
2220: [-50.11120817316159, 66.10954423450751]
- 0:-50.11120817316159
- 1:66.10954423450751
2221: [-50.10987934500668, 66.10953528255095]
- 0:-50.10987934500668
- 1:66.10953528255095
2222: [-50.10990167079722, 66.10900018912662]
- 0:-50.10990167079722
- 1:66.10900018912662
2223: [-50.10790840158598, 66.10898682608438]
- 0:-50.10790840158598
- 1:66.10898682608438
2224: [-50.10789967003534, 66.1092543596765]
- 0:-50.10789967003534
- 1:66.1092543596765
2225: [-50.10590624619859, 66.10924544054288]
- 0:-50.10590624619859
- 1:66.10924544054288
2226: [-50.105919715792965, 66.10897341887475]
- 0:-50.105919715792965
- 1:66.10897341887475
2227: [-50.104590942649914, 66.1089689386982]
- 0:-50.104590942649914
- 1:66.1089689386982
2228: [-50.10458203283189, 66.10923653671655]
- 0:-50.10458203283189
- 1:66.10923653671655
2229: [-50.10325323122928, 66.10922763110948]
- 0:-50.10325323122928
- 1:66.10922763110948
2230: [-50.103262153813176, 66.10896003326377]
- 0:-50.103262153813176
- 1:66.10896003326377
2231: [-50.10193336350957, 66.10895111369244]
- 0:-50.10193336350957
- 1:66.10895111369244
2232: [-50.10192444175446, 66.10922312248778]
- 0:-50.10192444175446
- 1:66.10922312248778
2233: [-50.100600077391796, 66.10921424128775]
- 0:-50.100600077391796
- 1:66.10921424128775
2234: [-50.10059096153278, 66.1094817871525]
- 0:-50.10059096153278
- 1:66.1094817871525
2235: [-50.10125117096834, 66.10948622276753]
- 0:-50.10125117096834
- 1:66.10948622276753
2236: [-50.10124206137619, 66.10975376900365]
- 0:-50.10124206137619
- 1:66.10975376900365
2237: [-50.101906549536764, 66.10975820192849]
- 0:-50.101906549536764
- 1:66.10975820192849
2238: [-50.10189761397298, 66.11002580046015]
- 0:-50.10189761397298
- 1:66.11002580046015
2239: [-50.10123313291903, 66.11002577858494]
- 0:-50.10123313291903
- 1:66.11002577858494
2240: [-50.10122433731839, 66.11029331247515]
- 0:-50.10122433731839
- 1:66.11029331247515
2241: [-50.10055983591848, 66.11028887584249]
- 0:-50.10055983591848
- 1:66.11028887584249
2242: [-50.100551033866445, 66.11055640993159]
- 0:-50.100551033866445
- 1:66.11055640993159
2243: [-50.09524018628627, 66.11052516228382]
- 0:-50.09524018628627
- 1:66.11052516228382
2244: [-50.09524903934906, 66.11025762887591]
- 0:-50.09524903934906
- 1:66.11025762887591
2245: [-50.094584702260526, 66.1102532123869]
- 0:-50.094584702260526
- 1:66.1102532123869
2246: [-50.09459798088814, 66.10998561547603]
- 0:-50.09459798088814
- 1:66.10998561547603
2247: [-50.09393364981772, 66.10998119556295]
- 0:-50.09393364981772
- 1:66.10998119556295
2248: [-50.09392037714017, 66.110253203499]
- 0:-50.09392037714017
- 1:66.110253203499
2249: [-50.09259595252145, 66.11024423711379]
- 0:-50.09259595252145
- 1:66.11024423711379
2250: [-50.09260481887093, 66.10997229320033]
- 0:-50.09260481887093
- 1:66.10997229320033
2251: [-50.09194031899731, 66.109967810749]
- 0:-50.09194031899731
- 1:66.109967810749
2252: [-50.09194920378479, 66.10970027833969]
- 0:-50.09194920378479
- 1:66.10970027833969
2253: [-50.09062497034838, 66.10969134314799]
- 0:-50.09062497034838
- 1:66.10969134314799
2254: [-50.0906427651488, 66.10915627952646]
- 0:-50.0906427651488
- 1:66.10915627952646
2255: [-50.08864965399504, 66.10914289448365]
- 0:-50.08864965399504
- 1:66.10914289448365
2256: [-50.08865857043157, 66.10887536335837]
- 0:-50.08865857043157
- 1:66.10887536335837
2257: [-50.08799853428157, 66.10887091319769]
- 0:-50.08799853428157
- 1:66.10887091319769
2258: [-50.08800742435049, 66.10859885457137]
- 0:-50.08800742435049
- 1:66.10859885457137
2259: [-50.08734298648024, 66.10859887572688]
- 0:-50.08734298648024
- 1:66.10859887572688
2260: [-50.0873520506538, 66.10832686941951]
- 0:-50.0873520506538
- 1:66.10832686941951
2261: [-50.08602314276914, 66.10831796232837]
- 0:-50.08602314276914
- 1:66.10831796232837
2262: [-50.08603208447403, 66.10805043240642]
- 0:-50.08603208447403
- 1:66.10805043240642
2263: [-50.08537221245068, 66.10804590365689]
- 0:-50.08537221245068
- 1:66.10804590365689
2264: [-50.08538116042109, 66.10777837410548]
- 0:-50.08538116042109
- 1:66.10777837410548
2265: [-50.084052275883394, 66.10776944619867]
- 0:-50.084052275883394
- 1:66.10776944619867
2266: [-50.08404331515041, 66.10803697557724]
- 0:-50.08404331515041
- 1:66.10803697557724
2267: [-50.08337905489867, 66.10803702765583]
- 0:-50.08337905489867
- 1:66.10803702765583
2268: [-50.083396810722974, 66.10749750632064]
- 0:-50.083396810722974
- 1:66.10749750632064
2269: [-50.08273680348995, 66.10749302854676]
- 0:-50.08273680348995
- 1:66.10749302854676
2270: [-50.082745776797864, 66.10722549990993]
- 0:-50.082745776797864
- 1:66.10722549990993
2271: [-50.081416914877266, 66.1072165441169]
- 0:-50.081416914877266
- 1:66.1072165441169
2272: [-50.081425900874436, 66.10694901593789]
- 0:-50.081425900874436
- 1:66.10694901593789
2273: [-50.079437075119166, 66.1069356678141]
- 0:-50.079437075119166
- 1:66.1069356678141
2274: [-50.07942821647942, 66.10720313091598]
- 0:-50.07942821647942
- 1:66.10720313091598
2275: [-50.07876379449148, 66.1071986955223]
- 0:-50.07876379449148
- 1:66.1071986955223
2276: [-50.0787728059678, 66.10693116768918]
- 0:-50.0787728059678
- 1:66.10693116768918
2277: [-50.078108222333455, 66.10692667689264]
- 0:-50.078108222333455
- 1:66.10692667689264
2278: [-50.0781172401187, 66.106659149431]
- 0:-50.0781172401187
- 1:66.106659149431
2279: [-50.076792838713196, 66.10665019806954]
- 0:-50.076792838713196
- 1:66.10665019806954
2280: [-50.07676167291382, 66.10745735901882]
- 0:-50.07676167291382
- 1:66.10745735901882
2281: [-50.0774261024829, 66.10746180510347]
- 0:-50.0774261024829
- 1:66.10746180510347
2282: [-50.077417078099906, 66.1077293333374]
- 0:-50.077417078099906
- 1:66.1077293333374
2283: [-50.07808151368557, 66.1077337759739]
- 0:-50.07808151368557
- 1:66.1077337759739
2284: [-50.078068076537356, 66.10800136786867]
- 0:-50.078068076537356
- 1:66.10800136786867
2285: [-50.078732518144115, 66.10800580708045]
- 0:-50.078732518144115
- 1:66.10800580708045
2286: [-50.07872368392492, 66.10827779909913]
- 0:-50.07872368392492
- 1:66.10827779909913
2287: [-50.08005256888889, 66.10828225600098]
- 0:-50.08005256888889
- 1:66.10828225600098
2288: [-50.08004343343728, 66.10855426134829]
- 0:-50.08004343343728
- 1:66.10855426134829
2289: [-50.0813679207001, 66.10856317878044]
- 0:-50.0813679207001
- 1:66.10856317878044
2290: [-50.08135893422785, 66.10883070867663]
- 0:-50.08135893422785
- 1:66.10883070867663
2291: [-50.08202324680525, 66.10883519531863]
- 0:-50.08202324680525
- 1:66.10883519531863
2292: [-50.081992064923064, 66.10964231346699]
- 0:-50.081992064923064
- 1:66.10964231346699
2293: [-50.08133217361826, 66.10963787990993]
- 0:-50.08133217361826
- 1:66.10963787990993
2294: [-50.08131891397534, 66.1099054095321]
- 0:-50.08131891397534
- 1:66.1099054095321
2295: [-50.080658848286106, 66.10990092042805]
- 0:-50.080658848286106
- 1:66.10990092042805
2296: [-50.08064544591168, 66.11017292616818]
- 0:-50.08064544591168
- 1:66.11017292616818
2297: [-50.08263876238653, 66.11018184669389]
- 0:-50.08263876238653
- 1:66.11018184669389
2298: [-50.08264773649841, 66.10991431519732]
- 0:-50.08264773649841
- 1:66.10991431519732
2299: [-50.08397655756262, 66.10992320672514]
- 0:-50.08397655756262
- 1:66.10992320672514
2300: [-50.08396759621385, 66.1101907383946]
- 0:-50.08396759621385
- 1:66.1101907383946
2301: [-50.08462751998259, 66.1101952748762]
- 0:-50.08462751998259
- 1:66.1101952748762
2302: [-50.08460083308323, 66.11100233493752]
- 0:-50.08460083308323
- 1:66.11100233493752
2303: [-50.08327196147168, 66.11099344973985]
- 0:-50.08327196147168
- 1:66.11099344973985
2304: [-50.083254035934345, 66.11153292662449]
- 0:-50.083254035934345
- 1:66.11153292662449
2305: [-50.08524288860303, 66.11154634559375]
- 0:-50.08524288860303
- 1:66.11154634559375
2306: [-50.085233939501585, 66.11181387915168]
- 0:-50.085233939501585
- 1:66.11181387915168
2307: [-50.08589832041858, 66.11181834561117]
- 0:-50.08589832041858
- 1:66.11181834561117
2308: [-50.0858716706161, 66.1126254113668]
- 0:-50.0858716706161
- 1:66.1126254113668
2309: [-50.08719588241629, 66.11263434586773]
- 0:-50.08719588241629
- 1:66.11263434586773
2310: [-50.087178054310186, 66.11317394402354]
- 0:-50.087178054310186
- 1:66.11317394402354
2311: [-50.088507012814944, 66.11317837710553]
- 0:-50.088507012814944
- 1:66.11317837710553
2312: [-50.088489042452316, 66.1137179248122]
- 0:-50.088489042452316
- 1:66.1137179248122
2313: [-50.08914887882745, 66.11372238596769]
- 0:-50.08914887882745
- 1:66.11372238596769
2314: [-50.08913996736115, 66.1139899223271]
- 0:-50.08913996736115
- 1:66.1139899223271
2315: [-50.08980439736858, 66.11399436832232]
- 0:-50.08980439736858
- 1:66.11399436832232
2316: [-50.089786619957145, 66.11453397004625]
- 0:-50.089786619957145
- 1:66.11453397004625
2317: [-50.090451062472745, 66.11453841268023]
- 0:-50.090451062472745
- 1:66.11453841268023
2318: [-50.09042867675055, 66.11507349952629]
- 0:-50.09042867675055
- 1:66.11507349952629
2319: [-50.09109313167027, 66.11507793882282]
- 0:-50.09109313167027
- 1:66.11507793882282
2320: [-50.09108441861043, 66.11534994002821]
- 0:-50.09108441861043
- 1:66.11534994002821
2321: [-50.091748699891966, 66.11534991271493]
- 0:-50.091748699891966
- 1:66.11534991271493
2322: [-50.091757586223835, 66.11508237458523]
- 0:-50.091757586223835
- 1:66.11508237458523
2323: [-50.09242189394575, 66.11508687164863]
- 0:-50.09242189394575
- 1:66.11508687164863
2324: [-50.09237295099087, 66.11643351668123]
- 0:-50.09237295099087
- 1:66.11643351668123
2325: [-50.093701910196934, 66.11643796020424]
- 0:-50.093701910196934
- 1:66.11643796020424
2326: [-50.09369290849128, 66.11670997610275]
- 0:-50.09369290849128
- 1:66.11670997610275
2327: [-50.095021744875304, 66.1167188817442]
- 0:-50.095021744875304
- 1:66.1167188817442
2328: [-50.095039588341145, 66.11617932597015]
- 0:-50.095039588341145
- 1:66.11617932597015
2329: [-50.09570391987946, 66.11618380573712]
- 0:-50.09570391987946
- 1:66.11618380573712
2330: [-50.09572175018967, 66.1156442509459]
- 0:-50.09572175018967
- 1:66.1156442509459
2331: [-50.097050532885646, 66.11565313469497]
- 0:-50.097050532885646
- 1:66.11565313469497
2332: [-50.09704155097648, 66.11592073892105]
- 0:-50.09704155097648
- 1:66.11592073892105
2333: [-50.099030394489944, 66.11593406990958]
- 0:-50.099030394489944
- 1:66.11593406990958
2334: [-50.09904378552092, 66.11566210693502]
- 0:-50.09904378552092
- 1:66.11566210693502
2335: [-50.10036814423213, 66.11567101942305]
- 0:-50.10036814423213
- 1:66.11567101942305
2336: [-50.10037694774112, 66.11540347989846]
- 0:-50.10037694774112
- 1:66.11540347989846
2337: [-50.10369910483052, 66.11542126382551]
- 0:-50.10369910483052
- 1:66.11542126382551
2338: [-50.10370804410884, 66.11515377608447]
- 0:-50.10370804410884
- 1:66.11515377608447
2339: [-50.105036777917924, 66.11515816350196]
- 0:-50.105036777917924
- 1:66.11515816350196
2340: [-50.10505460941273, 66.11462307176588]
- 0:-50.10505460941273
- 1:66.11462307176588
2341: [-50.10638351921157, 66.11463202462315]
- 0:-50.10638351921157
- 1:66.11463202462315
2342: [-50.10639239708588, 66.11436000940749]
- 0:-50.10639239708588
- 1:66.11436000940749
2343: [-50.105727948859546, 66.11435553483273]
- 0:-50.105727948859546
- 1:66.11435553483273
2344: [-50.10575909236891, 66.11354848288623]
- 0:-50.10575909236891
- 1:66.11354848288623
2345: [-50.10641908028668, 66.1135529046981]
- 0:-50.10641908028668
- 1:66.1135529046981
2346: [-50.10641018828755, 66.11382050783476]
- 0:-50.10641018828755
- 1:66.11382050783476
2347: [-50.10707462327575, 66.11382497870235]
- 0:-50.10707462327575
- 1:66.11382497870235
2348: [-50.107083508890305, 66.1135573754795]
- 0:-50.107083508890305
- 1:66.1135573754795
2349: [-50.10774793712747, 66.11356184272691]
- 0:-50.10774793712747
- 1:66.11356184272691
2350: [-50.107756801742944, 66.1132898285039]
- 0:-50.107756801742944
- 1:66.1132898285039
2351: [-50.10908564413776, 66.11329875222346]
- 0:-50.10908564413776
- 1:66.11329875222346
2352: [-50.10909467820946, 66.1130312012307]
- 0:-50.10909467820946
- 1:66.1130312012307
2353: [-50.109759092472984, 66.11303565770262]
- 0:-50.109759092472984
- 1:66.11303565770262
2354: [-50.10975006478447, 66.11330320878236]
- 0:-50.10975006478447
- 1:66.11330320878236
2355: [-50.110414485063735, 66.11330766180733]
- 0:-50.110414485063735
- 1:66.11330766180733
2356: [-50.11042335995972, 66.11304017549666]
- 0:-50.11042335995972
- 1:66.11304017549666
2357: [-50.11175231788321, 66.11304459471809]
- 0:-50.11175231788321
- 1:66.11304459471809
2358: [-50.11172989622232, 66.11358417335828]
- 0:-50.11172989622232
- 1:66.11358417335828
2359: [-50.112394321785786, 66.11358861589189]
- 0:-50.112394321785786
- 1:66.11358861589189
2360: [-50.112385319442616, 66.11385616788732]
- 0:-50.112385319442616
- 1:66.11385616788732
2361: [-50.11437861307197, 66.11386947454486]
- 0:-50.11437861307197
- 1:66.11386947454486
2362: [-50.11434742659009, 66.11467666072376]
- 0:-50.11434742659009
- 1:66.11467666072376
2363: [-50.113683122896525, 66.1146721635616]
- 0:-50.113683122896525
- 1:66.1146721635616
2364: [-50.11365616845961, 66.11547923558707]
- 0:-50.11365616845961
- 1:66.11547923558707
2365: [-50.11299169873165, 66.11547479949103]
- 0:-50.11299169873165
- 1:66.11547479949103
2366: [-50.11298301641685, 66.11574234062287]
- 0:-50.11298301641685
- 1:66.11574234062287
2367: [-50.11231855521872, 66.11574231215246]
- 0:-50.11231855521872
- 1:66.11574231215246
2368: [-50.112300717004814, 66.11627747291469]
- 0:-50.112300717004814
- 1:66.11627747291469
2369: [-50.11163637370339, 66.11627296463367]
- 0:-50.11163637370339
- 1:66.11627296463367
2370: [-50.11156941291685, 66.11815919125257]
- 0:-50.11156941291685
- 1:66.11815919125257
2371: [-50.1109048778086, 66.11815474366553]
- 0:-50.1109048778086
- 1:66.11815474366553
2372: [-50.11086930880597, 66.11922942236805]
- 0:-50.11086930880597
- 1:66.11922942236805
2373: [-50.110204909093426, 66.11922931734853]
- 0:-50.110204909093426
- 1:66.11922931734853
2374: [-50.110196053798106, 66.1194969270029]
- 0:-50.110196053798106
- 1:66.1194969270029
2375: [-50.109531485813726, 66.11949247191525]
- 0:-50.109531485813726
- 1:66.11949247191525
2376: [-50.10952260271546, 66.11975996499541]
- 0:-50.10952260271546
- 1:66.11975996499541
2377: [-50.10885821053169, 66.1197599695168]
- 0:-50.10885821053169
- 1:66.1197599695168
2378: [-50.108849342323374, 66.120027579572]
- 0:-50.108849342323374
- 1:66.120027579572
2379: [-50.10951375576032, 66.12003198645034]
- 0:-50.10951375576032
- 1:66.12003198645034
2380: [-50.10949601056005, 66.12056709081246]
- 0:-50.10949601056005
- 1:66.12056709081246
2381: [-50.110820294616914, 66.12057602361405]
- 0:-50.110820294616914
- 1:66.12057602361405
2382: [-50.110811292591656, 66.1208479941983]
- 0:-50.110811292591656
- 1:66.1208479941983
2383: [-50.1114757090023, 66.12084797942701]
- 0:-50.1114757090023
- 1:66.12084797942701
2384: [-50.11146688119876, 66.12112000230086]
- 0:-50.11146688119876
- 1:66.12112000230086
2385: [-50.11346005233851, 66.12112894134206]
- 0:-50.11346005233851
- 1:66.12112894134206
2386: [-50.11345107613213, 66.12140091285306]
- 0:-50.11345107613213
- 1:66.12140091285306
2387: [-50.11477996719591, 66.1214053799535]
- 0:-50.11477996719591
- 1:66.1214053799535
2388: [-50.11476219263556, 66.1219449647486]
- 0:-50.11476219263556
- 1:66.1219449647486
2389: [-50.11807960839651, 66.12196277267871]
- 0:-50.11807960839651
- 1:66.12196277267871
2390: [-50.118070845188925, 66.12223479757041]
- 0:-50.118070845188925
- 1:66.12223479757041
2391: [-50.11873514187064, 66.12223480922981]
- 0:-50.11873514187064
- 1:66.12223480922981
2392: [-50.118726217262676, 66.12250678259214]
- 0:-50.118726217262676
- 1:66.12250678259214
2393: [-50.119390704125955, 66.12251125407366]
- 0:-50.119390704125955
- 1:66.12251125407366
2394: [-50.11938176949187, 66.12277881644243]
- 0:-50.11938176949187
- 1:66.12277881644243
2395: [-50.122034797390285, 66.122792165142]
- 0:-50.122034797390285
- 1:66.122792165142
2396: [-50.12202607288474, 66.12306419141574]
- 0:-50.12202607288474
- 1:66.12306419141574
2397: [-50.126012408113716, 66.12308647707006]
- 0:-50.126012408113716
- 1:66.12308647707006
2398: [-50.12600353715397, 66.12335404086454]
- 0:-50.12600353715397
- 1:66.12335404086454
2399: [-50.12866108170728, 66.12337182913684]
- 0:-50.12866108170728
- 1:66.12337182913684
2400: [-50.12867007704822, 66.12309990550281]
- 0:-50.12867007704822
- 1:66.12309990550281
2401: [-50.12999891804921, 66.1231088042156]
- 0:-50.12999891804921
- 1:66.1231088042156
2402: [-50.12998991755846, 66.12337631663256]
- 0:-50.12998991755846
- 1:66.12337631663256
2403: [-50.13064999601165, 66.1233807934778]
- 0:-50.13064999601165
- 1:66.1233807934778
2404: [-50.13065882231201, 66.123113229086]
- 0:-50.13065882231201
- 1:66.123113229086
2405: [-50.131323168685995, 66.12311770207648]
- 0:-50.131323168685995
- 1:66.12311770207648
2406: [-50.13131434877113, 66.12338526655427]
- 0:-50.13131434877113
- 1:66.12338526655427
2407: [-50.13397188376195, 66.12339864726053]
- 0:-50.13397188376195
- 1:66.12339864726053
2408: [-50.13398067813391, 66.12313108244395]
- 0:-50.13398067813391
- 1:66.12313108244395
2409: [-50.13464533680904, 66.1231355247704]
- 0:-50.13464533680904
- 1:66.1231355247704
2410: [-50.13465412472454, 66.12286796015181]
- 0:-50.13465412472454
- 1:66.12286796015181
2411: [-50.13797627206084, 66.12288581086767]
- 0:-50.13797627206084
- 1:66.12288581086767
2412: [-50.13795827790916, 66.12342090236994]
- 0:-50.13795827790916
- 1:66.12342090236994
2413: [-50.14061600531954, 66.12343872182305]
- 0:-50.14061600531954
- 1:66.12343872182305
2414: [-50.14062488388268, 66.12316679663384]
- 0:-50.14062488388268
- 1:66.12316679663384
2415: [-50.14194928993949, 66.12317563376386]
- 0:-50.14194928993949
- 1:66.12317563376386
2416: [-50.141958175517445, 66.12290812008666]
- 0:-50.141958175517445
- 1:66.12290812008666
2417: [-50.14594465398809, 66.12292599397816]
- 0:-50.14594465398809
- 1:66.12292599397816
2418: [-50.1459536475568, 66.12265841517616]
- 0:-50.1459536475568
- 1:66.12265841517616
2419: [-50.14661782573461, 66.1226628716774]
- 0:-50.14661782573461
- 1:66.1226628716774
2420: [-50.14662681284739, 66.1223952930723]
- 0:-50.14662681284739
- 1:66.1223952930723
2421: [-50.14862010126868, 66.12240425553391]
- 0:-50.14862010126868
- 1:66.12240425553391
2422: [-50.14863789060226, 66.12186916356649]
- 0:-50.14863789060226
- 1:66.12186916356649
2423: [-50.15129560717288, 66.12188251219773]
- 0:-50.15129560717288
- 1:66.12188251219773
2424: [-50.151286664907154, 66.12215009083363]
- 0:-50.151286664907154
- 1:66.12215009083363
2425: [-50.151950995008484, 66.12215457077113]
- 0:-50.151950995008484
- 1:66.12215457077113
2426: [-50.15194220541106, 66.1224220848703]
- 0:-50.15194220541106
- 1:66.1224220848703
2427: [-50.153266434991586, 66.12243098349833]
- 0:-50.153266434991586
- 1:66.12243098349833
2428: [-50.15325751170107, 66.12269856296138]
- 0:-50.15325751170107
- 1:66.12269856296138
2429: [-50.153921853461384, 66.12270303250003]
- 0:-50.153921853461384
- 1:66.12270303250003
2430: [-50.153904187708044, 66.12324253894718]
- 0:-50.153904187708044
- 1:66.12324253894718
2431: [-50.15523287374141, 66.12324705636799]
- 0:-50.15523287374141
- 1:66.12324705636799
2432: [-50.15519727867142, 66.12432608645209]
- 0:-50.15519727867142
- 1:66.12432608645209
2433: [-50.155861657840774, 66.12433054591521]
- 0:-50.155861657840774
- 1:66.12433054591521
2434: [-50.15585275960842, 66.12459812772035]
- 0:-50.15585275960842
- 1:66.12459812772035
2435: [-50.15651714479244, 66.1246025837381]
- 0:-50.15651714479244
- 1:66.1246025837381
2436: [-50.15650825287742, 66.12487016591345]
- 0:-50.15650825287742
- 1:66.12487016591345
2437: [-50.15717264407599, 66.12487461848575]
- 0:-50.15717264407599
- 1:66.12487461848575
2438: [-50.157154727350616, 66.12541414345337]
- 0:-50.157154727350616
- 1:66.12541414345337
2439: [-50.15781925486016, 66.12541411630598]
- 0:-50.15781925486016
- 1:66.12541411630598
2440: [-50.15781025170507, 66.12568617587198]
- 0:-50.15781025170507
- 1:66.12568617587198
2441: [-50.15847466142393, 66.12569062164103]
- 0:-50.15847466142393
- 1:66.12569062164103
2442: [-50.15845689373619, 66.12622567230474]
- 0:-50.15845689373619
- 1:66.12622567230474
2443: [-50.15912116949971, 66.12623017963129]
- 0:-50.15912116949971
- 1:66.12623017963129
2444: [-50.15911232547689, 66.12650217532591]
- 0:-50.15911232547689
- 1:66.12650217532591
2445: [-50.15977673085029, 66.12650220282383]
- 0:-50.15977673085029
- 1:66.12650220282383
2446: [-50.15976772533497, 66.1267741470431]
- 0:-50.15976772533497
- 1:66.1267741470431
2447: [-50.160432136615924, 66.12677417109087]
- 0:-50.160432136615924
- 1:66.12677417109087
2448: [-50.160423305441014, 66.12704616753572]
- 0:-50.160423305441014
- 1:66.12704616753572
2449: [-50.161752162418104, 66.1270506166743]
- 0:-50.161752162418104
- 1:66.1270506166743
2450: [-50.1617297453079, 66.12759016183644]
- 0:-50.1617297453079
- 1:66.12759016183644
2451: [-50.16306309259067, 66.12759905920132]
- 0:-50.16306309259067
- 1:66.12759905920132
2452: [-50.16304067748591, 66.1281341944133]
- 0:-50.16304067748591
- 1:66.1281341944133
2453: [-50.16370514181178, 66.12813861273075]
- 0:-50.16370514181178
- 1:66.12813861273075
2454: [-50.16370078590562, 66.1284106615141]
- 0:-50.16370078590562
- 1:66.1284106615141
2455: [-50.1650251131695, 66.12841509068555]
- 0:-50.1650251131695
- 1:66.12841509068555
2456: [-50.16501618064114, 66.12868715439525]
- 0:-50.16501618064114
- 1:66.12868715439525
2457: [-50.166344962167344, 66.12869162006793]
- 0:-50.166344962167344
- 1:66.12869162006793
2458: [-50.166335997046914, 66.12895915595745]
- 0:-50.166335997046914
- 1:66.12895915595745
2459: [-50.16700047866567, 66.12896355687467]
- 0:-50.16700047866567
- 1:66.12896355687467
2460: [-50.16699156548364, 66.12923562142286]
- 0:-50.16699156548364
- 1:66.12923562142286
2461: [-50.168320369999414, 66.12924006624169]
- 0:-50.168320369999414
- 1:66.12924006624169
2462: [-50.16831144813925, 66.12951201448455]
- 0:-50.16831144813925
- 1:66.12951201448455
2463: [-50.1689757708242, 66.12951205838206]
- 0:-50.1689757708242
- 1:66.12951205838206
2464: [-50.16896702333689, 66.12978405883923]
- 0:-50.16896702333689
- 1:66.12978405883923
2465: [-50.1696313519305, 66.12978409928658]
- 0:-50.1696313519305
- 1:66.12978409928658
2466: [-50.169613509383936, 66.1303235860253]
- 0:-50.169613509383936
- 1:66.1303235860253
2467: [-50.17027787482716, 66.130328034647]
- 0:-50.17027787482716
- 1:66.130328034647
2468: [-50.17026894761153, 66.13059557276215]
- 0:-50.17026894761153
- 1:66.13059557276215
2469: [-50.17093348702672, 66.1306000697762]
- 0:-50.17093348702672
- 1:66.1306000697762
2470: [-50.170924444443095, 66.13087208474474]
- 0:-50.170924444443095
- 1:66.13087208474474
2471: [-50.171588943600916, 66.13087204999374]
- 0:-50.171588943600916
- 1:66.13087204999374
2472: [-50.17157099279191, 66.13141160448134]
- 0:-50.17157099279191
- 1:66.13141160448134
2473: [-50.17223555073609, 66.13141609469231]
- 0:-50.17223555073609
- 1:66.13141609469231
2474: [-50.172186447003575, 66.13303027429507]
- 0:-50.172186447003575
- 1:66.13303027429507
2475: [-50.172850875147816, 66.13303470963702]
- 0:-50.172850875147816
- 1:66.13303470963702
2476: [-50.172824046617016, 66.13384181095188]
- 0:-50.172824046617016
- 1:66.13384181095188
2477: [-50.173488347302, 66.13384630795915]
- 0:-50.173488347302
- 1:66.13384630795915
2478: [-50.17347055495864, 66.13438139274076]
- 0:-50.17347055495864
- 1:66.13438139274076
2479: [-50.17413501440609, 66.13438582145513]
- 0:-50.17413501440609
- 1:66.13438582145513
2480: [-50.17411711339898, 66.13492538410334]
- 0:-50.17411711339898
- 1:66.13492538410334
2481: [-50.17478158535673, 66.13492980946066]
- 0:-50.17478158535673
- 1:66.13492980946066
2482: [-50.174772555359624, 66.13519741795722]
- 0:-50.174772555359624
- 1:66.13519741795722
2483: [-50.17543703333289, 66.13520183987033]
- 0:-50.17543703333289
- 1:66.13520183987033
2484: [-50.17541028022197, 66.13600894908865]
- 0:-50.17541028022197
- 1:66.13600894908865
2485: [-50.176074630733694, 66.13601343266998]
- 0:-50.176074630733694
- 1:66.13601343266998
2486: [-50.176065759598686, 66.13628097753896]
- 0:-50.176065759598686
- 1:66.13628097753896
2487: [-50.17673026248836, 66.13628539273691]
- 0:-50.17673026248836
- 1:66.13628539273691
2488: [-50.1767212513115, 66.13655300291516]
- 0:-50.1767212513115
- 1:66.13655300291516
2489: [-50.17738576021667, 66.13655741466869]
- 0:-50.17738576021667
- 1:66.13655741466869
2490: [-50.17737690172378, 66.1368249602764]
- 0:-50.17737690172378
- 1:66.1368249602764
2491: [-50.17804127028114, 66.13682943352619]
- 0:-50.17804127028114
- 1:66.13682943352619
2492: [-50.17803241810903, 66.13709697950323]
- 0:-50.17803241810903
- 1:66.13709697950323
2493: [-50.178696792681926, 66.13710144930933]
- 0:-50.178696792681926
- 1:66.13710144930933
2494: [-50.17868777881809, 66.13736894382781]
- 0:-50.17868777881809
- 1:66.13736894382781
2495: [-50.1800165396184, 66.13737787302405]
- 0:-50.1800165396184
- 1:66.13737787302405
2496: [-50.180012177221435, 66.13764988139168]
- 0:-50.180012177221435
- 1:66.13764988139168
2497: [-50.181340923149925, 66.13765438491619]
- 0:-50.181340923149925
- 1:66.13765438491619
2498: [-50.18135440722847, 66.13711481661898]
- 0:-50.18135440722847
- 1:66.13711481661898
2499: [-50.18201877982227, 66.13711926877323]
- 0:-50.18201877982227
- 1:66.13711926877323
2500: [-50.18203657543933, 66.13658422789919]
- 0:-50.18203657543933
- 1:66.13658422789919
2501: [-50.18402977220434, 66.1365930860528]
- 0:-50.18402977220434
- 1:66.1365930860528
2502: [-50.18402083125961, 66.13686069746234]
- 0:-50.18402083125961
- 1:66.13686069746234
2503: [-50.184685195857845, 66.13686513540884]
- 0:-50.184685195857845
- 1:66.13686513540884
2504: [-50.184645123480955, 66.13821177175056]
- 0:-50.184645123480955
- 1:66.13821177175056
2505: [-50.18530951986039, 66.138216206578]
- 0:-50.18530951986039
- 1:66.138216206578
2506: [-50.185291641039, 66.13875131667264]
- 0:-50.185291641039
- 1:66.13875131667264
2507: [-50.1859560498227, 66.13875574814358]
- 0:-50.1859560498227
- 1:66.13875574814358
2508: [-50.18593837863865, 66.13929532307085]
- 0:-50.18593837863865
- 1:66.13929532307085
2509: [-50.1866026046911, 66.13929528765742]
- 0:-50.1866026046911
- 1:66.13929528765742
2510: [-50.18658494612034, 66.13983486389849]
- 0:-50.18658494612034
- 1:66.13983486389849
2511: [-50.18724923346597, 66.1398393536088]
- 0:-50.18724923346597
- 1:66.1398393536088
2512: [-50.18723141946601, 66.14037887935608]
- 0:-50.18723141946601
- 1:66.14037887935608
2513: [-50.18789583826028, 66.14037888902821]
- 0:-50.18789583826028
- 1:66.14037888902821
2514: [-50.18786468037926, 66.14145799391488]
- 0:-50.18786468037926
- 1:66.14145799391488
2515: [-50.18653588260414, 66.14144908198061]
- 0:-50.18653588260414
- 1:66.14144908198061
2516: [-50.1865491457134, 66.14091398114682]
- 0:-50.1865491457134
- 1:66.14091398114682
2517: [-50.18588483222262, 66.14090948755843]
- 0:-50.18588483222262
- 1:66.14090948755843
2518: [-50.1858535694528, 66.14198418203391]
- 0:-50.1858535694528
- 1:66.14198418203391
2519: [-50.18651805497527, 66.14198861099393]
- 0:-50.18651805497527
- 1:66.14198861099393
2520: [-50.1864911421925, 66.14279570735036]
- 0:-50.1864911421925
- 1:66.14279570735036
2521: [-50.18715564662055, 66.14280013304146]
- 0:-50.18715564662055
- 1:66.14280013304146
2522: [-50.18714673612469, 66.14306775142337]
- 0:-50.18714673612469
- 1:66.14306775142337
2523: [-50.18648237167513, 66.14306326069259]
- 0:-50.18648237167513
- 1:66.14306326069259
2524: [-50.186473313868824, 66.14333523923182]
- 0:-50.186473313868824
- 1:66.14333523923182
2525: [-50.18580896423424, 66.14333086165557]
- 0:-50.18580896423424
- 1:66.14333086165557
2526: [-50.18580001912774, 66.14359836366185]
- 0:-50.18580001912774
- 1:66.14359836366185
2527: [-50.18513564104173, 66.14359386569754]
- 0:-50.18513564104173
- 1:66.14359386569754
2528: [-50.18512673816203, 66.14386589646027]
- 0:-50.18512673816203
- 1:66.14386589646027
2529: [-50.18180473307831, 66.14384806354138]
- 0:-50.18180473307831
- 1:66.14384806354138
2530: [-50.181813548539814, 66.14358050994004]
- 0:-50.181813548539814
- 1:66.14358050994004
2531: [-50.18247804851061, 66.14358054882281]
- 0:-50.18247804851061
- 1:66.14358054882281
2532: [-50.182486857512515, 66.1433129954225]
- 0:-50.182486857512515
- 1:66.1433129954225
2533: [-50.18315137719261, 66.14331744246984]
- 0:-50.18315137719261
- 1:66.14331744246984
2534: [-50.183160299428714, 66.14304541254376]
- 0:-50.183160299428714
- 1:66.14304541254376
2535: [-50.1824958128294, 66.14304537735651]
- 0:-50.1824958128294
- 1:66.14304537735651
2536: [-50.1825091266017, 66.1425058622239]
- 0:-50.1825091266017
- 1:66.1425058622239
2537: [-50.18317807236061, 66.14251035881618]
- 0:-50.18317807236061
- 1:66.14251035881618
2538: [-50.1831869943897, 66.14223832975678]
- 0:-50.1831869943897
- 1:66.14223832975678
2539: [-50.18251810342286, 66.14223836178301]
- 0:-50.18251810342286
- 1:66.14223836178301
2540: [-50.1825358405594, 66.1416987814041]
- 0:-50.1825358405594
- 1:66.1416987814041
2541: [-50.1832003216774, 66.14170322795377]
- 0:-50.1832003216774
- 1:66.14170322795377
2542: [-50.18320924354291, 66.1414311997618]
- 0:-50.18320924354291
- 1:66.1414311997618
2543: [-50.182544963544814, 66.14143121686764]
- 0:-50.182544963544814
- 1:66.14143121686764
2544: [-50.18255374546495, 66.14115925399835]
- 0:-50.18255374546495
- 1:66.14115925399835
2545: [-50.18188930333217, 66.14115921583182]
- 0:-50.18188930333217
- 1:66.14115921583182
2546: [-50.18191615542843, 66.14034766287791]
- 0:-50.18191615542843
- 1:66.14034766287791
2547: [-50.181251732094715, 66.14034762142776]
- 0:-50.181251732094715
- 1:66.14034762142776
2548: [-50.18126069476917, 66.14007571171125]
- 0:-50.18126069476917
- 1:66.14007571171125
2549: [-50.18059639745734, 66.14007119014785]
- 0:-50.18059639745734
- 1:66.14007119014785
2550: [-50.18058744994999, 66.14034321654803]
- 0:-50.18058744994999
- 1:66.14034321654803
2551: [-50.17992299939546, 66.14033875631269]
- 0:-50.17992299939546
- 1:66.14033875631269
2552: [-50.17991399750741, 66.14060625441763]
- 0:-50.17991399750741
- 1:66.14060625441763
2553: [-50.17858513009252, 66.14060185168005]
- 0:-50.17858513009252
- 1:66.14060185168005
2554: [-50.178594097163376, 66.14032982525046]
- 0:-50.178594097163376
- 1:66.14032982525046
2555: [-50.177929839354555, 66.1403298179752]
- 0:-50.177929839354555
- 1:66.1403298179752
2556: [-50.17793866647253, 66.14005785686287]
- 0:-50.17793866647253
- 1:66.14005785686287
2557: [-50.1772742208116, 66.14005338259277]
- 0:-50.1772742208116
- 1:66.14005338259277
2558: [-50.1772830800906, 66.13978583357171]
- 0:-50.1772830800906
- 1:66.13978583357171
2559: [-50.176618640446975, 66.13978135585754]
- 0:-50.176618640446975
- 1:66.13978135585754
2560: [-50.1766098004048, 66.14005331650856]
- 0:-50.1766098004048
- 1:66.14005331650856
2561: [-50.17528092864451, 66.14004446708682]
- 0:-50.17528092864451
- 1:66.14004446708682
2562: [-50.17528980709508, 66.13977691832036]
- 0:-50.17528980709508
- 1:66.13977691832036
2563: [-50.17462108928779, 66.13977243176511]
- 0:-50.17462108928779
- 1:66.13977243176511
2564: [-50.174629974101194, 66.13950488336849]
- 0:-50.174629974101194
- 1:66.13950488336849
2565: [-50.17396998416248, 66.13950044170197]
- 0:-50.17396998416248
- 1:66.13950044170197
2566: [-50.17397440517613, 66.13922843186829]
- 0:-50.17397440517613
- 1:66.13922843186829
2567: [-50.17331002317264, 66.13922846512403]
- 0:-50.17331002317264
- 1:66.13922846512403
2568: [-50.17333695790017, 66.13841686975438]
- 0:-50.17333695790017
- 1:66.13841686975438
2569: [-50.17267242668159, 66.13841684789078]
- 0:-50.17267242668159
- 1:66.13841684789078
2570: [-50.172681305326606, 66.13814488949214]
- 0:-50.172681305326606
- 1:66.13814488949214
2571: [-50.17201694802511, 66.13814491601498]
- 0:-50.17201694802511
- 1:66.13814491601498
2572: [-50.17202581147323, 66.13787284121943]
- 0:-50.17202581147323
- 1:66.13787284121943
2573: [-50.171361460081286, 66.13787286429344]
- 0:-50.171361460081286
- 1:66.13787286429344
2574: [-50.171379414166836, 66.13733329601867]
- 0:-50.171379414166836
- 1:66.13733329601867
2575: [-50.17005035025508, 66.13732440489646]
- 0:-50.17005035025508
- 1:66.13732440489646
2576: [-50.17005927917338, 66.1370568596611]
- 0:-50.17005927917338
- 1:66.1370568596611
2577: [-50.16873054092749, 66.13704794149568]
- 0:-50.16873054092749
- 1:66.13704794149568
2578: [-50.168739482554074, 66.13678039671676]
- 0:-50.168739482554074
- 1:66.13678039671676
2579: [-50.16741075559412, 66.13677146460459]
- 0:-50.16741075559412
- 1:66.13677146460459
2580: [-50.16742847205838, 66.1362319127568]
- 0:-50.16742847205838
- 1:66.1362319127568
2581: [-50.16609964692371, 66.1362274434408]
- 0:-50.16609964692371
- 1:66.1362274434408
2582: [-50.16610861389745, 66.13595989985812]
- 0:-50.16610861389745
- 1:66.13595989985812
2583: [-50.16544427907676, 66.13595548009168]
- 0:-50.16544427907676
- 1:66.13595548009168
2584: [-50.16545308438732, 66.13568788503378]
- 0:-50.16545308438732
- 1:66.13568788503378
2585: [-50.16478875558157, 66.13568346182346]
- 0:-50.16478875558157
- 1:66.13568346182346
2586: [-50.16479754348987, 66.13541145550741]
- 0:-50.16479754348987
- 1:66.13541145550741
2587: [-50.164133367193756, 66.13540696392906]
- 0:-50.164133367193756
- 1:66.13540696392906
2588: [-50.16415102461877, 66.1348718923538]
- 0:-50.16415102461877
- 1:66.1348718923538
2589: [-50.163486714336464, 66.13486746234344]
- 0:-50.163486714336464
- 1:66.13486746234344
2590: [-50.16349553854228, 66.13459986868088]
- 0:-50.16349553854228
- 1:66.13459986868088
2591: [-50.162831234275075, 66.13459543522686]
- 0:-50.162831234275075
- 1:66.13459543522686
2592: [-50.16284023276995, 66.13432789378184]
- 0:-50.16284023276995
- 1:66.13432789378184
2593: [-50.162175766549716, 66.13432340503599]
- 0:-50.162175766549716
- 1:66.13432340503599
2594: [-50.162184580096195, 66.13405140051042]
- 0:-50.162184580096195
- 1:66.13405140051042
2595: [-50.16152028796473, 66.13404696016978]
- 0:-50.16152028796473
- 1:66.13404696016978
2596: [-50.161529131132625, 66.13377936761998]
- 0:-50.161529131132625
- 1:66.13377936761998
2597: [-50.160200435121205, 66.13377495303723]
- 0:-50.160200435121205
- 1:66.13377495303723
2598: [-50.16020926801444, 66.13350294934766]
- 0:-50.16020926801444
- 1:66.13350294934766
2599: [-50.15954481958172, 66.13349844673729]
- 0:-50.15954481958172
- 1:66.13349844673729
2600: [-50.159562733431606, 66.13296343219479]
- 0:-50.159562733431606
- 1:66.13296343219479
2601: [-50.158898297404505, 66.13295892622676]
- 0:-50.158898297404505
- 1:66.13295892622676
2602: [-50.15890714308141, 66.1326869235794]
- 0:-50.15890714308141
- 1:66.1326869235794
2603: [-50.158242757406626, 66.1326869425131]
- 0:-50.158242757406626
- 1:66.1326869425131
2604: [-50.158251609509534, 66.13241494024055]
- 0:-50.158251609509534
- 1:66.13241494024055
2605: [-50.15625840220029, 66.13240603618637]
- 0:-50.15625840220029
- 1:66.13240603618637
2606: [-50.15626746401238, 66.13213849788316]
- 0:-50.15626746401238
- 1:66.13213849788316
2607: [-50.15493864775866, 66.13212956439523]
- 0:-50.15493864775866
- 1:66.13212956439523
2608: [-50.15494755433378, 66.13186197469182]
- 0:-50.15494755433378
- 1:66.13186197469182
2609: [-50.154283162810565, 66.13185756112328]
- 0:-50.154283162810565
- 1:66.13185756112328
2610: [-50.15429205367101, 66.1315855602366]
- 0:-50.15429205367101
- 1:66.1315855602366
2611: [-50.1522988965249, 66.13157659338584]
- 0:-50.1522988965249
- 1:66.13157659338584
2612: [-50.15228105405133, 66.13211618337756]
- 0:-50.15228105405133
- 1:66.13211618337756
2613: [-50.152945431362596, 66.13211619606511]
- 0:-50.152945431362596
- 1:66.13211619606511
2614: [-50.15292743355034, 66.13265573551212]
- 0:-50.15292743355034
- 1:66.13265573551212
2615: [-50.153592013032835, 66.13266020826423]
- 0:-50.153592013032835
- 1:66.13266020826423
2616: [-50.15357402782134, 66.13319974903759]
- 0:-50.15357402782134
- 1:66.13319974903759
2617: [-50.15423845187157, 66.13320416657197]
- 0:-50.15423845187157
- 1:66.13320416657197
2618: [-50.15421169017177, 66.13400682377662]
- 0:-50.15421169017177
- 1:66.13400682377662
2619: [-50.15487630096825, 66.13401128989818]
- 0:-50.15487630096825
- 1:66.13401128989818
2620: [-50.15481382649362, 66.13589750594873]
- 0:-50.15481382649362
- 1:66.13589750594873
2621: [-50.15348482879612, 66.13588855590369]
- 0:-50.15348482879612
- 1:66.13588855590369
2622: [-50.153475930327595, 66.1361605613376]
- 0:-50.153475930327595
- 1:66.1361605613376
2623: [-50.15414040304306, 66.13616056819316]
- 0:-50.15414040304306
- 1:66.13616056819316
2624: [-50.15410476882664, 66.13723965310491]
- 0:-50.15410476882664
- 1:66.13723965310491
2625: [-50.154769142455926, 66.13724413332291]
- 0:-50.154769142455926
- 1:66.13724413332291
2626: [-50.15476023448287, 66.13751172872168]
- 0:-50.15476023448287
- 1:66.13751172872168
2627: [-50.155424760554034, 66.13751614058114]
- 0:-50.155424760554034
- 1:66.13751614058114
2628: [-50.155415690925835, 66.13778368449044]
- 0:-50.155415690925835
- 1:66.13778368449044
2629: [-50.15674446188593, 66.13779262762176]
- 0:-50.15674446188593
- 1:66.13779262762176
2630: [-50.15673571936661, 66.13806015892932]
- 0:-50.15673571936661
- 1:66.13806015892932
2631: [-50.157400110678545, 66.13806462528531]
- 0:-50.157400110678545
- 1:66.13806462528531
2632: [-50.15739106007645, 66.13833217002237]
- 0:-50.15739106007645
- 1:66.13833217002237
2633: [-50.158055457406356, 66.13833663293539]
- 0:-50.158055457406356
- 1:66.13833663293539
2634: [-50.15804655954273, 66.13860411312427]
- 0:-50.15804655954273
- 1:66.13860411312427
2635: [-50.15937553385147, 66.1386130803863]
- 0:-50.15937553385147
- 1:66.1386130803863
2636: [-50.15936637874636, 66.13888510255515]
- 0:-50.15936637874636
- 1:66.13888510255515
2637: [-50.1600309112696, 66.1388850784457]
- 0:-50.1600309112696
- 1:66.1388850784457
2638: [-50.1600220770006, 66.13915708792298]
- 0:-50.1600220770006
- 1:66.13915708792298
2639: [-50.16068630102308, 66.1391570734319]
- 0:-50.16068630102308
- 1:66.1391570734319
2640: [-50.1606684541726, 66.13969662987536]
- 0:-50.1606684541726
- 1:66.13969662987536
2641: [-50.161332881696595, 66.13970107557066]
- 0:-50.161332881696595
- 1:66.13970107557066
2642: [-50.16132403700728, 66.139968674384]
- 0:-50.16132403700728
- 1:66.139968674384
2643: [-50.161988470549744, 66.1399731166351]
- 0:-50.161988470549744
- 1:66.1399731166351
2644: [-50.1619794874928, 66.14024507567679]
- 0:-50.1619794874928
- 1:66.14024507567679
2645: [-50.16264390374042, 66.14024510277444]
- 0:-50.16264390374042
- 1:66.14024510277444
2646: [-50.16263509511405, 66.14051711404109]
- 0:-50.16263509511405
- 1:66.14051711404109
2647: [-50.16329934926736, 66.14051708584012]
- 0:-50.16329934926736
- 1:66.14051708584012
2648: [-50.163290547068875, 66.14078909748086]
- 0:-50.163290547068875
- 1:66.14078909748086
2649: [-50.1639548523515, 66.14079359432708]
- 0:-50.1639548523515
- 1:66.14079359432708
2650: [-50.16393702388053, 66.14132862657502]
- 0:-50.16393702388053
- 1:66.14132862657502
2651: [-50.16526597332082, 66.1413375969462]
- 0:-50.16526597332082
- 1:66.1413375969462
2652: [-50.16525699855254, 66.14160514613106]
- 0:-50.16525699855254
- 1:66.14160514613106
2653: [-50.16592132188919, 66.14160963264881]
- 0:-50.16592132188919
- 1:66.14160963264881
2654: [-50.1659124998583, 66.1418771172749]
- 0:-50.1659124998583
- 1:66.1418771172749
2655: [-50.163254762982156, 66.14186375619968]
- 0:-50.163254762982156
- 1:66.14186375619968
2656: [-50.16326375699389, 66.14159620698845]
- 0:-50.16326375699389
- 1:66.14159620698845
2657: [-50.16259928563983, 66.14159177127678]
- 0:-50.16259928563983
- 1:66.14159177127678
2658: [-50.16260828597154, 66.14132422243522]
- 0:-50.16260828597154
- 1:66.14132422243522
2659: [-50.161943820635166, 66.14131978327997]
- 0:-50.161943820635166
- 1:66.14131978327997
2660: [-50.161952827286555, 66.14105223480811]
- 0:-50.161952827286555
- 1:66.14105223480811
2661: [-50.16062405470359, 66.14104328115812]
- 0:-50.16062405470359
- 1:66.14104328115812
2662: [-50.16063275963412, 66.1407757462123]
- 0:-50.16063275963412
- 1:66.1407757462123
2663: [-50.15930416634751, 66.14076683046869]
- 0:-50.15930416634751
- 1:66.14076683046869
2664: [-50.159313007526116, 66.14049481934363]
- 0:-50.159313007526116
- 1:66.14049481934363
2665: [-50.15864858239273, 66.14049477450962]
- 0:-50.15864858239273
- 1:66.14049477450962
2666: [-50.15865759799741, 66.14022281561418]
- 0:-50.15865759799741
- 1:66.14022281561418
2667: [-50.15732858996716, 66.14021836872894]
- 0:-50.15732858996716
- 1:66.14021836872894
2668: [-50.157337450499654, 66.13994635843953]
- 0:-50.157337450499654
- 1:66.13994635843953
2669: [-50.156673204707, 66.13994635503373]
- 0:-50.156673204707
- 1:66.13994635503373
2670: [-50.156682071665855, 66.13967434511876]
- 0:-50.156682071665855
- 1:66.13967434511876
2671: [-50.156017641430175, 66.13966987471075]
- 0:-50.156017641430175
- 1:66.13966987471075
2672: [-50.15602670516871, 66.13940232872496]
- 0:-50.15602670516871
- 1:66.13940232872496
2673: [-50.155362280952176, 66.13939785487389]
- 0:-50.155362280952176
- 1:66.13939785487389
2674: [-50.15537103659203, 66.13913032231412]
- 0:-50.15537103659203
- 1:66.13913032231412
2675: [-50.152708981558646, 66.13911698632131]
- 0:-50.152708981558646
- 1:66.13911698632131
2676: [-50.15268219860368, 66.1399240734919]
- 0:-50.15268219860368
- 1:66.1399240734919
2677: [-50.15335118532152, 66.13992401911597]
- 0:-50.15335118532152
- 1:66.13992401911597
2678: [-50.15332891913179, 66.14046357640333]
- 0:-50.15332891913179
- 1:66.14046357640333
2679: [-50.15133577474146, 66.14045468112674]
- 0:-50.15133577474146
- 1:66.14045468112674
2680: [-50.15134456903543, 66.14018714793704]
- 0:-50.15134456903543
- 1:66.14018714793704
2681: [-50.15068012272912, 66.14018264908759]
- 0:-50.15068012272912
- 1:66.14018264908759
2682: [-50.150689048270245, 66.13991063966007]
- 0:-50.150689048270245
- 1:66.13991063966007
2683: [-50.15002462962471, 66.13990625414309]
- 0:-50.15002462962471
- 1:66.13990625414309
2684: [-50.150033583008714, 66.13963865678645]
- 0:-50.150033583008714
- 1:66.13963865678645
2685: [-50.149369316828455, 66.13963420291755]
- 0:-50.149369316828455
- 1:66.13963420291755
2686: [-50.14938694327213, 66.13909913904264]
- 0:-50.14938694327213
- 1:66.13909913904264
2687: [-50.14872268949706, 66.13909468181696]
- 0:-50.14872268949706
- 1:66.13909468181696
2688: [-50.14873146627376, 66.13882262193799]
- 0:-50.14873146627376
- 1:66.13882262193799
2689: [-50.148067093275145, 66.13882263785231]
- 0:-50.148067093275145
- 1:66.13882263785231
2690: [-50.14807604445145, 66.13855063021644]
- 0:-50.14807604445145
- 1:66.13855063021644
2691: [-50.147411656370934, 66.13854623101159]
- 0:-50.147411656370934
- 1:66.13854623101159
2692: [-50.14742063496557, 66.13827863542116]
- 0:-50.14742063496557
- 1:66.13827863542116
2693: [-50.146756084936136, 66.13827418090227]
- 0:-50.146756084936136
- 1:66.13827418090227
2694: [-50.14676492340493, 66.13800665058646]
- 0:-50.14676492340493
- 1:66.13800665058646
2695: [-50.14610069380638, 66.13800217958921]
- 0:-50.14610069380638
- 1:66.13800217958921
2696: [-50.14610953859384, 66.13773464964238]
- 0:-50.14610953859384
- 1:66.13773464964238
2697: [-50.14411640588034, 66.13772129366683]
- 0:-50.14411640588034
- 1:66.13772129366683
2698: [-50.144125416215445, 66.13745369935985]
- 0:-50.144125416215445
- 1:66.13745369935985
2699: [-50.14346088350545, 66.137449227445]
- 0:-50.14346088350545
- 1:66.137449227445
2700: [-50.14347874993458, 66.13690969311567]
- 0:-50.14347874993458
- 1:66.13690969311567
2701: [-50.14015666894814, 66.13689184870711]
- 0:-50.14015666894814
- 1:66.13689184870711
2702: [-50.14014780819262, 66.13716390544587]
- 0:-50.14014780819262
- 1:66.13716390544587
2703: [-50.14081229503873, 66.1371638665132]
- 0:-50.14081229503873
- 1:66.1371638665132
2704: [-50.14080327276085, 66.1374358717482]
- 0:-50.14080327276085
- 1:66.1374358717482
2705: [-50.14146761906126, 66.13743589426407]
- 0:-50.14146761906126
- 1:66.13743589426407
2706: [-50.141458749665034, 66.13770783497598]
- 0:-50.141458749665034
- 1:66.13770783497598
2707: [-50.14212314352495, 66.13771238247084]
- 0:-50.14212314352495
- 1:66.13771238247084
2708: [-50.14211426040367, 66.13797991190509]
- 0:-50.14211426040367
- 1:66.13797991190509
2709: [-50.14277863878533, 66.1379843391801]
- 0:-50.14277863878533
- 1:66.1379843391801
2710: [-50.14276075890885, 66.13852387563668]
- 0:-50.14276075890885
- 1:66.13852387563668
2711: [-50.14475393141329, 66.13853284190914]
- 0:-50.14475393141329
- 1:66.13853284190914
2712: [-50.14476293557202, 66.13826524666169]
- 0:-50.14476293557202
- 1:66.13826524666169
2713: [-50.1454273403686, 66.13826977667767]
- 0:-50.1454273403686
- 1:66.13826977667767
2714: [-50.1453826428942, 66.13961192128372]
- 0:-50.1453826428942
- 1:66.13961192128372
2715: [-50.14471824812744, 66.13961191929711]
- 0:-50.14471824812744
- 1:66.13961191929711
2716: [-50.14472723199649, 66.13933991122619]
- 0:-50.14472723199649
- 1:66.13933991122619
2717: [-50.14406282267423, 66.1393354941089]
- 0:-50.14406282267423
- 1:66.1393354941089
2718: [-50.144071833436534, 66.13906789809506]
- 0:-50.144071833436534
- 1:66.13906789809506
2719: [-50.14340743013297, 66.13906347753442]
- 0:-50.14340743013297
- 1:66.13906347753442
2720: [-50.143416300755, 66.13879594679148]
- 0:-50.143416300755
- 1:66.13879594679148
2721: [-50.14275188196683, 66.13879140601047]
- 0:-50.14275188196683
- 1:66.13879140601047
2722: [-50.14273416963436, 66.13933099606398]
- 0:-50.14273416963436
- 1:66.13933099606398
2723: [-50.14339839147463, 66.13933095668483]
- 0:-50.14339839147463
- 1:66.13933095668483
2724: [-50.143389562581, 66.13960301645605]
- 0:-50.143389562581
- 1:66.13960301645605
2725: [-50.14405397877046, 66.13960743719042]
- 0:-50.14405397877046
- 1:66.13960743719042
2726: [-50.14404496786589, 66.13987503377464]
- 0:-50.14404496786589
- 1:66.13987503377464
2727: [-50.14470939007431, 66.13987945106557]
- 0:-50.14470939007431
- 1:66.13987945106557
2728: [-50.14470053195205, 66.1401469831168]
- 0:-50.14470053195205
- 1:66.1401469831168
2729: [-50.14536481371644, 66.14015146186706]
- 0:-50.14536481371644
- 1:66.14015146186706
2730: [-50.145355961913644, 66.1404189942872]
- 0:-50.145355961913644
- 1:66.1404189942872
2731: [-50.14602041767493, 66.1404235214669]
- 0:-50.14602041767493
- 1:66.1404235214669
2732: [-50.14601159297995, 66.14069546596312]
- 0:-50.14601159297995
- 1:66.14069546596312
2733: [-50.146675865996905, 66.14069552611991]
- 0:-50.146675865996905
- 1:66.14069552611991
2734: [-50.14666704772763, 66.14096747099018]
- 0:-50.14666704772763
- 1:66.14096747099018
2735: [-50.14799577256849, 66.14097192768418]
- 0:-50.14799577256849
- 1:66.14097192768418
2736: [-50.147986820760565, 66.14124393792196]
- 0:-50.147986820760565
- 1:66.14124393792196
2737: [-50.148651251586465, 66.14124392274535]
- 0:-50.148651251586465
- 1:66.14124392274535
2738: [-50.14863348600583, 66.14178346762667]
- 0:-50.14863348600583
- 1:66.14178346762667
2739: [-50.149297803989114, 66.14178792571946]
- 0:-50.149297803989114
- 1:66.14178792571946
2740: [-50.14928884364967, 66.14205552526559]
- 0:-50.14928884364967
- 1:66.14205552526559
2741: [-50.14995331411252, 66.14205991500663]
- 0:-50.14995331411252
- 1:66.14205991500663
2742: [-50.14994438151546, 66.14233192666069]
- 0:-50.14994438151546
- 1:66.14233192666069
2743: [-50.15060869011633, 66.14233196612957]
- 0:-50.15060869011633
- 1:66.14233196612957
2744: [-50.15059976394545, 66.14260397815829]
- 0:-50.15059976394545
- 1:66.14260397815829
2745: [-50.151264268092014, 66.14260847778948]
- 0:-50.151264268092014
- 1:66.14260847778948
2746: [-50.15125530517649, 66.14287596167166]
- 0:-50.15125530517649
- 1:66.14287596167166
2747: [-50.15191981534389, 66.14288045785878]
- 0:-50.15191981534389
- 1:66.14288045785878
2748: [-50.151910858747804, 66.14314794211025]
- 0:-50.151910858747804
- 1:66.14314794211025
2749: [-50.15257537493592, 66.14315243485323]
- 0:-50.15257537493592
- 1:66.14315243485323
2750: [-50.15256627819961, 66.14341998438678]
- 0:-50.15256627819961
- 1:66.14341998438678
2751: [-50.15057323488818, 66.1434110626603]
- 0:-50.15057323488818
- 1:66.1434110626603
2752: [-50.15055531732534, 66.14394614901543]
- 0:-50.15055531732534
- 1:66.14394614901543
2753: [-50.151219685529966, 66.14395059721338]
- 0:-50.151219685529966
- 1:66.14395059721338
2754: [-50.151210765438535, 66.14422261106272]
- 0:-50.151210765438535
- 1:66.14422261106272
2755: [-50.15187513976886, 66.14422705581856]
- 0:-50.15187513976886
- 1:66.14422705581856
2756: [-50.151866204364985, 66.14449465826935]
- 0:-50.151866204364985
- 1:66.14449465826935
2757: [-50.15253058471565, 66.14449909958253]
- 0:-50.15253058471565
- 1:66.14449909958253
2758: [-50.15252177658655, 66.14483347609239]
- 0:-50.15252177658655
- 1:66.14483347609239
2759: [-50.15291417333167, 66.1448691460855]
- 0:-50.15291417333167
- 1:66.1448691460855
2760: [-50.153279960348804, 66.1449048601093]
- 0:-50.153279960348804
- 1:66.1449048601093
2761: [-50.15361867709607, 66.14494499137194]
- 0:-50.15361867709607
- 1:66.14494499137194
2762: [-50.15392638183578, 66.14498964485949]
- 0:-50.15392638183578
- 1:66.14498964485949
2763: [-50.1542117331254, 66.14503422522608]
- 0:-50.1542117331254
- 1:66.14503422522608
2764: [-50.15434548776612, 66.1450609745756]
- 0:-50.15434548776612
- 1:66.1450609745756
2765: [-50.1544747745948, 66.14508326119144]
- 0:-50.1544747745948
- 1:66.14508326119144
2766: [-50.154595213560945, 66.14510997464328]
- 0:-50.154595213560945
- 1:66.14510997464328
2767: [-50.154711228402, 66.14513675396407]
- 0:-50.154711228402
- 1:66.14513675396407
2768: [-50.154822673300146, 66.14516795909607]
- 0:-50.154822673300146
- 1:66.14516795909607
2769: [-50.15492522595245, 66.14519476754137]
- 0:-50.15492522595245
- 1:66.14519476754137
2770: [-50.155023355127064, 66.14522593691353]
- 0:-50.155023355127064
- 1:66.14522593691353
2771: [-50.15511689213389, 66.14525712034775]
- 0:-50.15511689213389
- 1:66.14525712034775
2772: [-50.15520172708694, 66.14528837079702]
- 0:-50.15520172708694
- 1:66.14528837079702
2773: [-50.15528199212415, 66.1453240471282]
- 0:-50.15528199212415
- 1:66.1453240471282
2774: [-50.155357789132324, 66.14535526084498]
- 0:-50.155357789132324
- 1:66.14535526084498
2775: [-50.15542901621981, 66.14539090046179]
- 0:-50.15542901621981
- 1:66.14539090046179
2776: [-50.15549156351365, 66.14543101894061]
- 0:-50.15549156351365
- 1:66.14543101894061
2777: [-50.155549496245634, 66.14546673974797]
- 0:-50.155549496245634
- 1:66.14546673974797
2778: [-50.155602983173324, 66.14550240976908]
- 0:-50.155602983173324
- 1:66.14550240976908
2779: [-50.15565206818945, 66.14554255758566]
- 0:-50.15565206818945
- 1:66.14554255758566
2780: [-50.155692114957496, 66.14558266878298]
- 0:-50.155692114957496
- 1:66.14558266878298
2781: [-50.15572775979422, 66.14562725779123]
- 0:-50.15572775979422
- 1:66.14562725779123
2782: [-50.1557589364043, 66.14566738423696]
- 0:-50.1557589364043
- 1:66.14566738423696
2783: [-50.155781433098305, 66.14571198960324]
- 0:-50.155781433098305
- 1:66.14571198960324
2784: [-50.15580376184005, 66.14575654311342]
- 0:-50.15580376184005
- 1:66.14575654311342
2785: [-50.15581707375985, 66.14580117680698]
- 0:-50.15581707375985
- 1:66.14580117680698
2786: [-50.15583030639413, 66.14585911083716]
- 0:-50.15583030639413
- 1:66.14585911083716
2787: [-50.15647697556521, 66.14586356190564]
- 0:-50.15647697556521
- 1:66.14586356190564
2788: [-50.156468107015144, 66.1461355784674]
- 0:-50.156468107015144
- 1:66.1461355784674
2789: [-50.15585280367274, 66.14613111922772]
- 0:-50.15585280367274
- 1:66.14613111922772
2790: [-50.155830363936225, 66.14618465071302]
- 0:-50.155830363936225
- 1:66.14618465071302
2791: [-50.155817055875055, 66.14620697274012]
- 0:-50.155817055875055
- 1:66.14620697274012
2792: [-50.155799133698046, 66.14622919214811]
- 0:-50.155799133698046
- 1:66.14622919214811
2793: [-50.15576796034465, 66.14625602141992]
- 0:-50.15576796034465
- 1:66.14625602141992
2794: [-50.15572782849006, 66.14627380876226]
- 0:-50.15572782849006
- 1:66.14627380876226
2795: [-50.155678825993085, 66.14629161134391]
- 0:-50.155678825993085
- 1:66.14629161134391
2796: [-50.15562093048703, 66.14630501734231]
- 0:-50.15562093048703
- 1:66.14630501734231
2797: [-50.15555397395471, 66.14631397488368]
- 0:-50.15555397395471
- 1:66.14631397488368
2798: [-50.15547365680332, 66.14631836826537]
- 0:-50.15547365680332
- 1:66.14631836826537
2799: [-50.15538004449428, 66.14632284282952]
- 0:-50.15538004449428
- 1:66.14632284282952
2800: [-50.15528194147167, 66.14631844292181]
- 0:-50.15528194147167
- 1:66.14631844292181
2801: [-50.15519285553826, 66.14631396280467]
- 0:-50.15519285553826
- 1:66.14631396280467
2802: [-50.155094584523546, 66.14630951088914]
- 0:-50.155094584523546
- 1:66.14630951088914
2803: [-50.15486723314424, 66.14629164816326]
- 0:-50.15486723314424
- 1:66.14629164816326
2804: [-50.15463094545224, 66.14626485980428]
- 0:-50.15463094545224
- 1:66.14626485980428
2805: [-50.15397554134968, 66.14618909853792]
- 0:-50.15397554134968
- 1:66.14618909853792
2806: [-50.15377924912633, 66.14617123928078]
- 0:-50.15377924912633
- 1:66.14617123928078
2807: [-50.1536097804247, 66.1461579148575]
- 0:-50.1536097804247
- 1:66.1461579148575
2808: [-50.15342682719065, 66.14614450259117]
- 0:-50.15342682719065
- 1:66.14614450259117
2809: [-50.15326644128191, 66.14614003809244]
- 0:-50.15326644128191
- 1:66.14614003809244
2810: [-50.15311939397388, 66.14614002098115]
- 0:-50.15311939397388
- 1:66.14614002098115
2811: [-50.152989963243066, 66.14614445029882]
- 0:-50.152989963243066
- 1:66.14614445029882
2812: [-50.15282064752235, 66.14615341740272]
- 0:-50.15282064752235
- 1:66.14615341740272
2813: [-50.15265103903347, 66.14616680913352]
- 0:-50.15265103903347
- 1:66.14616680913352
2814: [-50.15248157681809, 66.14618013572066]
- 0:-50.15248157681809
- 1:66.14618013572066
2815: [-50.15231215777421, 66.14619799066409]
- 0:-50.15231215777421
- 1:66.14619799066409
2816: [-50.15213833574062, 66.14622032307534]
- 0:-50.15213833574062
- 1:66.14622032307534
2817: [-50.15196874813309, 66.14623812568844]
- 0:-50.15196874813309
- 1:66.14623812568844
2818: [-50.1517993933249, 66.14626492033307]
- 0:-50.1517993933249
- 1:66.14626492033307
2819: [-50.151625402323596, 66.14628720016685]
- 0:-50.151625402323596
- 1:66.14628720016685
2820: [-50.15145606849968, 66.1463184061576]
- 0:-50.15145606849968
- 1:66.1463184061576
2821: [-50.15129113715612, 66.1463451342521]
- 0:-50.15129113715612
- 1:66.1463451342521
2822: [-50.151126080618454, 66.14637633885218]
- 0:-50.151126080618454
- 1:66.14637633885218
2823: [-50.15096106682972, 66.1464120718255]
- 0:-50.15096106682972
- 1:66.1464120718255
2824: [-50.15080060205643, 66.14644326201966]
- 0:-50.15080060205643
- 1:66.14644326201966
2825: [-50.15064001197043, 66.1464789287327]
- 0:-50.15064001197043
- 1:66.1464789287327
2826: [-50.150488481723755, 66.1465190440402]
- 0:-50.150488481723755
- 1:66.1465190440402
2827: [-50.150336761477426, 66.14655469548747]
- 0:-50.150336761477426
- 1:66.14655469548747
2828: [-50.15004686914705, 66.14663502622749]
- 0:-50.15004686914705
- 1:66.14663502622749
2829: [-50.149797175937245, 66.14671080632405]
- 0:-50.149797175937245
- 1:66.14671080632405
2830: [-50.14979280227402, 66.14690702948086]
- 0:-50.14979280227402
- 1:66.14690702948086
2831: [-50.15045719861317, 66.14690695356519]
- 0:-50.15045719861317
- 1:66.14690695356519
2832: [-50.15044827125547, 66.14717897050531]
- 0:-50.15044827125547
- 1:66.14717897050531
2833: [-50.14978382544987, 66.14717451773618]
- 0:-50.14978382544987
- 1:66.14717451773618
2834: [-50.14977487009351, 66.147442123053]
- 0:-50.14977487009351
- 1:66.147442123053
2835: [-50.148539793081696, 66.14743761291032]
- 0:-50.148539793081696
- 1:66.14743761291032
2836: [-50.14846386359611, 66.14752683784388]
- 0:-50.14846386359611
- 1:66.14752683784388
2837: [-50.14839711924624, 66.14761603499035]
- 0:-50.14839711924624
- 1:66.14761603499035
2838: [-50.148334673983165, 66.14770964311737]
- 0:-50.148334673983165
- 1:66.14770964311737
2839: [-50.14828126749597, 66.14780328839338]
- 0:-50.14828126749597
- 1:66.14780328839338
2840: [-50.14824101018598, 66.14789691811826]
- 0:-50.14824101018598
- 1:66.14789691811826
2841: [-50.1482098130513, 66.14799499685317]
- 0:-50.1482098130513
- 1:66.14799499685317
2842: [-50.14818304092127, 66.14808871481107]
- 0:-50.14818304092127
- 1:66.14808871481107
2843: [-50.14817415768622, 66.148182338459]
- 0:-50.14817415768622
- 1:66.148182338459
2844: [-50.14816971835068, 66.14825365549869]
- 0:-50.14816971835068
- 1:66.14825365549869
2845: [-50.14817419304463, 66.14832948646578]
- 0:-50.14817419304463
- 1:66.14832948646578
2846: [-50.148183071497485, 66.14840083986434]
- 0:-50.148183071497485
- 1:66.14840083986434
2847: [-50.148196438831604, 66.14848106800444]
- 0:-50.148196438831604
- 1:66.14848106800444
2848: [-50.14822324943036, 66.14855685572726]
- 0:-50.14822324943036
- 1:66.14855685572726
2849: [-50.14824991368444, 66.14863270837688]
- 0:-50.14824991368444
- 1:66.14863270837688
2850: [-50.14828559603933, 66.1487084814134]
- 0:-50.14828559603933
- 1:66.1487084814134
2851: [-50.148325725098964, 66.14878430549113]
- 0:-50.148325725098964
- 1:66.14878430549113
2852: [-50.1483702793646, 66.14886006382594]
- 0:-50.1483702793646
- 1:66.14886006382594
2853: [-50.14842385220674, 66.14893144745535]
- 0:-50.14842385220674
- 1:66.14893144745535
2854: [-50.148481850330185, 66.1490027653256]
- 0:-50.148481850330185
- 1:66.1490027653256
2855: [-50.148544295303, 66.14907413421088]
- 0:-50.148544295303
- 1:66.14907413421088
2856: [-50.14861114436541, 66.14914102546761]
- 0:-50.14861114436541
- 1:66.14914102546761
2857: [-50.14868239751452, 66.14920343908516]
- 0:-50.14868239751452
- 1:66.14920343908516
2858: [-50.14875824406094, 66.14926583878233]
- 0:-50.14875824406094
- 1:66.14926583878233
2859: [-50.14883851623949, 66.14932387760048]
- 0:-50.14883851623949
- 1:66.14932387760048
2860: [-50.14890536350339, 66.14936841099652]
- 0:-50.14890536350339
- 1:66.14936841099652
2861: [-50.148981250681764, 66.14941298146597]
- 0:-50.148981250681764
- 1:66.14941298146597
2862: [-50.14906145953789, 66.14946207967358]
- 0:-50.14906145953789
- 1:66.14946207967358
2863: [-50.14915066552183, 66.14950668628491]
- 0:-50.14915066552183
- 1:66.14950668628491
2864: [-50.149244296867934, 66.14955122705744]
- 0:-50.149244296867934
- 1:66.14955122705744
2865: [-50.14934682176408, 66.14959586975388]
- 0:-50.14934682176408
- 1:66.14959586975388
2866: [-50.14945836521064, 66.14964043266166]
- 0:-50.14945836521064
- 1:66.14964043266166
2867: [-50.149578823700985, 66.149689509315]
- 0:-50.149578823700985
- 1:66.149689509315
2868: [-50.14982838119121, 66.14977865509192]
- 0:-50.14982838119121
- 1:66.14977865509192
2869: [-50.1501138280261, 66.14987678527517]
- 0:-50.1501138280261
- 1:66.14987678527517
2870: [-50.15044380395972, 66.14997489236552]
- 0:-50.15044380395972
- 1:66.14997489236552
2871: [-50.150920985063195, 66.15011755262272]
- 0:-50.150920985063195
- 1:66.15011755262272
2872: [-50.15099672604977, 66.15013982908823]
- 0:-50.15099672604977
- 1:66.15013982908823
2873: [-50.15167900704986, 66.15014436270677]
- 0:-50.15167900704986
- 1:66.15014436270677
2874: [-50.1516699454872, 66.15032713347239]
- 0:-50.1516699454872
- 1:66.15032713347239
2875: [-50.15190203630845, 66.15038511063226]
- 0:-50.15190203630845
- 1:66.15038511063226
2876: [-50.152124941527646, 66.15044311541969]
- 0:-50.152124941527646
- 1:66.15044311541969
2877: [-50.15234792884137, 66.15049211436732]
- 0:-50.15234792884137
- 1:66.15049211436732
2878: [-50.15256189839927, 66.15054119286862]
- 0:-50.15256189839927
- 1:66.15054119286862
2879: [-50.15277599322352, 66.15058579421763]
- 0:-50.15277599322352
- 1:66.15058579421763
2880: [-50.15299004515889, 66.15062586654557]
- 0:-50.15299004515889
- 1:66.15062586654557
2881: [-50.15319505714845, 66.1506616066132]
- 0:-50.15319505714845
- 1:66.1506616066132
2882: [-50.15340017252177, 66.15069275276953]
- 0:-50.15340017252177
- 1:66.15069275276953
2883: [-50.15365438023937, 66.1506927959847]
- 0:-50.15365438023937
- 1:66.1506927959847
2884: [-50.15365430690504, 66.15072845447872]
- 0:-50.15365430690504
- 1:66.15072845447872
2885: [-50.15385940106275, 66.15075518800677]
- 0:-50.15385940106275
- 1:66.15075518800677
2886: [-50.15406447342687, 66.15077750931417]
- 0:-50.15406447342687
- 1:66.15077750931417
2887: [-50.15427426368828, 66.15079533938447]
- 0:-50.15427426368828
- 1:66.15079533938447
2888: [-50.15449261165671, 66.15081316700015]
- 0:-50.15449261165671
- 1:66.15081316700015
2889: [-50.154715530903864, 66.15082656823236]
- 0:-50.154715530903864
- 1:66.15082656823236
2890: [-50.154943043598124, 66.15083995494624]
- 0:-50.154943043598124
- 1:66.15083995494624
2891: [-50.15517495937577, 66.15084886336312]
- 0:-50.15517495937577
- 1:66.15084886336312
2892: [-50.155406875230746, 66.15085777135101]
- 0:-50.155406875230746
- 1:66.15085777135101
2893: [-50.15564319401989, 66.15086220100784]
- 0:-50.15564319401989
- 1:66.15086220100784
2894: [-50.155879490389346, 66.15086221832665]
- 0:-50.155879490389346
- 1:66.15086221832665
2895: [-50.15611578668517, 66.15086223519896]
- 0:-50.15611578668517
- 1:66.15086223519896
2896: [-50.15634763610382, 66.15086220088025]
- 0:-50.15634763610382
- 1:66.15086220088025
2897: [-50.15657958687529, 66.15085327742781]
- 0:-50.15657958687529
- 1:66.15085327742781
2898: [-50.15680251891325, 66.15084443378763]
- 0:-50.15680251891325
- 1:66.15084443378763
2899: [-50.1570254291714, 66.15083547296976]
- 0:-50.1570254291714
- 1:66.15083547296976
2900: [-50.15723499777564, 66.15082206450344]
- 0:-50.15723499777564
- 1:66.15082206450344
2901: [-50.1574445434516, 66.15080424379357]
- 0:-50.1574445434516
- 1:66.15080424379357
2902: [-50.157640770018155, 66.15078638741718]
- 0:-50.157640770018155
- 1:66.15078638741718
2903: [-50.15764090647056, 66.15071507035816]
- 0:-50.15764090647056
- 1:66.15071507035816
2904: [-50.15817595807454, 66.15071950466442]
- 0:-50.15817595807454
- 1:66.15071950466442
2905: [-50.15828293678466, 66.15069723399036]
- 0:-50.15828293678466
- 1:66.15069723399036
2906: [-50.158394508557244, 66.15067494897605]
- 0:-50.158394508557244
- 1:66.15067494897605
2907: [-50.15849704013046, 66.1506526274492]
- 0:-50.15849704013046
- 1:66.1506526274492
2908: [-50.158599548675795, 66.15062589394977]
- 0:-50.158599548675795
- 1:66.15062589394977
2909: [-50.158697587393824, 66.15059469781822]
- 0:-50.158697587393824
- 1:66.15059469781822
2910: [-50.158795749481065, 66.15055902480199]
- 0:-50.158795749481065
- 1:66.15055902480199
2911: [-50.158889340981496, 66.15052777786866]
- 0:-50.158889340981496
- 1:66.15052777786866
2912: [-50.15898303292182, 66.15048764217089]
- 0:-50.15898303292182
- 1:66.15048764217089
2913: [-50.15898309944233, 66.15045198367106]
- 0:-50.15898309944233
- 1:66.15045198367106
2914: [-50.15905000832791, 66.15045644155607]
- 0:-50.15905000832791
- 1:66.15045644155607
2915: [-50.159156927970386, 66.15040298846301]
- 0:-50.159156927970386
- 1:66.15040298846301
2916: [-50.15925952400744, 66.15034500783968]
- 0:-50.15925952400744
- 1:66.15034500783968
2917: [-50.159362052089044, 66.15027808659575]
- 0:-50.159362052089044
- 1:66.15027808659575
2918: [-50.159460154565394, 66.15021123142887]
- 0:-50.159460154565394
- 1:66.15021123142887
2919: [-50.15955361883096, 66.15013986183226]
- 0:-50.15955361883096
- 1:66.15013986183226
2920: [-50.159642927473676, 66.15006401660983]
- 0:-50.159642927473676
- 1:66.15006401660983
2921: [-50.15973661464282, 66.1499792814298]
- 0:-50.15973661464282
- 1:66.1499792814298
2922: [-50.15982568509107, 66.14989014863052]
- 0:-50.15982568509107
- 1:66.14989014863052
2923: [-50.159964028053224, 66.14973407066778]
- 0:-50.159964028053224
- 1:66.14973407066778
2924: [-50.16011105939386, 66.14955127229081]
- 0:-50.16011105939386
- 1:66.14955127229081
2925: [-50.16024498502015, 66.14937731442186]
- 0:-50.16024498502015
- 1:66.14937731442186
2926: [-50.16055712470453, 66.14894924522648]
- 0:-50.16055712470453
- 1:66.14894924522648
2927: [-50.1607221463289, 66.14873522091251]
- 0:-50.1607221463289
- 1:66.14873522091251
2928: [-50.160887010090036, 66.14854350244718]
- 0:-50.160887010090036
- 1:66.14854350244718
2929: [-50.160962754694985, 66.14845433433607]
- 0:-50.160962754694985
- 1:66.14845433433607
2930: [-50.1610475844977, 66.14837402613749]
- 0:-50.1610475844977
- 1:66.14837402613749
2931: [-50.16104761243519, 66.14831159833504]
- 0:-50.16104761243519
- 1:66.14831159833504
2932: [-50.16111004670239, 66.1483115926283]
- 0:-50.16111004670239
- 1:66.1483115926283
2933: [-50.16125713562405, 66.14818233299165]
- 0:-50.16125713562405
- 1:66.14818233299165
2934: [-50.16140414654264, 66.14806637370502]
- 0:-50.16140414654264
- 1:66.14806637370502
2935: [-50.16148458559814, 66.14801290108983]
- 0:-50.16148458559814
- 1:66.14801290108983
2936: [-50.16156485629074, 66.14795937657935]
- 0:-50.16156485629074
- 1:66.14795937657935
2937: [-50.161645003523546, 66.1479103287958]
- 0:-50.161645003523546
- 1:66.1479103287958
2938: [-50.16172529692866, 66.14786121604416]
- 0:-50.16172529692866
- 1:66.14786121604416
2939: [-50.161747749635715, 66.14723695909196]
- 0:-50.161747749635715
- 1:66.14723695909196
2940: [-50.163740793212, 66.14725036277122]
- 0:-50.163740793212
- 1:66.14725036277122
2941: [-50.16373190493242, 66.14757586890661]
- 0:-50.16373190493242
- 1:66.14757586890661
2942: [-50.163892337319254, 66.14760708958207]
- 0:-50.163892337319254
- 1:66.14760708958207
2943: [-50.16402176481937, 66.1476248898875]
- 0:-50.16402176481937
- 1:66.1476248898875
2944: [-50.16435176896656, 66.14767847768735]
- 0:-50.16435176896656
- 1:66.14767847768735
2945: [-50.16468622270564, 66.14773641014528]
- 0:-50.16468622270564
- 1:66.14773641014528
2946: [-50.1650250252161, 66.1478032807799]
- 0:-50.1650250252161
- 1:66.1478032807799
2947: [-50.16536402116544, 66.14787461421709]
- 0:-50.16536402116544
- 1:66.14787461421709
2948: [-50.165702773719374, 66.14795490031881]
- 0:-50.165702773719374
- 1:66.14795490031881
2949: [-50.16603731945648, 66.14804412746491]
- 0:-50.16603731945648
- 1:66.14804412746491
2950: [-50.166371723206126, 66.1481377137635]
- 0:-50.166371723206126
- 1:66.1481377137635
2951: [-50.166697303722685, 66.14823584387466]
- 0:-50.166697303722685
- 1:66.14823584387466
2952: [-50.16702278829532, 66.1483428618302]
- 0:-50.16702278829532
- 1:66.1483428618302
2953: [-50.167334835509145, 66.14845432150994]
- 0:-50.167334835509145
- 1:66.14845432150994
2954: [-50.167642484602055, 66.14857025876995]
- 0:-50.167642484602055
- 1:66.14857025876995
2955: [-50.16793686447247, 66.14869068976633]
- 0:-50.16793686447247
- 1:66.14869068976633
2956: [-50.16821776106471, 66.14881103411302]
- 0:-50.16821776106471
- 1:66.14881103411302
2957: [-50.16848983475211, 66.14893592269878]
- 0:-50.16848983475211
- 1:66.14893592269878
2958: [-50.16874847102739, 66.14906525344242]
- 0:-50.16874847102739
- 1:66.14906525344242
2959: [-50.168989223357165, 66.14919897614045]
- 0:-50.168989223357165
- 1:66.14919897614045
2960: [-50.16921221064279, 66.14932831899765]
- 0:-50.16921221064279
- 1:66.14932831899765
2961: [-50.16941728902921, 66.14945764213361]
- 0:-50.16941728902921
- 1:66.14945764213361
2962: [-50.16960465094003, 66.14959140935677]
- 0:-50.16960465094003
- 1:66.14959140935677
2963: [-50.16977850386497, 66.1497206786363]
- 0:-50.16977850386497
- 1:66.1497206786363
2964: [-50.169930214972226, 66.1498544586636]
- 0:-50.169930214972226
- 1:66.1498544586636
2965: [-50.1700682701466, 66.1499838058029]
- 0:-50.1700682701466
- 1:66.1499838058029
2966: [-50.17018872979626, 66.15011312047699]
- 0:-50.17018872979626
- 1:66.15011312047699
2967: [-50.1702868788347, 66.15024689424858]
- 0:-50.1702868788347
- 1:66.15024689424858
2968: [-50.17036704627494, 66.15037170818714]
- 0:-50.17036704627494
- 1:66.15037170818714
2969: [-50.170433942365214, 66.15050101686083]
- 0:-50.170433942365214
- 1:66.15050101686083
2970: [-50.170456293981786, 66.15056351482234]
- 0:-50.170456293981786
- 1:66.15056351482234
2971: [-50.17047403091518, 66.15062591071188]
- 0:-50.17047403091518
- 1:66.15062591071188
2972: [-50.17049193601386, 66.15068835845669]
- 0:-50.17049193601386
- 1:66.15068835845669
2973: [-50.17050080128953, 66.1507507706683]
- 0:-50.17050080128953
- 1:66.1507507706683
2974: [-50.17050519513461, 66.150808720753]
- 0:-50.17050519513461
- 1:66.150808720753
2975: [-50.170509781823526, 66.15087113459471]
- 0:-50.170509781823526
- 1:66.15087113459471
2976: [-50.170505303832, 66.15092910100235]
- 0:-50.170505303832
- 1:66.15092910100235
2977: [-50.17049642542735, 66.1509915458631]
- 0:-50.17049642542735
- 1:66.1509915458631
2978: [-50.17048307547574, 66.15104952859133]
- 0:-50.17048307547574
- 1:66.15104952859133
2979: [-50.17046527868794, 66.15110746108824]
- 0:-50.17046527868794
- 1:66.15110746108824
2980: [-50.17044288858113, 66.15116540828761]
- 0:-50.17044288858113
- 1:66.15116540828761
2981: [-50.170416073210006, 66.15122342202898]
- 0:-50.170416073210006
- 1:66.15122342202898
2982: [-50.17035821284261, 66.15134827494792]
- 0:-50.17035821284261
- 1:66.15134827494792
2983: [-50.17033132607342, 66.15139734811122]
- 0:-50.17033132607342
- 1:66.15139734811122
2984: [-50.17029571361701, 66.15144637262175]
- 0:-50.17029571361701
- 1:66.15144637262175
2985: [-50.170251157936, 66.15148647280434]
- 0:-50.170251157936
- 1:66.15148647280434
2986: [-50.170251169915446, 66.15159350084991]
- 0:-50.170251169915446
- 1:66.15159350084991
2987: [-50.17004605679603, 66.1515890352819]
- 0:-50.17004605679603
- 1:66.1515890352819
2988: [-50.16995228294169, 66.15161582698694]
- 0:-50.16995228294169
- 1:66.15161582698694
2989: [-50.169849783235414, 66.15164256993603]
- 0:-50.169849783235414
- 1:66.15164256993603
2990: [-50.169724945723004, 66.15166935994709]
- 0:-50.169724945723004
- 1:66.15166935994709
2991: [-50.16957774870268, 66.15169608017456]
- 0:-50.16957774870268
- 1:66.15169608017456
2992: [-50.16957339997727, 66.15185659801867]
- 0:-50.16957339997727
- 1:66.15185659801867
2993: [-50.166915811494825, 66.15184320488765]
- 0:-50.166915811494825
- 1:66.15184320488765
2994: [-50.1669157978215, 66.15179860552728]
- 0:-50.1669157978215
- 1:66.15179860552728
2995: [-50.1666482170713, 66.15178973102553]
- 0:-50.1666482170713
- 1:66.15178973102553
2996: [-50.16642078840747, 66.15178971800863]
- 0:-50.16642078840747
- 1:66.15178971800863
2997: [-50.166215743155604, 66.15179418675918]
- 0:-50.166215743155604
- 1:66.15179418675918
2998: [-50.166032913165594, 66.1518030855389]
- 0:-50.166032913165594
- 1:66.1518030855389
2999: [-50.16594803523159, 66.15181202889144]
- 0:-50.16594803523159
- 1:66.15181202889144
3000: [-50.16586775062138, 66.15182095766308]
- 0:-50.16586775062138
- 1:66.15182095766308
3001: [-50.16579205934095, 66.15182987186269]
- 0:-50.16579205934095
- 1:66.15182987186269
3002: [-50.16572067083323, 66.15184319649609]
- 0:-50.16572067083323
- 1:66.15184319649609
3003: [-50.16564930386005, 66.15185663786802]
- 0:-50.16564930386005
- 1:66.15185663786802
3004: [-50.165586955527026, 66.15186999832508]
- 0:-50.165586955527026
- 1:66.15186999832508
3005: [-50.16552448461467, 66.15188783559785]
- 0:-50.16552448461467
- 1:66.15188783559785
3006: [-50.16546648449807, 66.15191013517844]
- 0:-50.16546648449807
- 1:66.15191013517844
3007: [-50.16536404827146, 66.15194581506611]
- 0:-50.16536404827146
- 1:66.15194581506611
3008: [-50.16526579199631, 66.15199038221864]
- 0:-50.16526579199631
- 1:66.15199038221864
3009: [-50.165163325929804, 66.15204389133369]
- 0:-50.165163325929804
- 1:66.15204389133369
3010: [-50.1650607368707, 66.15210187722336]
- 0:-50.1650607368707
- 1:66.15210187722336
3011: [-50.16557806641237, 66.15210631184621]
- 0:-50.16557806641237
- 1:66.15210631184621
3012: [-50.16556909526622, 66.15237387247808]
- 0:-50.16556909526622
- 1:66.15237387247808
3013: [-50.16490468282633, 66.15236943435762]
- 0:-50.16490468282633
- 1:66.15236943435762
3014: [-50.164909181074364, 66.15220443964527]
- 0:-50.164909181074364
- 1:66.15220443964527
3015: [-50.16474867678588, 66.15232031850287]
- 0:-50.16474867678588
- 1:66.15232031850287
3016: [-50.16456594158135, 66.15247195409178]
- 0:-50.16456594158135
- 1:66.15247195409178
3017: [-50.16450328656611, 66.15252992657082]
- 0:-50.16450328656611
- 1:66.15252992657082
3018: [-50.16445885890675, 66.15258790607676]
- 0:-50.16445885890675
- 1:66.15258790607676
3019: [-50.16442311170091, 66.15264140593953]
- 0:-50.16442311170091
- 1:66.15264140593953
3020: [-50.16440083042408, 66.15269487547556]
- 0:-50.16440083042408
- 1:66.15269487547556
3021: [-50.164391914064836, 66.15275290833168]
- 0:-50.164391914064836
- 1:66.15275290833168
3022: [-50.16440082009552, 66.15280190391194]
- 0:-50.16440082009552
- 1:66.15280190391194
3023: [-50.16441864412592, 66.15285541235356]
- 0:-50.16441864412592
- 1:66.15285541235356
3024: [-50.1644543814927, 66.1529089409311]
- 0:-50.1644543814927
- 1:66.1529089409311
3025: [-50.164886751395976, 66.15290896822734]
- 0:-50.164886751395976
- 1:66.15290896822734
3026: [-50.1648778962596, 66.15317205275498]
- 0:-50.1648778962596
- 1:66.15317205275498
3027: [-50.16489123993111, 66.15317649924428]
- 0:-50.16489123993111
- 1:66.15317649924428
3028: [-50.16753564211657, 66.15318990188342]
- 0:-50.16753564211657
- 1:66.15318990188342
3029: [-50.167526714156224, 66.15346187584896]
- 0:-50.167526714156224
- 1:66.15346187584896
3030: [-50.168191004310486, 66.15346636513537]
- 0:-50.168191004310486
- 1:66.15346636513537
3031: [-50.168182204862156, 66.15373386259552]
- 0:-50.168182204862156
- 1:66.15373386259552
3032: [-50.169510943309774, 66.15374276582357]
- 0:-50.169510943309774
- 1:66.15374276582357
3033: [-50.16950645735944, 66.15401037895305]
- 0:-50.16950645735944
- 1:66.15401037895305
3034: [-50.170170905650195, 66.15401479287013]
- 0:-50.170170905650195
- 1:66.15401479287013
3035: [-50.1701664907684, 66.15414413001719]
- 0:-50.1701664907684
- 1:66.15414413001719
3036: [-50.170750596444464, 66.15423331937446]
- 0:-50.170750596444464
- 1:66.15423331937446
3037: [-50.1712633390487, 66.15431800439644]
- 0:-50.1712633390487
- 1:66.15431800439644
3038: [-50.17172707918588, 66.15439825524425]
- 0:-50.17172707918588
- 1:66.15439825524425
3039: [-50.172155161635054, 66.15447851820201]
- 0:-50.172155161635054
- 1:66.15447851820201
3040: [-50.17255215485529, 66.15455436690016]
- 0:-50.17255215485529
- 1:66.15455436690016
3041: [-50.1729132003659, 66.15463465344642]
- 0:-50.1729132003659
- 1:66.15463465344642
3042: [-50.1732431812751, 66.15471493829222]
- 0:-50.1732431812751
- 1:66.15471493829222
3043: [-50.17339928850287, 66.15475503850686]
- 0:-50.17339928850287
- 1:66.15475503850686
3044: [-50.17354652307174, 66.15479515504023]
- 0:-50.17354652307174
- 1:66.15479515504023
3045: [-50.17368904301083, 66.15483976313098]
- 0:-50.17368904301083
- 1:66.15483976313098
3046: [-50.17382295791724, 66.15487984573839]
- 0:-50.17382295791724
- 1:66.15487984573839
3047: [-50.1739523263027, 66.1549244717828]
- 0:-50.1739523263027
- 1:66.1549244717828
3048: [-50.174077054249715, 66.154964583771]
- 0:-50.174077054249715
- 1:66.154964583771
3049: [-50.17419310286591, 66.15500917600797]
- 0:-50.17419310286591
- 1:66.15500917600797
3050: [-50.17429996410836, 66.15505379780835]
- 0:-50.17429996410836
- 1:66.15505379780835
3051: [-50.174402692853505, 66.15509835631634]
- 0:-50.174402692853505
- 1:66.15509835631634
3052: [-50.17449623415903, 66.15514294442507]
- 0:-50.17449623415903
- 1:66.15514294442507
3053: [-50.174585496450064, 66.15518753421009]
- 0:-50.174585496450064
- 1:66.15518753421009
3054: [-50.17467016512708, 66.1552321387848]
- 0:-50.17467016512708
- 1:66.1552321387848
3055: [-50.174745986293374, 66.15528117188224]
- 0:-50.174745986293374
- 1:66.15528117188224
3056: [-50.174812740920174, 66.15532575771859]
- 0:-50.174812740920174
- 1:66.15532575771859
3057: [-50.17487526354007, 66.15537487403746]
- 0:-50.17487526354007
- 1:66.15537487403746
3058: [-50.17493317080528, 66.15542388841007]
- 0:-50.17493317080528
- 1:66.15542388841007
3059: [-50.17498220499653, 66.15547291937195]
- 0:-50.17498220499653
- 1:66.15547291937195
3060: [-50.17502681354076, 66.15552201701891]
- 0:-50.17502681354076
- 1:66.15552201701891
3061: [-50.175254170240585, 66.15579845229009]
- 0:-50.175254170240585
- 1:66.15579845229009
3062: [-50.17536571059094, 66.15593667077471]
- 0:-50.17536571059094
- 1:66.15593667077471
3063: [-50.17545950513418, 66.15607492251881]
- 0:-50.17545950513418
- 1:66.15607492251881
3064: [-50.17552634081374, 66.15619087881686]
- 0:-50.17552634081374
- 1:66.15619087881686
3065: [-50.175548467858164, 66.1562443847487]
- 0:-50.175548467858164
- 1:66.1562443847487
3066: [-50.17556631552062, 66.15629789245783]
- 0:-50.17556631552062
- 1:66.15629789245783
3067: [-50.175579810958325, 66.15634246116466]
- 0:-50.175579810958325
- 1:66.15634246116466
3068: [-50.17557983880427, 66.15638706140125]
- 0:-50.17557983880427
- 1:66.15638706140125
3069: [-50.17557539345644, 66.15642719957653]
- 0:-50.17557539345644
- 1:66.15642719957653
3070: [-50.17556647489674, 66.1564628756878]
- 0:-50.17556647489674
- 1:66.1564628756878
3071: [-50.17554404139161, 66.15649405453924]
- 0:-50.17554404139161
- 1:66.15649405453924
3072: [-50.17552189685744, 66.15652080827988]
- 0:-50.17552189685744
- 1:66.15652080827988
3073: [-50.17549049128063, 66.15653865097727]
- 0:-50.17549049128063
- 1:66.15653865097727
3074: [-50.17545499983997, 66.15656095927437]
- 0:-50.17545499983997
- 1:66.15656095927437
3075: [-50.175410272909865, 66.15657876851871]
- 0:-50.175410272909865
- 1:66.15657876851871
3076: [-50.17535696133702, 66.15659216926716]
- 0:-50.17535696133702
- 1:66.15659216926716
3077: [-50.175298766538226, 66.15661000997034]
- 0:-50.175298766538226
- 1:66.15661000997034
3078: [-50.17523641307934, 66.15662337545692]
- 0:-50.17523641307934
- 1:66.15662337545692
3079: [-50.17516499226734, 66.15663229368658]
- 0:-50.17516499226734
- 1:66.15663229368658
3080: [-50.175084891384934, 66.15664569232932]
- 0:-50.175084891384934
- 1:66.15664569232932
3081: [-50.17499555502183, 66.15665459184498]
- 0:-50.17499555502183
- 1:66.15665459184498
3082: [-50.17490191358411, 66.15665908103732]
- 0:-50.17490191358411
- 1:66.15665908103732
3083: [-50.17480401803455, 66.15666798390842]
- 0:-50.17480401803455
- 1:66.15666798390842
3084: [-50.17469688705304, 66.15667238760463]
- 0:-50.17469688705304
- 1:66.15667238760463
3085: [-50.1744605943141, 66.15667693436097]
- 0:-50.1744605943141
- 1:66.15667693436097
3086: [-50.17420646004847, 66.15667245619679]
- 0:-50.17420646004847
- 1:66.15667245619679
3087: [-50.173916469529395, 66.15666352794938]
- 0:-50.173916469529395
- 1:66.15666352794938
3088: [-50.17360885294744, 66.15665015509803]
- 0:-50.17360885294744
- 1:66.15665015509803
3089: [-50.173287843122814, 66.156627807039]
- 0:-50.173287843122814
- 1:66.156627807039
3090: [-50.172957788369985, 66.15660112755732]
- 0:-50.172957788369985
- 1:66.15660112755732
3091: [-50.17263240283544, 66.1565654267177]
- 0:-50.17263240283544
- 1:66.1565654267177
3092: [-50.17231129752165, 66.15652972338353]
- 0:-50.17231129752165
- 1:66.15652972338353
3093: [-50.172016956914916, 66.15648960989824]
- 0:-50.172016956914916
- 1:66.15648960989824
3094: [-50.17174952755034, 66.15644502151453]
- 0:-50.17174952755034
- 1:66.15644502151453
3095: [-50.17141950046852, 66.15644499172872]
- 0:-50.17141950046852
- 1:66.15644499172872
3096: [-50.171423759019845, 66.15637814817698]
- 0:-50.171423759019845
- 1:66.15637814817698
3097: [-50.17131247051695, 66.15635583195298]
- 0:-50.17131247051695
- 1:66.15635583195298
3098: [-50.17120096428517, 66.15632463979523]
- 0:-50.17120096428517
- 1:66.15632463979523
3099: [-50.170973504919054, 66.1562622049668]
- 0:-50.170973504919054
- 1:66.1562622049668
3100: [-50.170741670950804, 66.15618641858491]
- 0:-50.170741670950804
- 1:66.15618641858491
3101: [-50.17050536582139, 66.15610616956276]
- 0:-50.17050536582139
- 1:66.15610616956276
3102: [-50.17026451857397, 66.15601251711662]
- 0:-50.17026451857397
- 1:66.15601251711662
3103: [-50.170010448934775, 66.15590994132272]
- 0:-50.170010448934775
- 1:66.15590994132272
3104: [-50.16973389831532, 66.155789530683]
- 0:-50.16973389831532
- 1:66.155789530683
3105: [-50.16939067345939, 66.15563347153775]
- 0:-50.16939067345939
- 1:66.15563347153775
3106: [-50.16927912778048, 66.15557550738666]
- 0:-50.16927912778048
- 1:66.15557550738666
3107: [-50.16917198386189, 66.15551306468333]
- 0:-50.16917198386189
- 1:66.15551306468333
3108: [-50.16907393308546, 66.1554372399078]
- 0:-50.16907393308546
- 1:66.1554372399078
3109: [-50.16897138631281, 66.1553525408221]
- 0:-50.16897138631281
- 1:66.1553525408221
3110: [-50.16879750534457, 66.15535253857496]
- 0:-50.16879750534457
- 1:66.15535253857496
3111: [-50.16880190965372, 66.15517860091931]
- 0:-50.16880190965372
- 1:66.15517860091931
3112: [-50.1687172086323, 66.15508498050215]
- 0:-50.1687172086323
- 1:66.15508498050215
3113: [-50.16813752298934, 66.15508050274128]
- 0:-50.16813752298934
- 1:66.15508050274128
3114: [-50.16814632278144, 66.15481300386242]
- 0:-50.16814632278144
- 1:66.15481300386242
3115: [-50.16748200044997, 66.15480851414092]
- 0:-50.16748200044997
- 1:66.15480851414092
3116: [-50.16749092875929, 66.15453653873283]
- 0:-50.16749092875929
- 1:66.15453653873283
3117: [-50.166202281364775, 66.1545320640949]
- 0:-50.166202281364775
- 1:66.1545320640949
3118: [-50.166162284544924, 66.15456773675504]
- 0:-50.166162284544924
- 1:66.15456773675504
3119: [-50.16614424273405, 66.15506715259991]
- 0:-50.16614424273405
- 1:66.15506715259991
3120: [-50.16481548167153, 66.15506274197215]
- 0:-50.16481548167153
- 1:66.15506274197215
3121: [-50.164820073460646, 66.15491109819436]
- 0:-50.164820073460646
- 1:66.15491109819436
3122: [-50.16473076761668, 66.1549021607448]
- 0:-50.16473076761668
- 1:66.1549021607448
3123: [-50.16465052697564, 66.15489767117829]
- 0:-50.16465052697564
- 1:66.15489767117829
3124: [-50.16457913574474, 66.15488875372462]
- 0:-50.16457913574474
- 1:66.15488875372462
3125: [-50.164507720736346, 66.15487542426285]
- 0:-50.164507720736346
- 1:66.15487542426285
3126: [-50.164449796708524, 66.15486647640202]
- 0:-50.164449796708524
- 1:66.15486647640202
3127: [-50.1643964428133, 66.15485310208072]
- 0:-50.1643964428133
- 1:66.15485310208072
3128: [-50.164351770284746, 66.15483524806777]
- 0:-50.164351770284746
- 1:66.15483524806777
3129: [-50.164311737095474, 66.15482190832407]
- 0:-50.164311737095474
- 1:66.15482190832407
3130: [-50.16427144290477, 66.1547951640375]
- 0:-50.16427144290477
- 1:66.1547951640375
3131: [-50.1642312715075, 66.15476394284616]
- 0:-50.1642312715075
- 1:66.15476394284616
3132: [-50.164200072329365, 66.15472381694578]
- 0:-50.164200072329365
- 1:66.15472381694578
3133: [-50.164177746401116, 66.15468367520486]
- 0:-50.164177746401116
- 1:66.15468367520486
3134: [-50.1641601133727, 66.15463463015232]
- 0:-50.1641601133727
- 1:66.15463463015232
3135: [-50.16415116168529, 66.15458110545542]
- 0:-50.16415116168529
- 1:66.15458110545542
3136: [-50.16414661203136, 66.15452310249879]
- 0:-50.16414661203136
- 1:66.15452310249879
3137: [-50.16415110358409, 66.15446513556863]
- 0:-50.16415110358409
- 1:66.15446513556863
3138: [-50.164160081734245, 66.15443398937008]
- 0:-50.164160081734245
- 1:66.15443398937008
3139: [-50.16418216681215, 66.15439829721346]
- 0:-50.16418216681215
- 1:66.15439829721346
3140: [-50.164222480619586, 66.15436261214487]
- 0:-50.164222480619586
- 1:66.15436261214487
3141: [-50.164271520880604, 66.1543269761501]
- 0:-50.164271520880604
- 1:66.1543269761501
3142: [-50.16432498672761, 66.15429127382488]
- 0:-50.16432498672761
- 1:66.15429127382488
3143: [-50.16439177276848, 66.1542556060882]
- 0:-50.16439177276848
- 1:66.1542556060882
3144: [-50.164699582306596, 66.15410400677479]
- 0:-50.164699582306596
- 1:66.15410400677479
3145: [-50.164766490026885, 66.15406386197587]
- 0:-50.164766490026885
- 1:66.15406386197587
3146: [-50.16481552904493, 66.15402822580337]
- 0:-50.16481552904493
- 1:66.15402822580337
3147: [-50.16485567339776, 66.1539924887254]
- 0:-50.16485567339776
- 1:66.1539924887254
3148: [-50.164877949195706, 66.15396126030392]
- 0:-50.164877949195706
- 1:66.15396126030392
3149: [-50.164882479124664, 66.15393006366573]
- 0:-50.164882479124664
- 1:66.15393006366573
3150: [-50.164873542407676, 66.15389889740761]
- 0:-50.164873542407676
- 1:66.15389889740761
3151: [-50.16485565793237, 66.1538810478241]
- 0:-50.16485565793237
- 1:66.1538810478241
3152: [-50.1648378961013, 66.15385872135927]
- 0:-50.1648378961013
- 1:66.15385872135927
3153: [-50.16477988657067, 66.1538141796102]
- 0:-50.16477988657067
- 1:66.1538141796102
3154: [-50.164695237033825, 66.1537695687004]
- 0:-50.164695237033825
- 1:66.1537695687004
3155: [-50.16457913817127, 66.15371602730518]
- 0:-50.16457913817127
- 1:66.15371602730518
3156: [-50.16352681877076, 66.15370711394127]
- 0:-50.16352681877076
- 1:66.15370711394127
3157: [-50.16354025667972, 66.15343960264312]
- 0:-50.16354025667972
- 1:66.15343960264312
3158: [-50.16220680737943, 66.15343512733584]
- 0:-50.16220680737943
- 1:66.15343512733584
3159: [-50.16221577969599, 66.15318539545036]
- 0:-50.16221577969599
- 1:66.15318539545036
3160: [-50.16201962631468, 66.15317201213016]
- 0:-50.16201962631468
- 1:66.15317201213016
3161: [-50.1618101981926, 66.15316312234263]
- 0:-50.1618101981926
- 1:66.15316312234263
3162: [-50.160887066095505, 66.15315417351009]
- 0:-50.160887066095505
- 1:66.15315417351009
3163: [-50.16088703002012, 66.15312740341395]
- 0:-50.16088703002012
- 1:66.15312740341395
3164: [-50.1599996113335, 66.15310072479394]
- 0:-50.1599996113335
- 1:66.15310072479394
3165: [-50.15946469433149, 66.15307840363997]
- 0:-50.15946469433149
- 1:66.15307840363997
3166: [-50.15921484640965, 66.153069482117]
- 0:-50.15921484640965
- 1:66.153069482117
3167: [-50.15897844198135, 66.15305611842139]
- 0:-50.15897844198135
- 1:66.15305611842139
3168: [-50.158760074788844, 66.15303829836935]
- 0:-50.158760074788844
- 1:66.15303829836935
3169: [-50.15855485957548, 66.15302046130572]
- 0:-50.15855485957548
- 1:66.15302046130572
3170: [-50.158345321100406, 66.1529980963794]
- 0:-50.158345321100406
- 1:66.1529980963794
3171: [-50.15814912430666, 66.1529758831549]
- 0:-50.15814912430666
- 1:66.1529758831549
3172: [-50.15796177888146, 66.15295353744408]
- 0:-50.15796177888146
- 1:66.15295353744408
3173: [-50.15778804535026, 66.15292680177188]
- 0:-50.15778804535026
- 1:66.15292680177188
3174: [-50.15761854687697, 66.15289553599565]
- 0:-50.15761854687697
- 1:66.15289553599565
3175: [-50.15745806679697, 66.15285989456166]
- 0:-50.15745806679697
- 1:66.15285989456166
3176: [-50.15731092952136, 66.15282870021348]
- 0:-50.15731092952136
- 1:66.15282870021348
3177: [-50.157168004733514, 66.15278856392143]
- 0:-50.157168004733514
- 1:66.15278856392143
3178: [-50.15704777795403, 66.15275289824989]
- 0:-50.15704777795403
- 1:66.15275289824989
3179: [-50.15692289109804, 66.15270830603305]
- 0:-50.15692289109804
- 1:66.15270830603305
3180: [-50.1567979378927, 66.15265477307298]
- 0:-50.1567979378927
- 1:66.15265477307298
3181: [-50.156659810996324, 66.15259684451546]
- 0:-50.156659810996324
- 1:66.15259684451546
3182: [-50.15653942979323, 66.15253888521985]
- 0:-50.15653942979323
- 1:66.15253888521985
3183: [-50.156410109920174, 66.15247200049562]
- 0:-50.156410109920174
- 1:66.15247200049562
3184: [-50.15595526719356, 66.15222669866388]
- 0:-50.15595526719356
- 1:66.15222669866388
3185: [-50.15578126454053, 66.15213754468907]
- 0:-50.15578126454053
- 1:66.15213754468907
3186: [-50.15560300642717, 66.15205280351202]
- 0:-50.15560300642717
- 1:66.15205280351202
3187: [-50.15543803325776, 66.15198592701276]
- 0:-50.15543803325776
- 1:66.15198592701276
3188: [-50.155344429115914, 66.15195021417175]
- 0:-50.155344429115914
- 1:66.15195021417175
3189: [-50.15525086909936, 66.15191902995751]
- 0:-50.15525086909936
- 1:66.15191902995751
3190: [-50.15516148632333, 66.15189673334024]
- 0:-50.15516148632333
- 1:66.15189673334024
3191: [-50.155072418240586, 66.15187442360681]
- 0:-50.155072418240586
- 1:66.15187442360681
3192: [-50.15498769533403, 66.15186105334178]
- 0:-50.15498769533403
- 1:66.15186105334178
3193: [-50.154902848275164, 66.15185215984658]
- 0:-50.154902848275164
- 1:66.15185215984658
3194: [-50.154818191582905, 66.15184773006591]
- 0:-50.154818191582905
- 1:66.15184773006591
3195: [-50.15473355715446, 66.15184771213646]
- 0:-50.15473355715446
- 1:66.15184771213646
3196: [-50.1546174420286, 66.15185659063344]
- 0:-50.1546174420286
- 1:66.15185659063344
3197: [-50.15449264470109, 66.15186994795238]
- 0:-50.15449264470109
- 1:66.15186994795238
3198: [-50.15435889428401, 66.15189232581035]
- 0:-50.15435889428401
- 1:66.15189232581035
3199: [-50.154220718814145, 66.15191906461409]
- 0:-50.154220718814145
- 1:66.15191906461409
3200: [-50.15407801541616, 66.151954757957]
- 0:-50.15407801541616
- 1:66.151954757957
3201: [-50.15393088675365, 66.15199481221886]
- 0:-50.15393088675365
- 1:66.15199481221886
3202: [-50.1537836547973, 66.15203945991988]
- 0:-50.1537836547973
- 1:66.15203945991988
3203: [-50.15363659091912, 66.15208845444853]
- 0:-50.15363659091912
- 1:66.15208845444853
3204: [-50.15349384906634, 66.15214197648703]
- 0:-50.15349384906634
- 1:66.15214197648703
3205: [-50.15336016923386, 66.15219994707341]
- 0:-50.15336016923386
- 1:66.15219994707341
3206: [-50.153230767803095, 66.15225791651882]
- 0:-50.153230767803095
- 1:66.15225791651882
3207: [-50.153114875460844, 66.15232038542452]
- 0:-50.153114875460844
- 1:66.15232038542452
3208: [-50.153007811615446, 66.15237831048691]
- 0:-50.153007811615446
- 1:66.15237831048691
3209: [-50.15291406696445, 66.15243627129303]
- 0:-50.15291406696445
- 1:66.15243627129303
3210: [-50.15283823518045, 66.15249425382916]
- 0:-50.15283823518045
- 1:66.15249425382916
3211: [-50.15277586929245, 66.15255220725525]
- 0:-50.15277586929245
- 1:66.15255220725525
3212: [-50.15268681074481, 66.15264586450701]
- 0:-50.15268681074481
- 1:66.15264586450701
3213: [-50.152615475046105, 66.15273507975999]
- 0:-50.152615475046105
- 1:66.15273507975999
3214: [-50.15256181893933, 66.15281532433566]
- 0:-50.15256181893933
- 1:66.15281532433566
3215: [-50.15253079431552, 66.15289109987474]
- 0:-50.15253079431552
- 1:66.15289109987474
3216: [-50.152512877570665, 66.15295803557748]
- 0:-50.152512877570665
- 1:66.15295803557748
3217: [-50.15251292748958, 66.1529892175411]
- 0:-50.15251292748958
- 1:66.1529892175411
3218: [-50.15251725650851, 66.15302039852526]
- 0:-50.15251725650851
- 1:66.15302039852526
3219: [-50.15252632537789, 66.15304720541955]
- 0:-50.15252632537789
- 1:66.15304720541955
3220: [-50.15253950530646, 66.15307395946562]
- 0:-50.15253950530646
- 1:66.15307395946562
3221: [-50.152557403547505, 66.15309622263611]
- 0:-50.152557403547505
- 1:66.15309622263611
3222: [-50.15257974899692, 66.15311853668719]
- 0:-50.15257974899692
- 1:66.15311853668719
3223: [-50.152628800232776, 66.15315415824038]
- 0:-50.152628800232776
- 1:66.15315415824038
3224: [-50.15269114967514, 66.15318540369995]
- 0:-50.15269114967514
- 1:66.15318540369995
3225: [-50.152776006688754, 66.15321665689302]
- 0:-50.152776006688754
- 1:66.15321665689302
3226: [-50.152874015856675, 66.15324789399834]
- 0:-50.152874015856675
- 1:66.15324789399834
3227: [-50.152989917441055, 66.15327903602052]
- 0:-50.152989917441055
- 1:66.15327903602052
3228: [-50.15312375460965, 66.15331031647315]
- 0:-50.15312375460965
- 1:66.15331031647315
3229: [-50.15327976344049, 66.15334150072681]
- 0:-50.15327976344049
- 1:66.15334150072681
3230: [-50.15349830658271, 66.15338603553111]
- 0:-50.15349830658271
- 1:66.15338603553111
3231: [-50.15422947687525, 66.15339053114079]
- 0:-50.15422947687525
- 1:66.15339053114079
3232: [-50.154225272714335, 66.15349308384609]
- 0:-50.154225272714335
- 1:66.15349308384609
3233: [-50.1543900683187, 66.15351089901993]
- 0:-50.1543900683187
- 1:66.15351089901993
3234: [-50.154564007124144, 66.15351986189079]
- 0:-50.154564007124144
- 1:66.15351986189079
3235: [-50.15475128840584, 66.15353327209024]
- 0:-50.15475128840584
- 1:66.15353327209024
3236: [-50.15495199261712, 66.15354212398387]
- 0:-50.15495199261712
- 1:66.15354212398387
3237: [-50.15537114629016, 66.15355550121774]
- 0:-50.15537114629016
- 1:66.15355550121774
3238: [-50.15608459619645, 66.1535644283825]
- 0:-50.15608459619645
- 1:66.1535644283825
3239: [-50.156267532396406, 66.15356889676391]
- 0:-50.156267532396406
- 1:66.15356889676391
3240: [-50.15645912837172, 66.15356447384372]
- 0:-50.15645912837172
- 1:66.15356447384372
3241: [-50.15666433736843, 66.15355995621783]
- 0:-50.15666433736843
- 1:66.15355995621783
3242: [-50.15688284376488, 66.1535510617202]
- 0:-50.15688284376488
- 1:66.1535510617202
3243: [-50.156887208487504, 66.15340396115239]
- 0:-50.156887208487504
- 1:66.15340396115239
3244: [-50.15755607702853, 66.15340837593581]
- 0:-50.15755607702853
- 1:66.15340837593581
3245: [-50.15755169435948, 66.15350646502698]
- 0:-50.15755169435948
- 1:66.15350646502698
3246: [-50.15813575676704, 66.15346191402139]
- 0:-50.15813575676704
- 1:66.15346191402139
3247: [-50.158354261499255, 66.15345301694975]
- 0:-50.158354261499255
- 1:66.15345301694975
3248: [-50.158550405077584, 66.1534440478559]
- 0:-50.158550405077584
- 1:66.1534440478559
3249: [-50.15874212285583, 66.15343514457268]
- 0:-50.15874212285583
- 1:66.15343514457268
3250: [-50.15892058786203, 66.15343514646756]
- 0:-50.15892058786203
- 1:66.15343514646756
3251: [-50.15909001192371, 66.15343511173135]
- 0:-50.15909001192371
- 1:66.15343511173135
3252: [-50.15925503330231, 66.15343955484161]
- 0:-50.15925503330231
- 1:66.15343955484161
3253: [-50.1596295294553, 66.15345742026203]
- 0:-50.1596295294553
- 1:66.15345742026203
3254: [-50.159981833046736, 66.15347526503723]
- 0:-50.159981833046736
- 1:66.15347526503723
3255: [-50.16032069354205, 66.15349755065184]
- 0:-50.16032069354205
- 1:66.15349755065184
3256: [-50.160641808765654, 66.1535198665365]
- 0:-50.160641808765654
- 1:66.1535198665365
3257: [-50.160945010616146, 66.15354216097234]
- 0:-50.160945010616146
- 1:66.15354216097234
3258: [-50.161234769575486, 66.15356889660595]
- 0:-50.161234769575486
- 1:66.15356889660595
3259: [-50.1615068066233, 66.15360007482332]
- 0:-50.1615068066233
- 1:66.15360007482332
3260: [-50.16176095198804, 66.15363134872395]
- 0:-50.16176095198804
- 1:66.15363134872395
3261: [-50.16200180116226, 66.15366699920152]
- 0:-50.16200180116226
- 1:66.15366699920152
3262: [-50.162229207733134, 66.1537070912617]
- 0:-50.162229207733134
- 1:66.1537070912617
3263: [-50.16243425192115, 66.15374281680486]
- 0:-50.16243425192115
- 1:66.15374281680486
3264: [-50.16262619155608, 66.15378738297547]
- 0:-50.16262619155608
- 1:66.15378738297547
3265: [-50.16280007137578, 66.15383199342567]
- 0:-50.16280007137578
- 1:66.15383199342567
3266: [-50.16296063154065, 66.15387656888795]
- 0:-50.16296063154065
- 1:66.15387656888795
3267: [-50.16310315534167, 66.15392560071149]
- 0:-50.16310315534167
- 1:66.15392560071149
3268: [-50.16322812542859, 66.15397912773723]
- 0:-50.16322812542859
- 1:66.15397912773723
3269: [-50.16351801971934, 66.15397913981656]
- 0:-50.16351801971934
- 1:66.15397913981656
3270: [-50.16351339051237, 66.1541486124753]
- 0:-50.16351339051237
- 1:66.1541486124753
3271: [-50.163602695655754, 66.15422439198811]
- 0:-50.163602695655754
- 1:66.15422439198811
3272: [-50.163691755673135, 66.15430912523424]
- 0:-50.163691755673135
- 1:66.15430912523424
3273: [-50.163772089649335, 66.1543938093316]
- 0:-50.163772089649335
- 1:66.1543938093316
3274: [-50.16384342823823, 66.15448298611454]
- 0:-50.16384342823823
- 1:66.15448298611454
3275: [-50.16390130030747, 66.15457219316089]
- 0:-50.16390130030747
- 1:66.15457219316089
3276: [-50.163950422362575, 66.1546569391455]
- 0:-50.163950422362575
- 1:66.1546569391455
3277: [-50.16399062620529, 66.15473717222206]
- 0:-50.16399062620529
- 1:66.15473717222206
3278: [-50.164012892046905, 66.15481297315178]
- 0:-50.164012892046905
- 1:66.15481297315178
3279: [-50.16402621570508, 66.15487984921411]
- 0:-50.16402621570508
- 1:66.15487984921411
3280: [-50.16402617128238, 66.15493786670925]
- 0:-50.16402617128238
- 1:66.15493786670925
3281: [-50.16401280617101, 66.15499584956966]
- 0:-50.16401280617101
- 1:66.15499584956966
3282: [-50.16398605121132, 66.15504485706882]
- 0:-50.16398605121132
- 1:66.15504485706882
3283: [-50.16395052189945, 66.15508499152327]
- 0:-50.16395052189945
- 1:66.15508499152327
3284: [-50.16392815139974, 66.15510286721266]
- 0:-50.16392815139974
- 1:66.15510286721266
3285: [-50.1639059273629, 66.15512067797016]
- 0:-50.1639059273629
- 1:66.15512067797016
3286: [-50.163874515400856, 66.15513851761999]
- 0:-50.163874515400856
- 1:66.15513851761999
3287: [-50.16384354076578, 66.15515186728472]
- 0:-50.16384354076578
- 1:66.15515186728472
3288: [-50.1638122515106, 66.15516523001929]
- 0:-50.1638122515106
- 1:66.15516523001929
3289: [-50.16377206520064, 66.15517419658465]
- 0:-50.16377206520064
- 1:66.15517419658465
3290: [-50.16369183898968, 66.15519206474838]
- 0:-50.16369183898968
- 1:66.15519206474838
3291: [-50.163593652625146, 66.15520538385182]
- 0:-50.163593652625146
- 1:66.15520538385182
3292: [-50.16347329361095, 66.15521880074347]
- 0:-50.16347329361095
- 1:66.15521880074347
3293: [-50.16333514253758, 66.15522772032502]
- 0:-50.16333514253758
- 1:66.15522772032502
3294: [-50.16318347882264, 66.1552321411908]
- 0:-50.16318347882264
- 1:66.1552321411908
3295: [-50.163009474360166, 66.15523660780232]
- 0:-50.163009474360166
- 1:66.15523660780232
3296: [-50.1628132756183, 66.15524105513853]
- 0:-50.1628132756183
- 1:66.15524105513853
3297: [-50.16254128272411, 66.15524106176369]
- 0:-50.16254128272411
- 1:66.15524106176369
3298: [-50.162416506346275, 66.15523659750761]
- 0:-50.162416506346275
- 1:66.15523659750761
3299: [-50.16228266506936, 66.15522768500574]
- 0:-50.16228266506936
- 1:66.15522768500574
3300: [-50.162135602634415, 66.15520984864158]
- 0:-50.162135602634415
- 1:66.15520984864158
3301: [-50.161975073042115, 66.1551920421679]
- 0:-50.161975073042115
- 1:66.1551920421679
3302: [-50.16180115443057, 66.15516525988306]
- 0:-50.16180115443057
- 1:66.15516525988306
3303: [-50.16161389195392, 66.15513403048665]
- 0:-50.16161389195392
- 1:66.15513403048665
3304: [-50.16140881495044, 66.1550938913824]
- 0:-50.16140881495044
- 1:66.1550938913824
3305: [-50.161167985678624, 66.15504040991739]
- 0:-50.161167985678624
- 1:66.15504040991739
3306: [-50.160824671460965, 66.15504043409545]
- 0:-50.160824671460965
- 1:66.15504043409545
3307: [-50.160829078696814, 66.15496911452121]
- 0:-50.160829078696814
- 1:66.15496911452121
3308: [-50.16055254546243, 66.15491111370949]
- 0:-50.16055254546243
- 1:66.15491111370949
3309: [-50.16035194194196, 66.15487543548915]
- 0:-50.16035194194196
- 1:66.15487543548915
3310: [-50.16018259730216, 66.15484422472359]
- 0:-50.16018259730216
- 1:66.15484422472359
3311: [-50.16004428770354, 66.1548308472777]
- 0:-50.16004428770354
- 1:66.1548308472777
3312: [-50.15998624146088, 66.15482637424779]
- 0:-50.15998624146088
- 1:66.15482637424779
3313: [-50.15993278915453, 66.15482188688831]
- 0:-50.15993278915453
- 1:66.15482188688831
3314: [-50.15988366086597, 66.15482192701725]
- 0:-50.15988366086597
- 1:66.15482192701725
3315: [-50.1598435969961, 66.15482641541595]
- 0:-50.1598435969961
- 1:66.15482641541595
3316: [-50.15980795894711, 66.15483083764644]
- 0:-50.15980795894711
- 1:66.15483083764644
3317: [-50.15978126186896, 66.1548441850487]
- 0:-50.15978126186896
- 1:66.1548441850487
3318: [-50.159754541701304, 66.15485312048153]
- 0:-50.159754541701304
- 1:66.15485312048153
3319: [-50.15973657134559, 66.15486651727308]
- 0:-50.15973657134559
- 1:66.15486651727308
3320: [-50.15972309452121, 66.15488878862116]
- 0:-50.15972309452121
- 1:66.15488878862116
3321: [-50.15971437970282, 66.15491109753228]
- 0:-50.15971437970282
- 1:66.15491109753228
3322: [-50.1597098207779, 66.15493788210647]
- 0:-50.1597098207779
- 1:66.15493788210647
3323: [-50.15970987884925, 66.15496906435502]
- 0:-50.15970987884925
- 1:66.15496906435502
3324: [-50.15972319233495, 66.15503594086148]
- 0:-50.15972319233495
- 1:66.15503594086148
3325: [-50.15975898199317, 66.15512065347677]
- 0:-50.15975898199317
- 1:66.15512065347677
3326: [-50.15981686576801, 66.15521427454513]
- 0:-50.15981686576801
- 1:66.15521427454513
3327: [-50.15989273261859, 66.1553168571384]
- 0:-50.15989273261859
- 1:66.1553168571384
3328: [-50.15997747348085, 66.15541942418993]
- 0:-50.15997747348085
- 1:66.15541942418993
3329: [-50.16006659468189, 66.15551310111276]
- 0:-50.16006659468189
- 1:66.15551310111276
3330: [-50.16010229208416, 66.15553986112235]
- 0:-50.16010229208416
- 1:66.15553986112235
3331: [-50.16014688617484, 66.15557101754979]
- 0:-50.16014688617484
- 1:66.15557101754979
3332: [-50.16020037545502, 66.15560227519136]
- 0:-50.16020037545502
- 1:66.15560227519136
3333: [-50.16026288486651, 66.15563345232947]
- 0:-50.16026288486651
- 1:66.15563345232947
3334: [-50.160329527371026, 66.15566469311736]
- 0:-50.160329527371026
- 1:66.15566469311736
3335: [-50.1604098288797, 66.15570036782059]
- 0:-50.1604098288797
- 1:66.15570036782059
3336: [-50.16049453337482, 66.15573156431913]
- 0:-50.16049453337482
- 1:66.15573156431913
3337: [-50.16058830289607, 66.15576720901912]
- 0:-50.16058830289607
- 1:66.15576720901912
3338: [-50.160766731272695, 66.15582522602128]
- 0:-50.160766731272695
- 1:66.15582522602128
3339: [-50.160980677943904, 66.1558875923299]
- 0:-50.160980677943904
- 1:66.1558875923299
3340: [-50.161194647113376, 66.1559500750747]
- 0:-50.161194647113376
- 1:66.1559500750747
3341: [-50.161658543807285, 66.15607489889955]
- 0:-50.161658543807285
- 1:66.15607489889955
3342: [-50.161850252430476, 66.15612842058162]
- 0:-50.161850252430476
- 1:66.15612842058162
3343: [-50.162006253966176, 66.1561774240988]
- 0:-50.162006253966176
- 1:66.1561774240988
3344: [-50.1621310174065, 66.15622207690694]
- 0:-50.1621310174065
- 1:66.15622207690694
3345: [-50.16218458804065, 66.15624432810998]
- 0:-50.16218458804065
- 1:66.15624432810998
3346: [-50.162229138568, 66.15626665991918]
- 0:-50.162229138568
- 1:66.15626665991918
3347: [-50.16226936454821, 66.15628446425677]
- 0:-50.16226936454821
- 1:66.15628446425677
3348: [-50.16229616780541, 66.15630682744879]
- 0:-50.16229616780541
- 1:66.15630682744879
3349: [-50.162318478372725, 66.15632461132593]
- 0:-50.162318478372725
- 1:66.15632461132593
3350: [-50.162327321100875, 66.1563424252967]
- 0:-50.162327321100875
- 1:66.1563424252967
3351: [-50.162331737782594, 66.15636030551211]
- 0:-50.162331737782594
- 1:66.15636030551211
3352: [-50.162327427250915, 66.15637813650741]
- 0:-50.162327427250915
- 1:66.15637813650741
3353: [-50.16231405140464, 66.15639151936192]
- 0:-50.16231405140464
- 1:66.15639151936192
3354: [-50.16229163371261, 66.156404866065]
- 0:-50.16229163371261
- 1:66.156404866065
3355: [-50.16226051036552, 66.15641828032027]
- 0:-50.16226051036552
- 1:66.15641828032027
3356: [-50.16222034514506, 66.15643165841249]
- 0:-50.16222034514506
- 1:66.15643165841249
3357: [-50.16217573221197, 66.15644498594907]
- 0:-50.16217573221197
- 1:66.15644498594907
3358: [-50.16211779595941, 66.15645398340418]
- 0:-50.16211779595941
- 1:66.15645398340418
3359: [-50.16205079621198, 66.15646282788272]
- 0:-50.16205079621198
- 1:66.15646282788272
3360: [-50.161975090762304, 66.15647173986115]
- 0:-50.161975090762304
- 1:66.15647173986115
3361: [-50.161819062108286, 66.15648516605735]
- 0:-50.161819062108286
- 1:66.15648516605735
3362: [-50.161627225365564, 66.15650296297187]
- 0:-50.161627225365564
- 1:66.15650296297187
3363: [-50.16077554902512, 66.15654758380477]
- 0:-50.16077554902512
- 1:66.15654758380477
3364: [-50.16077107762918, 66.15665456320475]
- 0:-50.16077107762918
- 1:66.15665456320475
3365: [-50.159856915376984, 66.15665017106002]
- 0:-50.159856915376984
- 1:66.15665017106002
3366: [-50.15979455313878, 66.15666352880974]
- 0:-50.15979455313878
- 1:66.15666352880974
3367: [-50.15973666162824, 66.15668134915528]
- 0:-50.15973666162824
- 1:66.15668134915528
3368: [-50.15968302659787, 66.15669475625296]
- 0:-50.15968302659787
- 1:66.15669475625296
3369: [-50.15963400880487, 66.15671256103445]
- 0:-50.15963400880487
- 1:66.15671256103445
3370: [-50.15959403291399, 66.15673040214455]
- 0:-50.15959403291399
- 1:66.15673040214455
3371: [-50.1595537423592, 66.15674825630909]
- 0:-50.1595537423592
- 1:66.15674825630909
3372: [-50.159522516770956, 66.15677055881135]
- 0:-50.159522516770956
- 1:66.15677055881135
3373: [-50.15949569424645, 66.15678838316641]
- 0:-50.15949569424645
- 1:66.15678838316641
3374: [-50.15946027960365, 66.15682403965253]
- 0:-50.15946027960365
- 1:66.15682403965253
3375: [-50.15942902103334, 66.15686417183973]
- 0:-50.15942902103334
- 1:66.15686417183973
3376: [-50.1593977623739, 66.156904304025]
- 0:-50.1593977623739
- 1:66.156904304025
3377: [-50.15937097440593, 66.15694889885259]
- 0:-50.15937097440593
- 1:66.15694889885259
3378: [-50.15934865713938, 66.15699795632776]
- 0:-50.15934865713938
- 1:66.15699795632776
3379: [-50.15933093409019, 66.15704699952923]
- 0:-50.15933093409019
- 1:66.15704699952923
3380: [-50.159317490667846, 66.1570960415247]
- 0:-50.159317490667846
- 1:66.1570960415247
3381: [-50.15930849499704, 66.15714513417407]
- 0:-50.15930849499704
- 1:66.15714513417407
3382: [-50.159308552721065, 66.15717631669288]
- 0:-50.159308552721065
- 1:66.15717631669288
3383: [-50.15930848694161, 66.1572119761447]
- 0:-50.15930848694161
- 1:66.1572119761447
3384: [-50.15932639508714, 66.15727883900979]
- 0:-50.15932639508714
- 1:66.15727883900979
3385: [-50.15936654389372, 66.15735025033833]
- 0:-50.15936654389372
- 1:66.15735025033833
3386: [-50.15941999325261, 66.15742158003795]
- 0:-50.15941999325261
- 1:66.15742158003795
3387: [-50.1594913592176, 66.1574929305903]
- 0:-50.1594913592176
- 1:66.1574929305903
3388: [-50.159580664976396, 66.15756871397696]
- 0:-50.159580664976396
- 1:66.15756871397696
3389: [-50.159687596092226, 66.15764894323114]
- 0:-50.159687596092226
- 1:66.15764894323114
3390: [-50.159816869085496, 66.15772483184561]
- 0:-50.159816869085496
- 1:66.15772483184561
3391: [-50.16007099390328, 66.1577292225217]
- 0:-50.16007099390328
- 1:66.1577292225217
3392: [-50.1600665552559, 66.15786297297237]
- 0:-50.1600665552559
- 1:66.15786297297237
3393: [-50.1602003567656, 66.15792990614095]
- 0:-50.1602003567656
- 1:66.15792990614095
3394: [-50.16034745949838, 66.15799675745299]
- 0:-50.16034745949838
- 1:66.15799675745299
3395: [-50.16072652037338, 66.1580012530873]
- 0:-50.16072652037338
- 1:66.1580012530873
3396: [-50.160722121001704, 66.1581617743481]
- 0:-50.160722121001704
- 1:66.1581617743481
3397: [-50.16085585731783, 66.15821976608039]
- 0:-50.16085585731783
- 1:66.15821976608039
3398: [-50.16098952600996, 66.15826881685366]
- 0:-50.16098952600996
- 1:66.15826881685366
3399: [-50.16337964588237, 66.15828212599908]
- 0:-50.16337964588237
- 1:66.15828212599908
3400: [-50.16336177450997, 66.1587013401028]
- 0:-50.16336177450997
- 1:66.1587013401028
3401: [-50.163665126794896, 66.15873698160462]
- 0:-50.163665126794896
- 1:66.15873698160462
3402: [-50.163994932857435, 66.15876822781664]
- 0:-50.163994932857435
- 1:66.15876822781664
3403: [-50.16529261928973, 66.15889757131589]
- 0:-50.16529261928973
- 1:66.15889757131589
3404: [-50.16552438144304, 66.15891982718408]
- 0:-50.16552438144304
- 1:66.15891982718408
3405: [-50.16571177141042, 66.15894216234325]
- 0:-50.16571177141042
- 1:66.15894216234325
3406: [-50.165903465635594, 66.15896890782908]
- 0:-50.165903465635594
- 1:66.15896890782908
3407: [-50.16597486768305, 66.15897782472969]
- 0:-50.16597486768305
- 1:66.15897782472969
3408: [-50.166028376716945, 66.15899113371042]
- 0:-50.166028376716945
- 1:66.15899113371042
3409: [-50.16607298719162, 66.15900004659582]
- 0:-50.16607298719162
- 1:66.15900004659582
3410: [-50.16609972625649, 66.15901346837893]
- 0:-50.16609972625649
- 1:66.15901346837893
3411: [-50.16611309703959, 66.15902232689818]
- 0:-50.16611309703959
- 1:66.15902232689818
3412: [-50.16610857228284, 66.15903128228958]
- 0:-50.16610857228284
- 1:66.15903128228958
3413: [-50.16609531950584, 66.15904018871768]
- 0:-50.16609531950584
- 1:66.15904018871768
3414: [-50.16607287756194, 66.1590491241948]
- 0:-50.16607287756194
- 1:66.1590491241948
3415: [-50.166037281123195, 66.15905807707443]
- 0:-50.166037281123195
- 1:66.15905807707443
3416: [-50.165992642001676, 66.15906699405598]
- 0:-50.165992642001676
- 1:66.15906699405598
3417: [-50.16587241440826, 66.15908034844503]
- 0:-50.16587241440826
- 1:66.15908034844503
3418: [-50.16570285907909, 66.1590892812008]
- 0:-50.16570285907909
- 1:66.1590892812008
3419: [-50.16549778378875, 66.15909816065424]
- 0:-50.16549778378875
- 1:66.15909816065424
3420: [-50.1652480209017, 66.1591071324023]
- 0:-50.1652480209017
- 1:66.1591071324023
3421: [-50.164958289821904, 66.15911599997962]
- 0:-50.164958289821904
- 1:66.15911599997962
3422: [-50.164623801626064, 66.15911601842664]
- 0:-50.164623801626064
- 1:66.15911601842664
3423: [-50.164244796110744, 66.1591204753634]
- 0:-50.164244796110744
- 1:66.1591204753634
3424: [-50.16382105740883, 66.15912049444835]
- 0:-50.16382105740883
- 1:66.15912049444835
3425: [-50.16336636947207, 66.15911603195248]
- 0:-50.16336636947207
- 1:66.15911603195248
3426: [-50.16288029491823, 66.15911157758379]
- 0:-50.16288029491823
- 1:66.15911157758379
3427: [-50.16184121540804, 66.1590982065598]
- 0:-50.16184121540804
- 1:66.1590982065598
3428: [-50.16131972026654, 66.159084803004]
- 0:-50.16131972026654
- 1:66.159084803004
3429: [-50.1608291739056, 66.15907587805509]
- 0:-50.1608291739056
- 1:66.15907587805509
3430: [-50.160606064000035, 66.15906696387536]
- 0:-50.160606064000035
- 1:66.15906696387536
3431: [-50.16036088020581, 66.15905355285008]
- 0:-50.16036088020581
- 1:66.15905355285008
3432: [-50.160102327579324, 66.1590312821956]
- 0:-50.160102327579324
- 1:66.1590312821956
3433: [-50.15981679217422, 66.15900454183074]
- 0:-50.15981679217422
- 1:66.15900454183074
3434: [-50.1595404233735, 66.15897336021409]
- 0:-50.1595404233735
- 1:66.15897336021409
3435: [-50.159228344072716, 66.15893765924858]
- 0:-50.159228344072716
- 1:66.15893765924858
3436: [-50.15812240571162, 66.1587949386067]
- 0:-50.15812240571162
- 1:66.1587949386067
3437: [-50.158042198590636, 66.15879497349181]
- 0:-50.158042198590636
- 1:66.15879497349181
3438: [-50.158042108547335, 66.15878162061288]
- 0:-50.158042108547335
- 1:66.15878162061288
3439: [-50.15777904431871, 66.15875035366574]
- 0:-50.15777904431871
- 1:66.15875035366574
3440: [-50.15755156734655, 66.15872808235254]
- 0:-50.15755156734655
- 1:66.15872808235254
3441: [-50.15734215435643, 66.15870576687367]
- 0:-50.15734215435643
- 1:66.15870576687367
3442: [-50.157145940365524, 66.15868796339004]
- 0:-50.157145940365524
- 1:66.15868796339004
3443: [-50.15696307179071, 66.1586746070406]
- 0:-50.15696307179071
- 1:66.1586746070406
3444: [-50.15678907786529, 66.15866123511667]
- 0:-50.15678907786529
- 1:66.15866123511667
3445: [-50.15662861992583, 66.15865677431754]
- 0:-50.15662861992583
- 1:66.15865677431754
3446: [-50.15647703652263, 66.15865229802624]
- 0:-50.15647703652263
- 1:66.15865229802624
3447: [-50.15633420367585, 66.15865228322416]
- 0:-50.15633420367585
- 1:66.15865228322416
3448: [-50.156200435957295, 66.15865671688309]
- 0:-50.156200435957295
- 1:66.15865671688309
3449: [-50.156071306835976, 66.15866566505301]
- 0:-50.156071306835976
- 1:66.15866566505301
3450: [-50.15595535457852, 66.15867900877234]
- 0:-50.15595535457852
- 1:66.15867900877234
3451: [-50.155843850249546, 66.15869240315519]
- 0:-50.155843850249546
- 1:66.15869240315519
3452: [-50.15574124279649, 66.15871019423328]
- 0:-50.15574124279649
- 1:66.15871019423328
3453: [-50.15564759777989, 66.15873702762595]
- 0:-50.15564759777989
- 1:66.15873702762595
3454: [-50.15555837906806, 66.15876379494777]
- 0:-50.15555837906806
- 1:66.15876379494777
3455: [-50.15549162804844, 66.15878604068975]
- 0:-50.15549162804844
- 1:66.15878604068975
3456: [-50.155424606257334, 66.15881282826754]
- 0:-50.155424606257334
- 1:66.15881282826754
3457: [-50.155362201342896, 66.158844013711]
- 0:-50.155362201342896
- 1:66.158844013711
3458: [-50.1552998402434, 66.1588797279418]
- 0:-50.1552998402434
- 1:66.1588797279418
3459: [-50.15524178134661, 66.1589198531062]
- 0:-50.15524178134661
- 1:66.1589198531062
3460: [-50.15518384644605, 66.1589555012967]
- 0:-50.15518384644605
- 1:66.1589555012967
3461: [-50.15512597768463, 66.15900009031549]
- 0:-50.15512597768463
- 1:66.15900009031549
3462: [-50.15507238874635, 66.15904467824858]
- 0:-50.15507238874635
- 1:66.15904467824858
3463: [-50.15537108944685, 66.15904917126409]
- 0:-50.15537108944685
- 1:66.15904917126409
3464: [-50.15535341256669, 66.15958422698665]
- 0:-50.15535341256669
- 1:66.15958422698665
3465: [-50.1546888644625, 66.159584262372]
- 0:-50.1546888644625
- 1:66.159584262372
3466: [-50.154671174516494, 66.16011931905813]
- 0:-50.154671174516494
- 1:66.16011931905813
3467: [-50.15533546473384, 66.16012382572885]
- 0:-50.15533546473384
- 1:66.16012382572885
3468: [-50.155317663159636, 66.1606633606963]
- 0:-50.155317663159636
- 1:66.1606633606963
3469: [-50.1543989150895, 66.16065887709384]
- 0:-50.1543989150895
- 1:66.16065887709384
3470: [-50.15440799917999, 66.16077929840047]
- 0:-50.15440799917999
- 1:66.16077929840047
3471: [-50.154416956967864, 66.16083723708167]
- 0:-50.154416956967864
- 1:66.16083723708167
3472: [-50.154434767794044, 66.16089074857145]
- 0:-50.154434767794044
- 1:66.16089074857145
3473: [-50.1544435712173, 66.16092639337224]
- 0:-50.1544435712173
- 1:66.16092639337224
3474: [-50.154644284229576, 66.16092642217177]
- 0:-50.154644284229576
- 1:66.16092642217177
3475: [-50.15463539875393, 66.16119845471027]
- 0:-50.15463539875393
- 1:66.16119845471027
3476: [-50.155299861307526, 66.16120289680883]
- 0:-50.155299861307526
- 1:66.16120289680883
3477: [-50.155290938288324, 66.16147040086352]
- 0:-50.155290938288324
- 1:66.16147040086352
3478: [-50.1559552603201, 66.16147490444158]
- 0:-50.1559552603201
- 1:66.16147490444158
3479: [-50.15594634362456, 66.16174240886423]
- 0:-50.15594634362456
- 1:66.16174240886423
3480: [-50.15727514591109, 66.16175134069125]
- 0:-50.15727514591109
- 1:66.16175134069125
3481: [-50.157257359473064, 66.16228646751179]
- 0:-50.157257359473064
- 1:66.16228646751179
3482: [-50.158091177781394, 66.16229092767566]
- 0:-50.158091177781394
- 1:66.16229092767566
3483: [-50.15811800618079, 66.16222850214146]
- 0:-50.15811800618079
- 1:66.16222850214146
3484: [-50.15814019487135, 66.1621615619715]
- 0:-50.15814019487135
- 1:66.1621615619715
3485: [-50.15815365313447, 66.16209027698679]
- 0:-50.15815365313447
- 1:66.16209027698679
3486: [-50.158158214176204, 66.16201889063653]
- 0:-50.158158214176204
- 1:66.16201889063653
3487: [-50.158158056410656, 66.16195199554882]
- 0:-50.158158056410656
- 1:66.16195199554882
3488: [-50.15814474269369, 66.1618851170481]
- 0:-50.15814474269369
- 1:66.1618851170481
3489: [-50.15812685681263, 66.16182266487962]
- 0:-50.15812685681263
- 1:66.16182266487962
3490: [-50.15810016281429, 66.16176916907418]
- 0:-50.15810016281429
- 1:66.16176916907418
3491: [-50.158077906730504, 66.16173796609378]
- 0:-50.158077906730504
- 1:66.16173796609378
3492: [-50.158051078468276, 66.1617111894245]
- 0:-50.158051078468276
- 1:66.1617111894245
3493: [-50.158015374791, 66.16168442814397]
- 0:-50.158015374791
- 1:66.16168442814397
3494: [-50.15797077289436, 66.16165327016293]
- 0:-50.15797077289436
- 1:66.16165327016293
3495: [-50.15786829106975, 66.16159974300737]
- 0:-50.15786829106975
- 1:66.16159974300737
3496: [-50.157605111576224, 66.16146592019713]
- 0:-50.157605111576224
- 1:66.16146592019713
3497: [-50.15754271534492, 66.16143026395602]
- 0:-50.15754271534492
- 1:66.16143026395602
3498: [-50.15749366588484, 66.16139905512789]
- 0:-50.15749366588484
- 1:66.16139905512789
3499: [-50.157453469161126, 66.16136341885705]
- 0:-50.157453469161126
- 1:66.16136341885705
3500: [-50.15742233876412, 66.16133223116726]
- 0:-50.15742233876412
- 1:66.16133223116726
3501: [-50.15740891482012, 66.1612964839179]
- 0:-50.15740891482012
- 1:66.1612964839179
3502: [-50.15741345403585, 66.16126528669652]
- 0:-50.15741345403585
- 1:66.16126528669652
3503: [-50.15743556429093, 66.16120735276597]
- 0:-50.15743556429093
- 1:66.16120735276597
3504: [-50.157480334709035, 66.16114936086974]
- 0:-50.157480334709035
- 1:66.16114936086974
3505: [-50.15753385644297, 66.16109583060673]
- 0:-50.15753385644297
- 1:66.16109583060673
3506: [-50.15756494188468, 66.16107359317692]
- 0:-50.15756494188468
- 1:66.16107359317692
3507: [-50.15759617381454, 66.16105129081821]
- 0:-50.15759617381454
- 1:66.16105129081821
3508: [-50.15763187688785, 66.16103345123395]
- 0:-50.15763187688785
- 1:66.16103345123395
3509: [-50.15767217487345, 66.1610155974259]
- 0:-50.15767217487345
- 1:66.1610155974259
3510: [-50.15772107776591, 66.16100227015107]
- 0:-50.15772107776591
- 1:66.16100227015107
3511: [-50.15777900239419, 66.16098886255931]
- 0:-50.15777900239419
- 1:66.16098886255931
3512: [-50.15784139817998, 66.16097991771339]
- 0:-50.15784139817998
- 1:66.16097991771339
3513: [-50.157908242333775, 66.16097102353638]
- 0:-50.157908242333775
- 1:66.16097102353638
3514: [-50.1579841526248, 66.16096657786481]
- 0:-50.1579841526248
- 1:66.16096657786481
3515: [-50.15806448970871, 66.16096206605714]
- 0:-50.15806448970871
- 1:66.16096206605714
3516: [-50.158225061687574, 66.16095763606458]
- 0:-50.158225061687574
- 1:66.16095763606458
3517: [-50.15841232664301, 66.16096210053135]
- 0:-50.15841232664301
- 1:66.16096210053135
3518: [-50.15859499666705, 66.16096657896689]
- 0:-50.15859499666705
- 1:66.16096657896689
3519: [-50.15900969007345, 66.1609843713316]
- 0:-50.15900969007345
- 1:66.1609843713316
3520: [-50.159183631498976, 66.16098879944728]
- 0:-50.159183631498976
- 1:66.16098879944728
3521: [-50.15945572643, 66.1609933292825]
- 0:-50.15945572643
- 1:66.1609933292825
3522: [-50.15969660223222, 66.16100221464147]
- 0:-50.15969660223222
- 1:66.16100221464147
3523: [-50.15991953639506, 66.16100666666335]
- 0:-50.15991953639506
- 1:66.16100666666335
3524: [-50.160128900195836, 66.1610200372064]
- 0:-50.160128900195836
- 1:66.1610200372064
3525: [-50.1603252319573, 66.16102894720294]
- 0:-50.1603252319573
- 1:66.16102894720294
3526: [-50.16050797031502, 66.16104236378007]
- 0:-50.16050797031502
- 1:66.16104236378007
3527: [-50.160686451772484, 66.16106019342153]
- 0:-50.160686451772484
- 1:66.16106019342153
3528: [-50.16084699153119, 66.16107359006726]
- 0:-50.16084699153119
- 1:66.16107359006726
3529: [-50.161002983072095, 66.16109582499365]
- 0:-50.161002983072095
- 1:66.16109582499365
3530: [-50.16115012118259, 66.16111819212757]
- 0:-50.16115012118259
- 1:66.16111819212757
3531: [-50.1612839142222, 66.16114040735232]
- 0:-50.1612839142222
- 1:66.16114040735232
3532: [-50.161413325594765, 66.16116721750524]
- 0:-50.161413325594765
- 1:66.16116721750524
3533: [-50.161529245364235, 66.16119394074268]
- 0:-50.161529245364235
- 1:66.16119394074268
3534: [-50.161631695098315, 66.16122069388587]
- 0:-50.161631695098315
- 1:66.16122069388587
3535: [-50.16172546128661, 66.16125192653783]
- 0:-50.16172546128661
- 1:66.16125192653783
3536: [-50.161810061157524, 66.16128759993572]
- 0:-50.161810061157524
- 1:66.16128759993572
3537: [-50.161867966835, 66.16131437933944]
- 0:-50.161867966835
- 1:66.16131437933944
3538: [-50.161921424164525, 66.1613411081623]
- 0:-50.161921424164525
- 1:66.1613411081623
3539: [-50.1620285992691, 66.1614079706298]
- 0:-50.1620285992691
- 1:66.1614079706298
3540: [-50.16213110192256, 66.16148385327958]
- 0:-50.16213110192256
- 1:66.16148385327958
3541: [-50.162224731652216, 66.16156404686049]
- 0:-50.162224731652216
- 1:66.16156404686049
3542: [-50.16231400365971, 66.1616532475932]
- 0:-50.16231400365971
- 1:66.1616532475932
3543: [-50.162389706290504, 66.16175136748777]
- 0:-50.162389706290504
- 1:66.16175136748777
3544: [-50.162452208451285, 66.16184497552752]
- 0:-50.162452208451285
- 1:66.16184497552752
3545: [-50.1624967683703, 66.16193415104645]
- 0:-50.1624967683703
- 1:66.16193415104645
3546: [-50.16250565111395, 66.16197873644923]
- 0:-50.16250565111395
- 1:66.16197873644923
3547: [-50.16251010693199, 66.16202338810629]
- 0:-50.16251010693199
- 1:66.16202338810629
3548: [-50.162501238663516, 66.16206800494287]
- 0:-50.162501238663516
- 1:66.16206800494287
3549: [-50.16248347321523, 66.16211252071001]
- 0:-50.16248347321523
- 1:66.16211252071001
3550: [-50.16245209050173, 66.16215713150619]
- 0:-50.16245209050173
- 1:66.16215713150619
3551: [-50.16241642723538, 66.16220174361644]
- 0:-50.16241642723538
- 1:66.16220174361644
3552: [-50.16236756266734, 66.16224184385689]
- 0:-50.16236756266734
- 1:66.16224184385689
3553: [-50.16230510420278, 66.16228645118731]
- 0:-50.16230510420278
- 1:66.16228645118731
3554: [-50.162238196922615, 66.16233100794605]
- 0:-50.162238196922615
- 1:66.16233100794605
3555: [-50.16215779513739, 66.16237118264142]
- 0:-50.16215779513739
- 1:66.16237118264142
3556: [-50.162068687482865, 66.16241572013736]
- 0:-50.162068687482865
- 1:66.16241572013736
3557: [-50.16196608523286, 66.16245587551965]
- 0:-50.16196608523286
- 1:66.16245587551965
3558: [-50.1618546304471, 66.16250045858422]
- 0:-50.1618546304471
- 1:66.16250045858422
3559: [-50.161734276163656, 66.16254064510939]
- 0:-50.161734276163656
- 1:66.16254064510939
3560: [-50.1616049010798, 66.16258520741177]
- 0:-50.1616049010798
- 1:66.16258520741177
3561: [-50.16146217778358, 66.16262532254434]
- 0:-50.16146217778358
- 1:66.16262532254434
3562: [-50.16131517351978, 66.16266543879482]
- 0:-50.16131517351978
- 1:66.16266543879482
3563: [-50.16115012596164, 66.16271001127413]
- 0:-50.16115012596164
- 1:66.16271001127413
3564: [-50.160980773980945, 66.16275017270273]
- 0:-50.160980773980945
- 1:66.16275017270273
3565: [-50.16079790557464, 66.16278583493293]
- 0:-50.16079790557464
- 1:66.16278583493293
3566: [-50.16060603757441, 66.16282598950255]
- 0:-50.16060603757441
- 1:66.16282598950255
3567: [-50.160405439700526, 66.16286609441372]
- 0:-50.160405439700526
- 1:66.16286609441372
3568: [-50.16019581882646, 66.16290627947697]
- 0:-50.16019581882646
- 1:66.16290627947697
3569: [-50.15997287272536, 66.16294642909216]
- 0:-50.15997287272536
- 1:66.16294642909216
3570: [-50.15974560061294, 66.16298205064426]
- 0:-50.15974560061294
- 1:66.16298205064426
3571: [-50.159504733238556, 66.16302217859328]
- 0:-50.159504733238556
- 1:66.16302217859328
3572: [-50.159000896160265, 66.16309352422357]
- 0:-50.159000896160265
- 1:66.16309352422357
3573: [-50.15846138429946, 66.16316487765633]
- 0:-50.15846138429946
- 1:66.16316487765633
3574: [-50.15789060166537, 66.16323176023674]
- 0:-50.15789060166537
- 1:66.16323176023674
3575: [-50.1578860289696, 66.16336999049489]
- 0:-50.1578860289696
- 1:66.16336999049489
3576: [-50.15722166306989, 66.16336549689017]
- 0:-50.15722166306989
- 1:66.16336549689017
3577: [-50.15721278026029, 66.16363312025058]
- 0:-50.15721278026029
- 1:66.16363312025058
3578: [-50.15654840759345, 66.16362862303275]
- 0:-50.15654840759345
- 1:66.16362862303275
3579: [-50.156530483448606, 66.16416823068631]
- 0:-50.156530483448606
- 1:66.16416823068631
3580: [-50.155866097512664, 66.16416372976744]
- 0:-50.155866097512664
- 1:66.16416372976744
3581: [-50.15587501483779, 66.16389622279827]
- 0:-50.15587501483779
- 1:66.16389622279827
3582: [-50.15579922008182, 66.16389619015563]
- 0:-50.15579922008182
- 1:66.16389619015563
3583: [-50.15573680097293, 66.16397197775837]
- 0:-50.15573680097293
- 1:66.16397197775837
3584: [-50.15565212256842, 66.16406116308241]
- 0:-50.15565212256842
- 1:66.16406116308241
3585: [-50.15556297222712, 66.1641458854674]
- 0:-50.15556297222712
- 1:66.1641458854674
3586: [-50.155326498411135, 66.16436434530429]
- 0:-50.155326498411135
- 1:66.16436434530429
3587: [-50.155206174879496, 66.1644803106316]
- 0:-50.155206174879496
- 1:66.1644803106316
3588: [-50.15515713605024, 66.1645427156177]
- 0:-50.15515713605024
- 1:66.1645427156177
3589: [-50.155108052212, 66.16459629633613]
- 0:-50.155108052212
- 1:66.16459629633613
3590: [-50.15507241863359, 66.16464973096632]
- 0:-50.15507241863359
- 1:66.16464973096632
3591: [-50.15504566057759, 66.16469885507536]
- 0:-50.15504566057759
- 1:66.16469885507536
3592: [-50.15518376097966, 66.16469883377113]
- 0:-50.15518376097966
- 1:66.16469883377113
3593: [-50.155175005191055, 66.16496639336805]
- 0:-50.155175005191055
- 1:66.16496639336805
3594: [-50.15503673531685, 66.16496636278953]
- 0:-50.15503673531685
- 1:66.16496636278953
3595: [-50.15503661113866, 66.16497083984794]
- 0:-50.15503661113866
- 1:66.16497083984794
3596: [-50.155090153879264, 66.1650555267704]
- 0:-50.155090153879264
- 1:66.1650555267704
3597: [-50.155148270203235, 66.1651357874409]
- 0:-50.155148270203235
- 1:66.1651357874409
3598: [-50.155210601414765, 66.16520710597541]
- 0:-50.155210601414765
- 1:66.16520710597541
3599: [-50.155273078666184, 66.1652740642232]
- 0:-50.155273078666184
- 1:66.1652740642232
3600: [-50.15534451299581, 66.16533200126729]
- 0:-50.15534451299581
- 1:66.16533200126729
3601: [-50.155420082038766, 66.1653900021343]
- 0:-50.155420082038766
- 1:66.1653900021343
3602: [-50.15549589960061, 66.16543904883535]
- 0:-50.15549589960061
- 1:66.16543904883535
3603: [-50.15558071822509, 66.16548360322108]
- 0:-50.15558071822509
- 1:66.16548360322108
3604: [-50.15565216626466, 66.165519297696]
- 0:-50.15565216626466
- 1:66.165519297696
3605: [-50.15573689628407, 66.16555049876054]
- 0:-50.15573689628407
- 1:66.16555049876054
3606: [-50.1558303566558, 66.16558174946505]
- 0:-50.1558303566558
- 1:66.16558174946505
3607: [-50.15593300868705, 66.1656129718112]
- 0:-50.15593300868705
- 1:66.1656129718112
3608: [-50.15604008852198, 66.16564412806268]
- 0:-50.15604008852198
- 1:66.16564412806268
3609: [-50.156164819695746, 66.16567984758235]
- 0:-50.156164819695746
- 1:66.16567984758235
3610: [-50.15655728697331, 66.16577347872617]
- 0:-50.15655728697331
- 1:66.16577347872617
3611: [-50.156650828606686, 66.16579572283824]
- 0:-50.156650828606686
- 1:66.16579572283824
3612: [-50.15674898772251, 66.16581806949328]
- 0:-50.15674898772251
- 1:66.16581806949328
3613: [-50.156851551913505, 66.16583593787595]
- 0:-50.156851551913505
- 1:66.16583593787595
3614: [-50.15695409463643, 66.16585368938968]
- 0:-50.15695409463643
- 1:66.16585368938968
3615: [-50.15706106396285, 66.16586707940183]
- 0:-50.15706106396285
- 1:66.16586707940183
3616: [-50.15717250531077, 66.16588493221018]
- 0:-50.15717250531077
- 1:66.16588493221018
3617: [-50.15728404785031, 66.16589389568685]
- 0:-50.15728404785031
- 1:66.16589389568685
3618: [-50.157400040829465, 66.16590720515687]
- 0:-50.157400040829465
- 1:66.16590720515687
3619: [-50.15764083547493, 66.1659205719526]
- 0:-50.15764083547493
- 1:66.1659205719526
3620: [-50.15789940551301, 66.1659340243232]
- 0:-50.15789940551301
- 1:66.1659340243232
3621: [-50.15817580854981, 66.16593843934703]
- 0:-50.15817580854981
- 1:66.16593843934703
3622: [-50.15847023405166, 66.16593398555226]
- 0:-50.15847023405166
- 1:66.16593398555226
3623: [-50.15847480375999, 66.16579575385877]
- 0:-50.15847480375999
- 1:66.16579575385877
3624: [-50.15980345816955, 66.16580026093138]
- 0:-50.15980345816955
- 1:66.16580026093138
3625: [-50.15981248405381, 66.16553268682432]
- 0:-50.15981248405381
- 1:66.16553268682432
3626: [-50.161141270315106, 66.1655371146929]
- 0:-50.161141270315106
- 1:66.1655371146929
3627: [-50.16115013678193, 66.16526960562575]
- 0:-50.16115013678193
- 1:66.16526960562575
3628: [-50.163812172444146, 66.1652829981286]
- 0:-50.163812172444146
- 1:66.1652829981286
3629: [-50.163821159760566, 66.16501542407083]
- 0:-50.163821159760566
- 1:66.16501542407083
3630: [-50.165149960503605, 66.16502433815899]
- 0:-50.165149960503605
- 1:66.16502433815899
3631: [-50.16515891096429, 66.16475235206799]
- 0:-50.16515891096429
- 1:66.16475235206799
3632: [-50.170482920108284, 66.16478355501876]
- 0:-50.170482920108284
- 1:66.16478355501876
3633: [-50.17049196491708, 66.16451150358505]
- 0:-50.17049196491708
- 1:66.16451150358505
3634: [-50.172485136568106, 66.16452487973847]
- 0:-50.172485136568106
- 1:66.16452487973847
3635: [-50.17249401527592, 66.16425289327316]
- 0:-50.17249401527592
- 1:66.16425289327316
3636: [-50.17449161293267, 66.16426628753848]
- 0:-50.17449161293267
- 1:66.16426628753848
3637: [-50.17450078670145, 66.1639942879985]
- 0:-50.17450078670145
- 1:66.1639942879985
3638: [-50.1758295448995, 66.16400320516912]
- 0:-50.1758295448995
- 1:66.16400320516912
3639: [-50.17583841658936, 66.1637356309798]
- 0:-50.17583841658936
- 1:66.1637356309798
3640: [-50.17716713461295, 66.16374012173988]
- 0:-50.17716713461295
- 1:66.16374012173988
3641: [-50.17716275042394, 66.16401215825161]
- 0:-50.17716275042394
- 1:66.16401215825161
3642: [-50.17849162602963, 66.16401657007643]
- 0:-50.17849162602963
- 1:66.16401657007643
3643: [-50.17850047208877, 66.16374899554589]
- 0:-50.17850047208877
- 1:66.16374899554589
3644: [-50.17916485346339, 66.16375349301445]
- 0:-50.17916485346339
- 1:66.16375349301445
3645: [-50.179173813351184, 66.16348144160224]
- 0:-50.179173813351184
- 1:66.16348144160224
3646: [-50.17983818785002, 66.16348593545649]
- 0:-50.17983818785002
- 1:66.16348593545649
3647: [-50.17982935465345, 66.16375350987352]
- 0:-50.17982935465345
- 1:66.16375350987352
3648: [-50.181826922179795, 66.1637669036052]
- 0:-50.181826922179795
- 1:66.1637669036052
3649: [-50.18181793996763, 66.16403442673271]
- 0:-50.18181793996763
- 1:66.16403442673271
3650: [-50.183811362268635, 66.16404331379407]
- 0:-50.183811362268635
- 1:66.16404331379407
3651: [-50.18380227962922, 66.16431531455893]
- 0:-50.18380227962922
- 1:66.16431531455893
3652: [-50.18513562956416, 66.16431982247137]
- 0:-50.18513562956416
- 1:66.16431982247137
3653: [-50.185117924183444, 66.16485933497522]
- 0:-50.185117924183444
- 1:66.16485933497522
3654: [-50.185782327294596, 66.16486379747317]
- 0:-50.185782327294596
- 1:66.16486379747317
3655: [-50.18577323673603, 66.165131387205]
- 0:-50.18577323673603
- 1:66.165131387205
3656: [-50.1864376458707, 66.16513584626374]
- 0:-50.1864376458707
- 1:66.16513584626374
3657: [-50.18642870812544, 66.16540337140646]
- 0:-50.18642870812544
- 1:66.16540337140646
3658: [-50.18443565565321, 66.16539444738034]
- 0:-50.18443565565321
- 1:66.16539444738034
3659: [-50.184426698650476, 66.16566197254836]
- 0:-50.184426698650476
- 1:66.16566197254836
3660: [-50.18309345143934, 66.16565750853735]
- 0:-50.18309345143934
- 1:66.16565750853735
3661: [-50.18307984103798, 66.16619708631988]
- 0:-50.18307984103798
- 1:66.16619708631988
3662: [-50.185737535982106, 66.1662104302571]
- 0:-50.185737535982106
- 1:66.1662104302571
3663: [-50.18572875976386, 66.16647800827236]
- 0:-50.18572875976386
- 1:66.16647800827236
3664: [-50.18772633602605, 66.16648696180754]
- 0:-50.18772633602605
- 1:66.16648696180754
3665: [-50.18771743835036, 66.16675890072524]
- 0:-50.18771743835036
- 1:66.16675890072524
3666: [-50.18838185726608, 66.16675893751031]
- 0:-50.18838185726608
- 1:66.16675893751031
3667: [-50.18836390053301, 66.16729846914266]
- 0:-50.18836390053301
- 1:66.16729846914266
3668: [-50.187035177046965, 66.1672940313383]
- 0:-50.187035177046965
- 1:66.1672940313383
3669: [-50.18704422785766, 66.1670220269724]
- 0:-50.18704422785766
- 1:66.1670220269724
3670: [-50.18238883783681, 66.16699970325193]
- 0:-50.18238883783681
- 1:66.16699970325193
3671: [-50.182379861223794, 66.16726722986007]
- 0:-50.182379861223794
- 1:66.16726722986007
3672: [-50.18171097061021, 66.16726281586726]
- 0:-50.18171097061021
- 1:66.16726281586726
3673: [-50.18168866531667, 66.16806991101798]
- 0:-50.18168866531667
- 1:66.16806991101798
3674: [-50.182353147601376, 66.16807439219487]
- 0:-50.182353147601376
- 1:66.16807439219487
3675: [-50.182344170707914, 66.16834191993202]
- 0:-50.182344170707914
- 1:66.16834191993202
3676: [-50.18300865901734, 66.16834639766866]
- 0:-50.18300865901734
- 1:66.16834639766866
3677: [-50.18299971529783, 66.16861833799352]
- 0:-50.18299971529783
- 1:66.16861833799352
3678: [-50.18366418278534, 66.16861840007013]
- 0:-50.18366418278534
- 1:66.16861840007013
3679: [-50.18362388624593, 66.16996503631239]
- 0:-50.18362388624593
- 1:66.16996503631239
3680: [-50.184952769978466, 66.16997392331969]
- 0:-50.184952769978466
- 1:66.16997392331969
3681: [-50.184943818228156, 66.17024145338132]
- 0:-50.184943818228156
- 1:66.17024145338132
3682: [-50.18427945426274, 66.17023703746818]
- 0:-50.18427945426274
- 1:66.17023703746818
3683: [-50.18424386503074, 66.17131615332488]
- 0:-50.18424386503074
- 1:66.17131615332488
3684: [-50.18557706687669, 66.17132061977881]
- 0:-50.18557706687669
- 1:66.17132061977881
3685: [-50.185568148494156, 66.17159256361022]
- 0:-50.185568148494156
- 1:66.17159256361022
3686: [-50.18689693317464, 66.17159708313896]
- 0:-50.18689693317464
- 1:66.17159708313896
3687: [-50.18688802772983, 66.17186902743047]
- 0:-50.18688802772983
- 1:66.17186902743047
3688: [-50.18755240119804, 66.1718690174579]
- 0:-50.18755240119804
- 1:66.1718690174579
3689: [-50.18753459723545, 66.17240861157295]
- 0:-50.18753459723545
- 1:66.17240861157295
3690: [-50.18820346083729, 66.17241306016219]
- 0:-50.18820346083729
- 1:66.17241306016219
3691: [-50.188194540537026, 66.17268059319598]
- 0:-50.188194540537026
- 1:66.17268059319598
3692: [-50.18753026718096, 66.17267612921788]
- 0:-50.18753026718096
- 1:66.17267612921788
3693: [-50.18751679299735, 66.17294820683031]
- 0:-50.18751679299735
- 1:66.17294820683031
3694: [-50.186852344514506, 66.17294368739083]
- 0:-50.186852344514506
- 1:66.17294368739083
3695: [-50.18684341123532, 66.17321122081682]
- 0:-50.18684341123532
- 1:66.17321122081682
3696: [-50.18617912422607, 66.17320674959059]
- 0:-50.18617912422607
- 1:66.17320674959059
3697: [-50.18617006533379, 66.17347876047648]
- 0:-50.18617006533379
- 1:66.17347876047648
3698: [-50.185505624914306, 66.1734743505964]
- 0:-50.185505624914306
- 1:66.1734743505964
3699: [-50.18548792793986, 66.17401388265704]
- 0:-50.18548792793986
- 1:66.17401388265704
3700: [-50.18415916669996, 66.17400498701468]
- 0:-50.18415916669996
- 1:66.17400498701468
3701: [-50.1841502346185, 66.17427693354472]
- 0:-50.1841502346185
- 1:66.17427693354472
3702: [-50.182152400181046, 66.17426361095865]
- 0:-50.182152400181046
- 1:66.17426361095865
3703: [-50.18213463818657, 66.17480314386833]
- 0:-50.18213463818657
- 1:66.17480314386833
3704: [-50.18346803756519, 66.1748120460841]
- 0:-50.18346803756519
- 1:66.1748120460841
3705: [-50.18344118874828, 66.17561918098171]
- 0:-50.18344118874828
- 1:66.17561918098171
3706: [-50.18410548658987, 66.17561913796243]
- 0:-50.18410548658987
- 1:66.17561913796243
3707: [-50.184096722348094, 66.1758911380435]
- 0:-50.184096722348094
- 1:66.1758911380435
3708: [-50.18542982895961, 66.17589562046412]
- 0:-50.18542982895961
- 1:66.17589562046412
3709: [-50.18542107770547, 66.17616762100404]
- 0:-50.18542107770547
- 1:66.17616762100404
3710: [-50.186749912971344, 66.17617209153335]
- 0:-50.186749912971344
- 1:66.17617209153335
3711: [-50.18675884697112, 66.17590455500057]
- 0:-50.18675884697112
- 1:66.17590455500057
3712: [-50.189420964726345, 66.17591791535462]
- 0:-50.189420964726345
- 1:66.17591791535462
3713: [-50.18941190983104, 66.17618551719404]
- 0:-50.18941190983104
- 1:66.17618551719404
3714: [-50.19140957345555, 66.17619885470538]
- 0:-50.19140957345555
- 1:66.17619885470538
3715: [-50.19141858086989, 66.17592684025084]
- 0:-50.19141858086989
- 1:66.17592684025084
3716: [-50.19408070821508, 66.17594021831388]
- 0:-50.19408070821508
- 1:66.17594021831388
3717: [-50.19407172687077, 66.17621223311536]
- 0:-50.19407172687077
- 1:66.17621223311536
3718: [-50.19540040381295, 66.17621667680064]
- 0:-50.19540040381295
- 1:66.17621667680064
3719: [-50.19541841990021, 66.17568158863337]
- 0:-50.19541841990021
- 1:66.17568158863337
3720: [-50.19675151992553, 66.17568606721308]
- 0:-50.19675151992553
- 1:66.17568606721308
3721: [-50.196756075338094, 66.17541853243853]
- 0:-50.196756075338094
- 1:66.17541853243853
3722: [-50.19808930710032, 66.17542293172598]
- 0:-50.19808930710032
- 1:66.17542293172598
3723: [-50.19809813193559, 66.1751553945856]
- 0:-50.19809813193559
- 1:66.1751553945856
3724: [-50.20009586301163, 66.17516434928837]
- 0:-50.20009586301163
- 1:66.17516434928837
3725: [-50.20010481504127, 66.17489674719774]
- 0:-50.20010481504127
- 1:66.17489674719774
3726: [-50.200769154094175, 66.1749012615587]
- 0:-50.200769154094175
- 1:66.1749012615587
3727: [-50.20078718370946, 66.17436169752176]
- 0:-50.20078718370946
- 1:66.17436169752176
3728: [-50.201451341208355, 66.17436615637638]
- 0:-50.201451341208355
- 1:66.17436615637638
3729: [-50.201460418689656, 66.17409419443806]
- 0:-50.201460418689656
- 1:66.17409419443806
3730: [-50.20278918081491, 66.17410302324781]
- 0:-50.20278918081491
- 1:66.17410302324781
3731: [-50.202798128749464, 66.17383553872554]
- 0:-50.202798128749464
- 1:66.17383553872554
3732: [-50.2034625869851, 66.17383997365725]
- 0:-50.2034625869851
- 1:66.17383997365725
3733: [-50.20347147653483, 66.17356796022626]
- 0:-50.20347147653483
- 1:66.17356796022626
3734: [-50.20413578140095, 66.17357245652532]
- 0:-50.20413578140095
- 1:66.17357245652532
3735: [-50.20414486288606, 66.17330490741438]
- 0:-50.20414486288606
- 1:66.17330490741438
3736: [-50.20481370552231, 66.17330485506702]
- 0:-50.20481370552231
- 1:66.17330485506702
3737: [-50.20481818386228, 66.17303732208974]
- 0:-50.20481818386228
- 1:66.17303732208974
3738: [-50.20615147846226, 66.17304180343393]
- 0:-50.20615147846226
- 1:66.17304180343393
3739: [-50.206160225813726, 66.17277426781382]
- 0:-50.206160225813726
- 1:66.17277426781382
3740: [-50.20682465624169, 66.17277868474368]
- 0:-50.20682465624169
- 1:66.17277868474368
3741: [-50.20683356540227, 66.17251120111712]
- 0:-50.20683356540227
- 1:66.17251120111712
3742: [-50.20749810476516, 66.17251113714663]
- 0:-50.20749810476516
- 1:66.17251113714663
3743: [-50.20751588827995, 66.17197605378942]
- 0:-50.20751588827995
- 1:66.17197605378942
3744: [-50.208180267783234, 66.17197605111186]
- 0:-50.208180267783234
- 1:66.17197605111186
3745: [-50.20819803822765, 66.17144096871392]
- 0:-50.20819803822765
- 1:66.17144096871392
3746: [-50.20886240434479, 66.17144096234568]
- 0:-50.20886240434479
- 1:66.17144096234568
3747: [-50.20887144043149, 66.17117341489087]
- 0:-50.20887144043149
- 1:66.17117341489087
3748: [-50.20953585244399, 66.17117793397557]
- 0:-50.20953585244399
- 1:66.17117793397557
3749: [-50.20954482917756, 66.17090585765646]
- 0:-50.20954482917756
- 1:66.17090585765646
3750: [-50.21020923430884, 66.17091037312728]
- 0:-50.21020923430884
- 1:66.17091037312728
3751: [-50.210218089188594, 66.17064277427025]
- 0:-50.210218089188594
- 1:66.17064277427025
3752: [-50.21088691547215, 66.17064721817461]
- 0:-50.21088691547215
- 1:66.17064721817461
3753: [-50.21089130467569, 66.170375275198]
- 0:-50.21089130467569
- 1:66.170375275198
3754: [-50.21222466157716, 66.17038415517176]
- 0:-50.21222466157716
- 1:66.17038415517176
3755: [-50.21223363385421, 66.17011219614805]
- 0:-50.21223363385421
- 1:66.17011219614805
3756: [-50.212897996247314, 66.17011658044919]
- 0:-50.212897996247314
- 1:66.17011658044919
3757: [-50.212915959183675, 66.16957707535244]
- 0:-50.212915959183675
- 1:66.16957707535244
3758: [-50.214244532413396, 66.16958601479992]
- 0:-50.214244532413396
- 1:66.16958601479992
3759: [-50.21425351678079, 66.16931846863069]
- 0:-50.21425351678079
- 1:66.16931846863069
3760: [-50.21957781406025, 66.16934518760468]
- 0:-50.21957781406025
- 1:66.16934518760468
3761: [-50.21956888096642, 66.16961273446248]
- 0:-50.21956888096642
- 1:66.16961273446248
3762: [-50.22489293078245, 66.1696394744472]
- 0:-50.22489293078245
- 1:66.1696394744472
3763: [-50.224884048891624, 66.16990702227261]
- 0:-50.224884048891624
- 1:66.16990702227261
3764: [-50.22687717990286, 66.16992043018737]
- 0:-50.22687717990286
- 1:66.16992043018737
3765: [-50.226868317138916, 66.17018797855384]
- 0:-50.226868317138916
- 1:66.17018797855384
3766: [-50.2288660258054, 66.17019692589922]
- 0:-50.2288660258054
- 1:66.17019692589922
3767: [-50.22884805797838, 66.17073644951194]
- 0:-50.22884805797838
- 1:66.17073644951194
3768: [-50.22818381700381, 66.17073196799042]
- 0:-50.22818381700381
- 1:66.17073196799042
3769: [-50.22817485449349, 66.17100399467128]
- 0:-50.22817485449349
- 1:66.17100399467128
3770: [-50.22751046022387, 66.17099957454558]
- 0:-50.22751046022387
- 1:66.17099957454558
3771: [-50.2275014353302, 66.17126707235671]
- 0:-50.2275014353302
- 1:66.17126707235671
3772: [-50.22550841107021, 66.17125813784872]
- 0:-50.22550841107021
- 1:66.17125813784872
3773: [-50.22549953521255, 66.17152568745604]
- 0:-50.22549953521255
- 1:66.17152568745604
3774: [-50.22682820503838, 66.17153461069147]
- 0:-50.22682820503838
- 1:66.17153461069147
3775: [-50.22681934190951, 66.17180216075297]
- 0:-50.22681934190951
- 1:66.17180216075297
3776: [-50.23014584525645, 66.171819997675]
- 0:-50.23014584525645
- 1:66.171819997675
3777: [-50.230132464496954, 66.17235509587523]
- 0:-50.230132464496954
- 1:66.17235509587523
3778: [-50.23079674282077, 66.17235956729654]
- 0:-50.23079674282077
- 1:66.17235956729654
3779: [-50.23078795242253, 66.17263153103545]
- 0:-50.23078795242253
- 1:66.17263153103545
3780: [-50.23145234872269, 66.17263152168678]
- 0:-50.23145234872269
- 1:66.17263152168678
3781: [-50.231447868367034, 66.17290359890944]
- 0:-50.231447868367034
- 1:66.17290359890944
3782: [-50.22945022994326, 66.17289014926862]
- 0:-50.22945022994326
- 1:66.17289014926862
3783: [-50.229441279983405, 66.17316217841974]
- 0:-50.229441279983405
- 1:66.17316217841974
3784: [-50.22478147089977, 66.17313987128202]
- 0:-50.22478147089977
- 1:66.17313987128202
3785: [-50.22477703828955, 66.17340747111821]
- 0:-50.22477703828955
- 1:66.17340747111821
3786: [-50.22344371270671, 66.17340295450424]
- 0:-50.22344371270671
- 1:66.17340295450424
3787: [-50.22345257494671, 66.17313099084953]
- 0:-50.22345257494671
- 1:66.17313099084953
3788: [-50.222788272836915, 66.17312648034135]
- 0:-50.222788272836915
- 1:66.17312648034135
3789: [-50.222797174702414, 66.17285892938246]
- 0:-50.222797174702414
- 1:66.17285892938246
3790: [-50.22212830399543, 66.17285454878926]
- 0:-50.22212830399543
- 1:66.17285454878926
3791: [-50.22212387886271, 66.17312656041362]
- 0:-50.22212387886271
- 1:66.17312656041362
3792: [-50.22145497935856, 66.1731220594026]
- 0:-50.22145497935856
- 1:66.1731220594026
3793: [-50.22144606458275, 66.17338961047268]
- 0:-50.22144606458275
- 1:66.17338961047268
3794: [-50.22211497052967, 66.17339411157117]
- 0:-50.22211497052967
- 1:66.17339411157117
3795: [-50.222106062127985, 66.17366166300943]
- 0:-50.222106062127985
- 1:66.17366166300943
3796: [-50.222770355652386, 66.17366606043659]
- 0:-50.222770355652386
- 1:66.17366606043659
3797: [-50.22276165508051, 66.17393807635717]
- 0:-50.22276165508051
- 1:66.17393807635717
3798: [-50.22342592143182, 66.17393805800866]
- 0:-50.22342592143182
- 1:66.17393805800866
3799: [-50.22340371765083, 66.17474517610832]
- 0:-50.22340371765083
- 1:66.17474517610832
3800: [-50.22273926368892, 66.17474514245583]
- 0:-50.22273926368892
- 1:66.17474514245583
3801: [-50.22273036138722, 66.17501269539413]
- 0:-50.22273036138722
- 1:66.17501269539413
3802: [-50.22139709084371, 66.17500379595513]
- 0:-50.22139709084371
- 1:66.17500379595513
3803: [-50.221388062163626, 66.17527582636097]
- 0:-50.221388062163626
- 1:66.17527582636097
3804: [-50.21340196522253, 66.17523568239821]
- 0:-50.21340196522253
- 1:66.17523568239821
3805: [-50.21339740169124, 66.1755031666558]
- 0:-50.21339740169124
- 1:66.1755031666558
3806: [-50.21206411580122, 66.17549428445878]
- 0:-50.21206411580122
- 1:66.17549428445878
3807: [-50.21207312081096, 66.17522673233589]
- 0:-50.21207312081096
- 1:66.17522673233589
3808: [-50.211408635713866, 66.17522234290271]
- 0:-50.211408635713866
- 1:66.17522234290271
3809: [-50.21142189316839, 66.17468720405788]
- 0:-50.21142189316839
- 1:66.17468720405788
3810: [-50.21209093081812, 66.17468716479603]
- 0:-50.21209093081812
- 1:66.17468716479603
3811: [-50.21209978914832, 66.17441967851015]
- 0:-50.21209978914832
- 1:66.17441967851015
3812: [-50.21542625960017, 66.17443745457935]
- 0:-50.21542625960017
- 1:66.17443745457935
3813: [-50.21543523229018, 66.17416990315164]
- 0:-50.21543523229018
- 1:66.17416990315164
3814: [-50.21609967899531, 66.17416997550208]
- 0:-50.21609967899531
- 1:66.17416997550208
3815: [-50.216108476918194, 66.17390237248591]
- 0:-50.216108476918194
- 1:66.17390237248591
3816: [-50.21544417287966, 66.1738979396725]
- 0:-50.21544417287966
- 1:66.1738979396725
3817: [-50.21545314543027, 66.17363038881078]
- 0:-50.21545314543027
- 1:66.17363038881078
3818: [-50.21345548527875, 66.17361703394813]
- 0:-50.21345548527875
- 1:66.17361703394813
3819: [-50.21346430871065, 66.17334943183927]
- 0:-50.21346430871065
- 1:66.17334943183927
3820: [-50.21412876938002, 66.17335392686708]
- 0:-50.21412876938002
- 1:66.17335392686708
3821: [-50.214137754633015, 66.17308637674171]
- 0:-50.214137754633015
- 1:66.17308637674171
3822: [-50.21480200831356, 66.17308640405034]
- 0:-50.21480200831356
- 1:66.17308640405034
3823: [-50.21481098709878, 66.17281885412315]
- 0:-50.21481098709878
- 1:66.17281885412315
3824: [-50.216808554695945, 66.17282777468681]
- 0:-50.216808554695945
- 1:66.17282777468681
3825: [-50.21681306414833, 66.17256017616488]
- 0:-50.21681306414833
- 1:66.17256017616488
3826: [-50.21881077674469, 66.17256911645126]
- 0:-50.21881077674469
- 1:66.17256911645126
3827: [-50.2188197169533, 66.17230156657182]
- 0:-50.2188197169533
- 1:66.17230156657182
3828: [-50.220148378976326, 66.1723060318518]
- 0:-50.220148378976326
- 1:66.1723060318518
3829: [-50.22014393434203, 66.17257804271236]
- 0:-50.22014393434203
- 1:66.17257804271236
3830: [-50.22147292216351, 66.17258248079074]
- 0:-50.22147292216351
- 1:66.17258248079074
3831: [-50.22149963268835, 66.17177541866486]
- 0:-50.22149963268835
- 1:66.17177541866486
3832: [-50.22016623359304, 66.17177093259669]
- 0:-50.22016623359304
- 1:66.17177093259669
3833: [-50.220157306319194, 66.17203848208386]
- 0:-50.220157306319194
- 1:66.17203848208386
3834: [-50.219493049764544, 66.17203407103105]
- 0:-50.219493049764544
- 1:66.17203407103105
3835: [-50.219501983435954, 66.1717665216308]
- 0:-50.219501983435954
- 1:66.1717665216308
3836: [-50.21817314540614, 66.17175758555976]
- 0:-50.21817314540614
- 1:66.17175758555976
3837: [-50.218164231384286, 66.17202954708709]
- 0:-50.218164231384286
- 1:66.17202954708709
3838: [-50.2155021505358, 66.1720162294795]
- 0:-50.2155021505358
- 1:66.1720162294795
3839: [-50.21549317835806, 66.17228377864691]
- 0:-50.21549317835806
- 1:66.17228377864691
3840: [-50.21349547845954, 66.17227478553477]
- 0:-50.21349547845954
- 1:66.17227478553477
3841: [-50.21348665525622, 66.17254238651513]
- 0:-50.21348665525622
- 1:66.17254238651513
3842: [-50.21215782471415, 66.17253791544493]
- 0:-50.21215782471415
- 1:66.17253791544493
3843: [-50.21213981593294, 66.17307301432874]
- 0:-50.21213981593294
- 1:66.17307301432874
3844: [-50.21147556021014, 66.17307297289311]
- 0:-50.21147556021014
- 1:66.17307297289311
3845: [-50.21146671760227, 66.17334057446608]
- 0:-50.21146671760227
- 1:66.17334057446608
3846: [-50.20814004853911, 66.17332270716257]
- 0:-50.20814004853911
- 1:66.17332270716257
3847: [-50.20813117381656, 66.17359030858782]
- 0:-50.20813117381656
- 1:66.17359030858782
3848: [-50.20679800260616, 66.17358578319411]
- 0:-50.20679800260616
- 1:66.17358578319411
3849: [-50.20678453996102, 66.17412539605681]
- 0:-50.20678453996102
- 1:66.17412539605681
3850: [-50.208777748146794, 66.17413427957823]
- 0:-50.208777748146794
- 1:66.17413427957823
3851: [-50.20875543367407, 66.17494138017061]
- 0:-50.20875543367407
- 1:66.17494138017061
3852: [-50.20675771713842, 66.17493244697215]
- 0:-50.20675771713842
- 1:66.17493244697215
3853: [-50.20676674263241, 66.17466048376161]
- 0:-50.20676674263241
- 1:66.17466048376161
3854: [-50.2014425486157, 66.17463369309692]
- 0:-50.2014425486157
- 1:66.17463369309692
3855: [-50.20143363927296, 66.17490570741695]
- 0:-50.20143363927296
- 1:66.17490570741695
3856: [-50.202766860649646, 66.17491017352806]
- 0:-50.202766860649646
- 1:66.17491017352806
3857: [-50.202757964293994, 66.17518218830875]
- 0:-50.202757964293994
- 1:66.17518218830875
3858: [-50.20342242460646, 66.17518221130504]
- 0:-50.20342242460646
- 1:66.17518221130504
3859: [-50.20341336640312, 66.17545417465453]
- 0:-50.20341336640312
- 1:66.17545417465453
3860: [-50.20541127476196, 66.17546309646286]
- 0:-50.20541127476196
- 1:66.17546309646286
3861: [-50.20540220559758, 66.17573064800474]
- 0:-50.20540220559758
- 1:66.17573064800474
3862: [-50.20606670722558, 66.1757350693937]
- 0:-50.20606670722558
- 1:66.1757350693937
3863: [-50.20604878033634, 66.17627463766244]
- 0:-50.20604878033634
- 1:66.17627463766244
3864: [-50.20671314800145, 66.17627912068414]
- 0:-50.20671314800145
- 1:66.17627912068414
3865: [-50.20669994681356, 66.17681419690449]
- 0:-50.20669994681356
- 1:66.17681419690449
3866: [-50.204037730996205, 66.17680085311788]
- 0:-50.204037730996205
- 1:66.17680085311788
3867: [-50.20402879518115, 66.17706834091513]
- 0:-50.20402879518115
- 1:66.17706834091513
3868: [-50.202695472371886, 66.17706388764321]
- 0:-50.202695472371886
- 1:66.17706388764321
3869: [-50.20270453750163, 66.1767919226612]
- 0:-50.20270453750163
- 1:66.1767919226612
3870: [-50.200706842116105, 66.17678294391767]
- 0:-50.200706842116105
- 1:66.17678294391767
3871: [-50.20071580993934, 66.17651545683205]
- 0:-50.20071580993934
- 1:66.17651545683205
3872: [-50.19606039141212, 66.1764930992736]
- 0:-50.19606039141212
- 1:66.1764930992736
3873: [-50.19605140051506, 66.17676070254404]
- 0:-50.19605140051506
- 1:66.17676070254404
3874: [-50.19671593355915, 66.1767651737176]
- 0:-50.19671593355915
- 1:66.1767651737176
3875: [-50.19670692723135, 66.1770326605698]
- 0:-50.19670692723135
- 1:66.1770326605698
3876: [-50.1973714663001, 66.17703712830394]
- 0:-50.1973714663001
- 1:66.17703712830394
3877: [-50.19736248806691, 66.17730473230979]
- 0:-50.19736248806691
- 1:66.17730473230979
3878: [-50.199360206999536, 66.17731364785624]
- 0:-50.199360206999536
- 1:66.17731364785624
3879: [-50.19935127744909, 66.1775856647859]
- 0:-50.19935127744909
- 1:66.1775856647859
3880: [-50.20002011042152, 66.17759011597728]
- 0:-50.20002011042152
- 1:66.17759011597728
3881: [-50.20001113596326, 66.17785760410756]
- 0:-50.20001113596326
- 1:66.17785760410756
3882: [-50.20067554583454, 66.1778621194026]
- 0:-50.20067554583454
- 1:66.1778621194026
3883: [-50.20065777780485, 66.17839714848662]
- 0:-50.20065777780485
- 1:66.17839714848662
3884: [-50.20331984204479, 66.1784105782377]
- 0:-50.20331984204479
- 1:66.1784105782377
3885: [-50.20331095134878, 66.17868259683347]
- 0:-50.20331095134878
- 1:66.17868259683347
3886: [-50.20464418247465, 66.17868699219727]
- 0:-50.20464418247465
- 1:66.17868699219727
3887: [-50.20463530476838, 66.17895901125321]
- 0:-50.20463530476838
- 1:66.17895901125321
3888: [-50.205299685350234, 66.17895897297238]
- 0:-50.205299685350234
- 1:66.17895897297238
3889: [-50.205290814083114, 66.17923099240065]
- 0:-50.205290814083114
- 1:66.17923099240065
3890: [-50.20595522238382, 66.17923106746191]
- 0:-50.20595522238382
- 1:66.17923106746191
3891: [-50.20595078693347, 66.1795030194886]
- 0:-50.20595078693347
- 1:66.1795030194886
3892: [-50.20661523182177, 66.17950750350683]
- 0:-50.20661523182177
- 1:66.17950750350683
3893: [-50.20660617448787, 66.17977505945545]
- 0:-50.20660617448787
- 1:66.17977505945545
3894: [-50.207934907620704, 66.17978396529222]
- 0:-50.207934907620704
- 1:66.17978396529222
3895: [-50.20793046078621, 66.18005150565148]
- 0:-50.20793046078621
- 1:66.18005150565148
3896: [-50.2092593206155, 66.18005592009284]
- 0:-50.2092593206155
- 1:66.18005592009284
3897: [-50.20925048820859, 66.18032794118518]
- 0:-50.20925048820859
- 1:66.18032794118518
3898: [-50.20991491921395, 66.18032799537443]
- 0:-50.20991491921395
- 1:66.18032799537443
3899: [-50.20991037625951, 66.18060001391471]
- 0:-50.20991037625951
- 1:66.18060001391471
3900: [-50.211239259102314, 66.18060440749406]
- 0:-50.211239259102314
- 1:66.18060440749406
3901: [-50.21123029962285, 66.18087649440884]
- 0:-50.21123029962285
- 1:66.18087649440884
3902: [-50.21189920304756, 66.18088088262992]
- 0:-50.21189920304756
- 1:66.18088088262992
3903: [-50.211890196701745, 66.18114844068113]
- 0:-50.211890196701745
- 1:66.18114844068113
3904: [-50.21521669693508, 66.18116631857437]
- 0:-50.21521669693508
- 1:66.18116631857437
3905: [-50.21520786906761, 66.1814338123422]
- 0:-50.21520786906761
- 1:66.1814338123422
3906: [-50.21720542507318, 66.18144275666614]
- 0:-50.21720542507318
- 1:66.18144275666614
3907: [-50.21723225785327, 66.18063566799457]
- 0:-50.21723225785327
- 1:66.18063566799457
3908: [-50.21589891006064, 66.18063117256949]
- 0:-50.21589891006064
- 1:66.18063117256949
3909: [-50.215907845663914, 66.18035920211966]
- 0:-50.215907845663914
- 1:66.18035920211966
3910: [-50.21524341922895, 66.18035917973182]
- 0:-50.21524341922895
- 1:66.18035917973182
3911: [-50.215252361270146, 66.18008720965456]
- 0:-50.215252361270146
- 1:66.18008720965456
3912: [-50.213919204901266, 66.18008274508932]
- 0:-50.213919204901266
- 1:66.18008274508932
3913: [-50.213927991599085, 66.17981072368197]
- 0:-50.213927991599085
- 1:66.17981072368197
3914: [-50.21326357651209, 66.17981069085828]
- 0:-50.21326357651209
- 1:66.17981069085828
3915: [-50.21326808682319, 66.17953867286298]
- 0:-50.21326808682319
- 1:66.17953867286298
3916: [-50.21193940469869, 66.17953423612141]
- 0:-50.21193940469869
- 1:66.17953423612141
3917: [-50.211948210827686, 66.17926221554536]
- 0:-50.211948210827686
- 1:66.17926221554536
3918: [-50.20995050614817, 66.17925331826127]
- 0:-50.20995050614817
- 1:66.17925331826127
3919: [-50.20995953129406, 66.1789857624449]
- 0:-50.20995953129406
- 1:66.1789857624449
3920: [-50.20796184180693, 66.17897683354788]
- 0:-50.20796184180693
- 1:66.17897683354788
3921: [-50.20797068693253, 66.17870481406035]
- 0:-50.20797068693253
- 1:66.17870481406035
3922: [-50.20730643052573, 66.17870038915306]
- 0:-50.20730643052573
- 1:66.17870038915306
3923: [-50.20732421694405, 66.17816529280931]
- 0:-50.20732421694405
- 1:66.17816529280931
3924: [-50.20665520718362, 66.17816082875132]
- 0:-50.20665520718362
- 1:66.17816082875132
3925: [-50.20666423347075, 66.17788886209891]
- 0:-50.20666423347075
- 1:66.17788886209891
3926: [-50.20732847095574, 66.17789329029367]
- 0:-50.20732847095574
- 1:66.17789329029367
3927: [-50.207337521440444, 66.17762573623499]
- 0:-50.207337521440444
- 1:66.17762573623499
3928: [-50.20999951309634, 66.17763914030162]
- 0:-50.20999951309634
- 1:66.17763914030162
3929: [-50.21000853786566, 66.17737158617771]
- 0:-50.21000853786566
- 1:66.17737158617771
3930: [-50.21200610720971, 66.17738048173486]
- 0:-50.21200610720971
- 1:66.17738048173486
3931: [-50.212015112665036, 66.17711292763356]
- 0:-50.212015112665036
- 1:66.17711292763356
3932: [-50.21334384727961, 66.17711741469083]
- 0:-50.21334384727961
- 1:66.17711741469083
3933: [-50.21335283986452, 66.17684986070012]
- 0:-50.21335283986452
- 1:66.17684986070012
3934: [-50.21468615694163, 66.17685431719056]
- 0:-50.21468615694163
- 1:66.17685431719056
3935: [-50.21469499013809, 66.17658682830407]
- 0:-50.21469499013809
- 1:66.17658682830407
3936: [-50.216023841750946, 66.17659122177622]
- 0:-50.216023841750946
- 1:66.17659122177622
3937: [-50.21601476055044, 66.17686325320588]
- 0:-50.21601476055044
- 1:66.17686325320588
3938: [-50.21668373220884, 66.17686766706035]
- 0:-50.21668373220884
- 1:66.17686766706035
3939: [-50.21667494002943, 66.1771352732699]
- 0:-50.21667494002943
- 1:66.1771352732699
3940: [-50.217339320521845, 66.17713970003012]
- 0:-50.217339320521845
- 1:66.17713970003012
3941: [-50.217330366356414, 66.17740725482071]
- 0:-50.217330366356414
- 1:66.17740725482071
3942: [-50.21932794287524, 66.1774161503515]
- 0:-50.21932794287524
- 1:66.1774161503515
3943: [-50.21931920888324, 66.17768816986295]
- 0:-50.21931920888324
- 1:66.17768816986295
3944: [-50.22064781269976, 66.17769264455812]
- 0:-50.22064781269976
- 1:66.17769264455812
3945: [-50.22064348777873, 66.17796018382707]
- 0:-50.22064348777873
- 1:66.17796018382707
3946: [-50.22130773861925, 66.17796465465213]
- 0:-50.22130773861925
- 1:66.17796465465213
3947: [-50.22129885572638, 66.17823662321342]
- 0:-50.22129885572638
- 1:66.17823662321342
3948: [-50.22196339439499, 66.17823666496776]
- 0:-50.22196339439499
- 1:66.17823666496776
3949: [-50.22195451794186, 66.17850863390152]
- 0:-50.22195451794186
- 1:66.17850863390152
3950: [-50.22262323188274, 66.17851314627043]
- 0:-50.22262323188274
- 1:66.17851314627043
3951: [-50.22261447517186, 66.17878063815667]
- 0:-50.22261447517186
- 1:66.17878063815667
3952: [-50.22327874417854, 66.1787850986464]
- 0:-50.22327874417854
- 1:66.1787850986464
3953: [-50.223247640870085, 66.17985979019558]
- 0:-50.223247640870085
- 1:66.17985979019558
3954: [-50.22391193520156, 66.17986424748578]
- 0:-50.22391193520156
- 1:66.17986424748578
3955: [-50.223903044527866, 66.18013180595655]
- 0:-50.223903044527866
- 1:66.18013180595655
3956: [-50.22456749134883, 66.18013619480342]
- 0:-50.22456749134883
- 1:66.18013619480342
3957: [-50.22455400553722, 66.18067130933423]
- 0:-50.22455400553722
- 1:66.18067130933423
3958: [-50.22322081440748, 66.18066682686431]
- 0:-50.22322081440748
- 1:66.18066682686431
3959: [-50.22320290661829, 66.18120642307258]
- 0:-50.22320290661829
- 1:66.18120642307258
3960: [-50.222538579694486, 66.18120196182213]
- 0:-50.222538579694486
- 1:66.18120196182213
3961: [-50.22254748344465, 66.18093440239441]
- 0:-50.22254748344465
- 1:66.18093440239441
3962: [-50.22188316254367, 66.180929937707]
- 0:-50.22188316254367
- 1:66.180929937707
3963: [-50.221874252392674, 66.1811974970479]
- 0:-50.221874252392674
- 1:66.1811974970479
3964: [-50.22120960988103, 66.18119304197114]
- 0:-50.22120960988103
- 1:66.18119304197114
3965: [-50.22120089460998, 66.18146506575405]
- 0:-50.22120089460998
- 1:66.18146506575405
3966: [-50.220531962127275, 66.18146061035064]
- 0:-50.220531962127275
- 1:66.18146061035064
3967: [-50.22052746860098, 66.1817281017939]
- 0:-50.22052746860098
- 1:66.1817281017939
3968: [-50.21985873043406, 66.18172810700815]
- 0:-50.21985873043406
- 1:66.18172810700815
3969: [-50.21982732768365, 66.18280275763624]
- 0:-50.21982732768365
- 1:66.18280275763624
3970: [-50.22049169484417, 66.18280723350735]
- 0:-50.22049169484417
- 1:66.18280723350735
3971: [-50.22047404916122, 66.1833468203552]
- 0:-50.22047404916122
- 1:66.1833468203552
3972: [-50.221142825711844, 66.18334681206656]
- 0:-50.221142825711844
- 1:66.18334681206656
3973: [-50.2211339415885, 66.18361878636146]
- 0:-50.2211339415885
- 1:66.18361878636146
3974: [-50.22179844068288, 66.18361877791237]
- 0:-50.22179844068288
- 1:66.18361877791237
3975: [-50.221784935627795, 66.18415831169405]
- 0:-50.221784935627795
- 1:66.18415831169405
3976: [-50.22111610712437, 66.18415391079203]
- 0:-50.22111610712437
- 1:66.18415391079203
3977: [-50.221098305393475, 66.18469344886614]
- 0:-50.221098305393475
- 1:66.18469344886614
3978: [-50.22176714689347, 66.18469784994336]
- 0:-50.22176714689347
- 1:66.18469784994336
3979: [-50.22177602473764, 66.18442587441686]
- 0:-50.22177602473764
- 1:66.18442587441686
3980: [-50.22244042927522, 66.18443034018964]
- 0:-50.22244042927522
- 1:66.18443034018964
3981: [-50.22242265331489, 66.1849698791779]
- 0:-50.22242265331489
- 1:66.1849698791779
3982: [-50.223755883744964, 66.18497431956855]
- 0:-50.223755883744964
- 1:66.18497431956855
3983: [-50.223729241439464, 66.18578142442412]
- 0:-50.223729241439464
- 1:66.18578142442412
3984: [-50.22439796068302, 66.18578587661953]
- 0:-50.22439796068302
- 1:66.18578587661953
3985: [-50.22438896212062, 66.1860579189319]
- 0:-50.22438896212062
- 1:66.1860579189319
3986: [-50.22505351661772, 66.1860578935261]
- 0:-50.22505351661772
- 1:66.1860578935261
3987: [-50.22504452449691, 66.18632993621114]
- 0:-50.22504452449691
- 1:66.18632993621114
3988: [-50.225388070811974, 66.18632991964624]
- 0:-50.225388070811974
- 1:66.18632991964624
3989: [-50.22545033886494, 66.18650380313002]
- 0:-50.22545033886494
- 1:66.18650380313002
3990: [-50.225490630355786, 66.18660192473048]
- 0:-50.225490630355786
- 1:66.18660192473048
3991: [-50.22437133720691, 66.18659298428551]
- 0:-50.22437133720691
- 1:66.18659298428551
3992: [-50.22436233843826, 66.18686502745663]
- 0:-50.22436233843826
- 1:66.18686502745663
3993: [-50.22565107491028, 66.18686949669359]
- 0:-50.22565107491028
- 1:66.18686949669359
3994: [-50.225713440300616, 66.18695415512461]
- 0:-50.225713440300616
- 1:66.18695415512461
3995: [-50.22578471068465, 66.18703891018473]
- 0:-50.22578471068465
- 1:66.18703891018473
3996: [-50.22594525429057, 66.18721725685695]
- 0:-50.22594525429057
- 1:66.18721725685695
3997: [-50.22614156609987, 66.18741793596465]
- 0:-50.22614156609987
- 1:66.18741793596465
3998: [-50.22641354050658, 66.18768105670213]
- 0:-50.22641354050658
- 1:66.18768105670213
3999: [-50.2263376880007, 66.18768106643581]
- 0:-50.2263376880007
- 1:66.18768106643581
4000: [-50.226319819821605, 66.18822056149907]
- 0:-50.226319819821605
- 1:66.18822056149907
4001: [-50.22696205915169, 66.18822058334352]
- 0:-50.22696205915169
- 1:66.18822058334352
4002: [-50.22707354659648, 66.18834543412547]
- 0:-50.22707354659648
- 1:66.18834543412547
4003: [-50.22716717883765, 66.18846138340972]
- 0:-50.22716717883765
- 1:66.18846138340972
4004: [-50.2272518727639, 66.18857282355864]
- 0:-50.2272518727639
- 1:66.18857282355864
4005: [-50.22731876690873, 66.18867989163354]
- 0:-50.22731876690873
- 1:66.18867989163354
4006: [-50.22737672238819, 66.18878245060287]
- 0:-50.22737672238819
- 1:66.18878245060287
4007: [-50.22742573907528, 66.18888050047288]
- 0:-50.22742573907528
- 1:66.18888050047288
4008: [-50.22746144209926, 66.18897863916618]
- 0:-50.22746144209926
- 1:66.18897863916618
4009: [-50.2274836410099, 66.18907669813154]
- 0:-50.2274836410099
- 1:66.18907669813154
4010: [-50.22749711349726, 66.18915699696409]
- 0:-50.22749711349726
- 1:66.18915699696409
4011: [-50.227492684927014, 66.18924169720152]
- 0:-50.227492684927014
- 1:66.18924169720152
4012: [-50.227479260463646, 66.1893308953597]
- 0:-50.227479260463646
- 1:66.1893308953597
4013: [-50.22745249979148, 66.18942006556098]
- 0:-50.22745249979148
- 1:66.18942006556098
4014: [-50.22741677706047, 66.18951814628872]
- 0:-50.22741677706047
- 1:66.18951814628872
4015: [-50.22736328705195, 66.18961626757275]
- 0:-50.22736328705195
- 1:66.18961626757275
4016: [-50.2273008346761, 66.18972329936989]
- 0:-50.2273008346761
- 1:66.18972329936989
4017: [-50.22722513543747, 66.18983924518614]
- 0:-50.22722513543747
- 1:66.18983924518614
4018: [-50.226935297534254, 66.18983477108836]
- 0:-50.226935297534254
- 1:66.18983477108836
4019: [-50.22693090095591, 66.1900220525349]
- 0:-50.22693090095591
- 1:66.1900220525349
4020: [-50.22706467164547, 66.19005327301772]
- 0:-50.22706467164547
- 1:66.19005327301772
4021: [-50.2267613582182, 66.19043226884618]
- 0:-50.2267613582182
- 1:66.19043226884618
4022: [-50.226676602619705, 66.19054818307458]
- 0:-50.226676602619705
- 1:66.19054818307458
4023: [-50.22660534039322, 66.19064634483364]
- 0:-50.22660534039322
- 1:66.19064634483364
4024: [-50.226542827060854, 66.19074884723807]
- 0:-50.226542827060854
- 1:66.19074884723807
4025: [-50.226489297799226, 66.19084255596044]
- 0:-50.226489297799226
- 1:66.19084255596044
4026: [-50.226449083164006, 66.19093617600316]
- 0:-50.226449083164006
- 1:66.19093617600316
4027: [-50.22641799938848, 66.19102093736457]
- 0:-50.22641799938848
- 1:66.19102093736457
4028: [-50.22639566491751, 66.1911100394132]
- 0:-50.22639566491751
- 1:66.1911100394132
4029: [-50.226386914466616, 66.19119033108183]
- 0:-50.226386914466616
- 1:66.19119033108183
4030: [-50.226386766990416, 66.1912750284575]
- 0:-50.226386766990416
- 1:66.1912750284575
4031: [-50.22640463484075, 66.19135084695756]
- 0:-50.22640463484075
- 1:66.19135084695756
4032: [-50.22643138690572, 66.19142664528323]
- 0:-50.22643138690572
- 1:66.19142664528323
4033: [-50.22647158888283, 66.19149799406858]
- 0:-50.22647158888283
- 1:66.19149799406858
4034: [-50.22652052870337, 66.19156938767249]
- 0:-50.22652052870337
- 1:66.19156938767249
4035: [-50.226583065106674, 66.19163626669513]
- 0:-50.226583065106674
- 1:66.19163626669513
4036: [-50.226734566333946, 66.1917789193807]
- 0:-50.226734566333946
- 1:66.1917789193807
4037: [-50.22685950629689, 66.19188149017126]
- 0:-50.22685950629689
- 1:66.19188149017126
4038: [-50.226975473000024, 66.1919751390222]
- 0:-50.226975473000024
- 1:66.1919751390222
4039: [-50.22709580364837, 66.1920598939804]
- 0:-50.22709580364837
- 1:66.1920598939804
4040: [-50.22722064468406, 66.19213569001165]
- 0:-50.22722064468406
- 1:66.19213569001165
4041: [-50.227349961960655, 66.19219811443683]
- 0:-50.227349961960655
- 1:66.19219811443683
4042: [-50.227416763161, 66.19222932484954]
- 0:-50.227416763161
- 1:66.19222932484954
4043: [-50.227483676950776, 66.19225605756034]
- 0:-50.227483676950776
- 1:66.19225605756034
4044: [-50.2275505908643, 66.19228279023889]
- 0:-50.2275505908643
- 1:66.19228279023889
4045: [-50.22762192394149, 66.1923051584812]
- 0:-50.22762192394149
- 1:66.1923051584812
4046: [-50.227760227767256, 66.19234525214017]
- 0:-50.227760227767256
- 1:66.19234525214017
4047: [-50.22788944499707, 66.19238090151647]
- 0:-50.22788944499707
- 1:66.19238090151647
4048: [-50.228009890490924, 66.19241209339758]
- 0:-50.228009890490924
- 1:66.19241209339758
4049: [-50.22812570237177, 66.1924388892826]
- 0:-50.22812570237177
- 1:66.1924388892826
4050: [-50.228241773302415, 66.19246114237508]
- 0:-50.228241773302415
- 1:66.19246114237508
4051: [-50.228348779238786, 66.19247906804394]
- 0:-50.228348779238786
- 1:66.19247906804394
4052: [-50.228455875675074, 66.19249239915821]
- 0:-50.228455875675074
- 1:66.19249239915821
4053: [-50.22855388508905, 66.19250128608903]
- 0:-50.22855388508905
- 1:66.19250128608903
4054: [-50.228678681996385, 66.19250575099895]
- 0:-50.228678681996385
- 1:66.19250575099895
4055: [-50.22881264400989, 66.19250576951913]
- 0:-50.22881264400989
- 1:66.19250576951913
4056: [-50.22895080019465, 66.19249684221535]
- 0:-50.22895080019465
- 1:66.19249684221535
4057: [-50.22908895626519, 66.192487914759]
- 0:-50.22908895626519
- 1:66.192487914759
4058: [-50.22923167754471, 66.19247455767035]
- 0:-50.22923167754471
- 1:66.19247455767035
4059: [-50.22936991112179, 66.19245673956317]
- 0:-50.22936991112179
- 1:66.19245673956317
4060: [-50.229499203788016, 66.19243441226449]
- 0:-50.229499203788016
- 1:66.19243441226449
4061: [-50.229615180606245, 66.19241217385718]
- 0:-50.229615180606245
- 1:66.19241217385718
4062: [-50.229690976225584, 66.19238980030681]
- 0:-50.229690976225584
- 1:66.19238980030681
4063: [-50.22976675918878, 66.19236313083856]
- 0:-50.22976675918878
- 1:66.19236313083856
4064: [-50.22983374779228, 66.19233188729736]
- 0:-50.22983374779228
- 1:66.19233188729736
4065: [-50.229900498881804, 66.1922917666301]
- 0:-50.229900498881804
- 1:66.1922917666301
4066: [-50.22995839991849, 66.1922560790366]
- 0:-50.22995839991849
- 1:66.1922560790366
4067: [-50.23001652487507, 66.19221143607118]
- 0:-50.23001652487507
- 1:66.19221143607118
4068: [-50.230203726566664, 66.19205536792903]
- 0:-50.230203726566664
- 1:66.19205536792903
4069: [-50.23027951563524, 66.19199744598072]
- 0:-50.23027951563524
- 1:66.19199744598072
4070: [-50.23036433512263, 66.19193943850891]
- 0:-50.23036433512263
- 1:66.19193943850891
4071: [-50.23045338337994, 66.1918904344843]
- 0:-50.23045338337994
- 1:66.1918904344843
4072: [-50.230533707284316, 66.19185921828971]
- 0:-50.230533707284316
- 1:66.19185921828971
4073: [-50.23062288061154, 66.1918235689022]
- 0:-50.23062288061154
- 1:66.1918235689022
4074: [-50.230721084384086, 66.19178783393991]
- 0:-50.230721084384086
- 1:66.19178783393991
4075: [-50.230832513183934, 66.19175660420639]
- 0:-50.230832513183934
- 1:66.19175660420639
4076: [-50.23107327204543, 66.19168974252271]
- 0:-50.23107327204543
- 1:66.19168974252271
4077: [-50.23154585963992, 66.19156934132194]
- 0:-50.23154585963992
- 1:66.19156934132194
4078: [-50.23154136827052, 66.19174326963123]
- 0:-50.23154136827052
- 1:66.19174326963123
4079: [-50.232205940637066, 66.19174768467919]
- 0:-50.232205940637066
- 1:66.19174768467919
4080: [-50.23219698417553, 66.19201532167516]
- 0:-50.23219698417553
- 1:66.19201532167516
4081: [-50.23286584720518, 66.19201972958517]
- 0:-50.23286584720518
- 1:66.19201972958517
4082: [-50.232879134666135, 66.19148017678862]
- 0:-50.232879134666135
- 1:66.19148017678862
4083: [-50.23221491895378, 66.19148016475033]
- 0:-50.23221491895378
- 1:66.19148016475033
4084: [-50.23221928904682, 66.19134196636095]
- 0:-50.23221928904682
- 1:66.19134196636095
4085: [-50.23223268095245, 66.19133298674934]
- 0:-50.23223268095245
- 1:66.19133298674934
4086: [-50.2322951414949, 66.19129286861035]
- 0:-50.2322951414949
- 1:66.19129286861035
4087: [-50.23234871787534, 66.19125277106116]
- 0:-50.23234871787534
- 1:66.19125277106116
4088: [-50.23239763787316, 66.19120816099853]
- 0:-50.23239763787316
- 1:66.19120816099853
4089: [-50.23243778541221, 66.1911590938854]
- 0:-50.23243778541221
- 1:66.1911590938854
4090: [-50.23247778630639, 66.1911100917864]
- 0:-50.23247778630639
- 1:66.1911100917864
4091: [-50.23250456186211, 66.19105658457171]
- 0:-50.23250456186211
- 1:66.19105658457171
4092: [-50.23252688440684, 66.19100302928273]
- 0:-50.23252688440684
- 1:66.19100302928273
4093: [-50.2325448526506, 66.19094065241372]
- 0:-50.2325448526506
- 1:66.19094065241372
4094: [-50.23289707828777, 66.19094513760453]
- 0:-50.23289707828777
- 1:66.19094513760453
4095: [-50.23288810651178, 66.19121265705677]
- 0:-50.23288810651178
- 1:66.19121265705677
4096: [-50.23355251869776, 66.19121712990123]
- 0:-50.23355251869776
- 1:66.19121712990123
4097: [-50.233561427106935, 66.19094508093575]
- 0:-50.233561427106935
- 1:66.19094508093575
4098: [-50.234225832402544, 66.1909495501693]
- 0:-50.234225832402544
- 1:66.1909495501693
4099: [-50.23422132637071, 66.19121711781062]
- 0:-50.23422132637071
- 1:66.19121711781062
4100: [-50.23621915861409, 66.19123048748769]
- 0:-50.23621915861409
- 1:66.19123048748769
4101: [-50.2362012790619, 66.19176552809525]
- 0:-50.2362012790619
- 1:66.19176552809525
4102: [-50.23686570204493, 66.19176998344876]
- 0:-50.23686570204493
- 1:66.19176998344876
4103: [-50.23686122162765, 66.1920375521854]
- 0:-50.23686122162765
- 1:66.1920375521854
4104: [-50.23952335242635, 66.19205097378934]
- 0:-50.23952335242635
- 1:66.19205097378934
4105: [-50.239545564686125, 66.19124383390017]
- 0:-50.239545564686125
- 1:66.19124383390017
4106: [-50.23888119212771, 66.19124380548573]
- 0:-50.23888119212771
- 1:66.19124380548573
4107: [-50.238907840264964, 66.1904323035871]
- 0:-50.238907840264964
- 1:66.1904323035871
4108: [-50.240236786563806, 66.19044123342353]
- 0:-50.240236786563806
- 1:66.19044123342353
4109: [-50.24024551913268, 66.19017366211136]
- 0:-50.24024551913268
- 1:66.19017366211136
4110: [-50.24224339510316, 66.19018257437244]
- 0:-50.24224339510316
- 1:66.19018257437244
4111: [-50.24226110003643, 66.18964300618423]
- 0:-50.24226110003643
- 1:66.18964300618423
4112: [-50.242925636263, 66.18964748083718]
- 0:-50.242925636263
- 1:66.18964748083718
4113: [-50.24291661457734, 66.18991506520064]
- 0:-50.24291661457734
- 1:66.18991506520064
4114: [-50.243580988389446, 66.18991948466264]
- 0:-50.243580988389446
- 1:66.18991948466264
4115: [-50.24357657224262, 66.19018705204793]
- 0:-50.24357657224262
- 1:66.19018705204793
4116: [-50.24290777580575, 66.19018699744473]
- 0:-50.24290777580575
- 1:66.19018699744473
4117: [-50.24289433138427, 66.19072215025963]
- 0:-50.24289433138427
- 1:66.19072215025963
4118: [-50.242225521459154, 66.19072209194262]
- 0:-50.242225521459154
- 1:66.19072209194262
4119: [-50.242221092437674, 66.1909896600517]
- 0:-50.242221092437674
- 1:66.1909896600517
4120: [-50.24354985547009, 66.19099409050305]
- 0:-50.24354985547009
- 1:66.19099409050305
4121: [-50.24355872451041, 66.19072656995941]
- 0:-50.24355872451041
- 1:66.19072656995941
4122: [-50.24489209404805, 66.19073108553926]
- 0:-50.24489209404805
- 1:66.19073108553926
4123: [-50.24490109664027, 66.19046350007297]
- 0:-50.24490109664027
- 1:66.19046350007297
4124: [-50.24822747952579, 66.19048137838136]
- 0:-50.24822747952579
- 1:66.19048137838136
4125: [-50.248214115725055, 66.19101641615971]
- 0:-50.248214115725055
- 1:66.19101641615971
4126: [-50.24954292983749, 66.19102531247748]
- 0:-50.24954292983749
- 1:66.19102531247748
4127: [-50.24953397202789, 66.19129289911106]
- 0:-50.24953397202789
- 1:66.19129289911106
4128: [-50.2508672503043, 66.19130182893811]
- 0:-50.2508672503043
- 1:66.19130182893811
4129: [-50.2508537911493, 66.19183693403866]
- 0:-50.2508537911493
- 1:66.19183693403866
4130: [-50.25018496154901, 66.19183691807741]
- 0:-50.25018496154901
- 1:66.19183691807741
4131: [-50.250176156445974, 66.19210444060298]
- 0:-50.250176156445974
- 1:66.19210444060298
4132: [-50.24884732912178, 66.19209996334943]
- 0:-50.24884732912178
- 1:66.19209996334943
4133: [-50.24883836467569, 66.19236755102419]
- 0:-50.24883836467569
- 1:66.19236755102419
4134: [-50.25083608509163, 66.1923764572481]
- 0:-50.25083608509163
- 1:66.1923764572481
4135: [-50.250818232299835, 66.19291604663489]
- 0:-50.250818232299835
- 1:66.19291604663489
4136: [-50.24948947610193, 66.19290709824428]
- 0:-50.24948947610193
- 1:66.19290709824428
4137: [-50.249462616865, 66.19371416079758]
- 0:-50.249462616865
- 1:66.19371416079758
4138: [-50.250104707882464, 66.19371860742959]
- 0:-50.250104707882464
- 1:66.19371860742959
4139: [-50.25003339942643, 66.19379000934154]
- 0:-50.25003339942643
- 1:66.19379000934154
4140: [-50.24997087787088, 66.19385244718642]
- 0:-50.24997087787088
- 1:66.19385244718642
4141: [-50.24992644019798, 66.19391482800626]
- 0:-50.24992644019798
- 1:66.19391482800626
4142: [-50.24989070283138, 66.19397283930822]
- 0:-50.24989070283138
- 1:66.19397283930822
4143: [-50.249872843436215, 66.19402632916461]
- 0:-50.249872843436215
- 1:66.19402632916461
4144: [-50.24986383099051, 66.19407538447379]
- 0:-50.24986383099051
- 1:66.19407538447379
4145: [-50.249868471480724, 66.19412445211209]
- 0:-50.249868471480724
- 1:66.19412445211209
4146: [-50.24988622189811, 66.19416896413507]
- 0:-50.24988622189811
- 1:66.19416896413507
4147: [-50.2499173324295, 66.1942136185583]
- 0:-50.2499173324295
- 1:66.1942136185583
4148: [-50.2499531893738, 66.19425819036628]
- 0:-50.2499531893738
- 1:66.19425819036628
4149: [-50.25000217838217, 66.19429832331946]
- 0:-50.25000217838217
- 1:66.19429832331946
4150: [-50.250060111951754, 66.1943429638878]
- 0:-50.250060111951754
- 1:66.1943429638878
4151: [-50.250127076937495, 66.1943875175274]
- 0:-50.250127076937495
- 1:66.1943875175274
4152: [-50.250193895658114, 66.1944321361802]
- 0:-50.250193895658114
- 1:66.1944321361802
4153: [-50.2502698168994, 66.19446777742549]
- 0:-50.2502698168994
- 1:66.19446777742549
4154: [-50.25034991449517, 66.19450789208545]
- 0:-50.25034991449517
- 1:66.19450789208545
4155: [-50.250416853853274, 66.19453461293257]
- 0:-50.250416853853274
- 1:66.19453461293257
4156: [-50.25048820899167, 66.19455696848074]
- 0:-50.25048820899167
- 1:66.19455696848074
4157: [-50.250572940218746, 66.19458376224274]
- 0:-50.250572940218746
- 1:66.19458376224274
4158: [-50.25065761182051, 66.1946060264527]
- 0:-50.25065761182051
- 1:66.1946060264527
4159: [-50.25075133685422, 66.19462832043865]
- 0:-50.25075133685422
- 1:66.19462832043865
4160: [-50.25085394685708, 66.19465059243525]
- 0:-50.25085394685708
- 1:66.19465059243525
4161: [-50.250956519187454, 66.19466845163691]
- 0:-50.250956519187454
- 1:66.19466845163691
4162: [-50.251067976474495, 66.19468628881944]
- 0:-50.251067976474495
- 1:66.19468628881944
4163: [-50.251179433888346, 66.19470412590483]
- 0:-50.251179433888346
- 1:66.19470412590483
4164: [-50.25129528497123, 66.19471748080869]
- 0:-50.25129528497123
- 1:66.19471748080869
4165: [-50.25141124472662, 66.19472635785021]
- 0:-50.25141124472662
- 1:66.19472635785021
4166: [-50.25153165796636, 66.19473528219302]
- 0:-50.25153165796636
- 1:66.19473528219302
4167: [-50.25164763984364, 66.19474427580306]
- 0:-50.25164763984364
- 1:66.19474427580306
4168: [-50.251763561816475, 66.194748739805]
- 0:-50.251763561816475
- 1:66.194748739805
4169: [-50.251875030378834, 66.19475315630437]
- 0:-50.251875030378834
- 1:66.19475315630437
4170: [-50.25198646097225, 66.19475315998908]
- 0:-50.25198646097225
- 1:66.19475315998908
4171: [-50.25211593819167, 66.19474869353795]
- 0:-50.25211593819167
- 1:66.19474869353795
4172: [-50.25224949377548, 66.194739758133]
- 0:-50.25224949377548
- 1:66.194739758133
4173: [-50.252387888000854, 66.19472196618972]
- 0:-50.252387888000854
- 1:66.19472196618972
4174: [-50.25253945178357, 66.19470414768183]
- 0:-50.25253945178357
- 1:66.19470414768183
4175: [-50.25269540864412, 66.1946818468566]
- 0:-50.25269540864412
- 1:66.1946818468566
4176: [-50.25286492012929, 66.1946506156184]
- 0:-50.25286492012929
- 1:66.1946506156184
4177: [-50.25305216262413, 66.19461492728327]
- 0:-50.25305216262413
- 1:66.19461492728327
4178: [-50.25328402885185, 66.1945658767627]
- 0:-50.25328402885185
- 1:66.1945658767627
4179: [-50.25355612507169, 66.19450794597576]
- 0:-50.25355612507169
- 1:66.19450794597576
4180: [-50.25381906827938, 66.1944410427886]
- 0:-50.25381906827938
- 1:66.1944410427886
4181: [-50.25406438720014, 66.1943741183178]
- 0:-50.25406438720014
- 1:66.1943741183178
4182: [-50.254291728677465, 66.19430277326268]
- 0:-50.254291728677465
- 1:66.19430277326268
4183: [-50.254497053159206, 66.19423588931974]
- 0:-50.254497053159206
- 1:66.19423588931974
4184: [-50.25467974023375, 66.19416007325417]
- 0:-50.25467974023375
- 1:66.19416007325417
4185: [-50.254764602116516, 66.19412441067519]
- 0:-50.254764602116516
- 1:66.19412441067519
4186: [-50.254840264226665, 66.1940887835546]
- 0:-50.254840264226665
- 1:66.1940887835546
4187: [-50.254916180615126, 66.194048613596]
- 0:-50.254916180615126
- 1:66.194048613596
4188: [-50.25498310420217, 66.19401294356325]
- 0:-50.25498310420217
- 1:66.19401294356325
4189: [-50.25545120365333, 66.19401300109259]
- 0:-50.25545120365333
- 1:66.19401300109259
4190: [-50.25546010423836, 66.19374541087099]
- 0:-50.25546010423836
- 1:66.19374541087099
4191: [-50.25612458243126, 66.19374988115753]
- 0:-50.25612458243126
- 1:66.19374988115753
4192: [-50.256133437905824, 66.19347787843249]
- 0:-50.256133437905824
- 1:66.19347787843249
4193: [-50.25813107438516, 66.19348673384347]
- 0:-50.25813107438516
- 1:66.19348673384347
4194: [-50.25814456128891, 66.19295167546852]
- 0:-50.25814456128891
- 1:66.19295167546852
4195: [-50.25857248252767, 66.1929517120923]
- 0:-50.25857248252767
- 1:66.1929517120923
4196: [-50.25870187349726, 66.19296954913905]
- 0:-50.25870187349726
- 1:66.19296954913905
4197: [-50.25882670410663, 66.19299181664664]
- 0:-50.25882670410663
- 1:66.19299181664664
4198: [-50.2589471038129, 66.19301415367447]
- 0:-50.2589471038129
- 1:66.19301415367447
4199: [-50.2590630505704, 66.19303644345133]
- 0:-50.2590630505704
- 1:66.19303644345133
4200: [-50.25916994479648, 66.19305870390536]
- 0:-50.25916994479648
- 1:66.19305870390536
4201: [-50.25927704679673, 66.19308542869545]
- 0:-50.25927704679673
- 1:66.19308542869545
4202: [-50.25937515746066, 66.1931166536696]
- 0:-50.25937515746066
- 1:66.1931166536696
4203: [-50.259473375616366, 66.19314340082917]
- 0:-50.259473375616366
- 1:66.19314340082917
4204: [-50.25946889809803, 66.19322816909211]
- 0:-50.25946889809803
- 1:66.19322816909211
4205: [-50.25969174475784, 66.19322816278502]
- 0:-50.25969174475784
- 1:66.19322816278502
4206: [-50.25978550365654, 66.19326828251694]
- 0:-50.25978550365654
- 1:66.19326828251694
4207: [-50.25982558764772, 66.19329060148296]
- 0:-50.25982558764772
- 1:66.19329060148296
4208: [-50.259861218537466, 66.19331287332825]
- 0:-50.259861218537466
- 1:66.19331287332825
4209: [-50.25989691075749, 66.19333967464533]
- 0:-50.25989691075749
- 1:66.19333967464533
4210: [-50.25992814987302, 66.19336642884757]
- 0:-50.25992814987302
- 1:66.19336642884757
4211: [-50.25995482866705, 66.1933976136862]
- 0:-50.25995482866705
- 1:66.1933976136862
4212: [-50.259981676010305, 66.19342885025597]
- 0:-50.259981676010305
- 1:66.19342885025597
4213: [-50.26002175766208, 66.19349572487849]
- 0:-50.26002175766208
- 1:66.19349572487849
4214: [-50.259459867638746, 66.19349570753397]
- 0:-50.259459867638746
- 1:66.19349570753397
4215: [-50.25943758327629, 66.19430277105721]
- 0:-50.25943758327629
- 1:66.19430277105721
4216: [-50.26015107741949, 66.19430279354964]
- 0:-50.26015107741949
- 1:66.19430279354964
4217: [-50.26018666819626, 66.19436520854316]
- 0:-50.26018666819626
- 1:66.19436520854316
4218: [-50.26022692679434, 66.19441871510823]
- 0:-50.26022692679434
- 1:66.19441871510823
4219: [-50.26027582310342, 66.19446332191839]
- 0:-50.26027582310342
- 1:66.19446332191839
4220: [-50.26033391917975, 66.19450789280393]
- 0:-50.26033391917975
- 1:66.19450789280393
4221: [-50.260414238154404, 66.19455246556403]
- 0:-50.260414238154404
- 1:66.19455246556403
4222: [-50.26050789543785, 66.19459706276402]
- 0:-50.26050789543785
- 1:66.19459706276402
4223: [-50.26061039835954, 66.19463722457078]
- 0:-50.26061039835954
- 1:66.19463722457078
4224: [-50.26072634673422, 66.19467293298895]
- 0:-50.26072634673422
- 1:66.19467293298895
4225: [-50.26085121950582, 66.1947130313954]
- 0:-50.26085121950582
- 1:66.1947130313954
4226: [-50.2609937832504, 66.1947442589627]
- 0:-50.2609937832504
- 1:66.1947442589627
4227: [-50.26114543996854, 66.19477992817431]
- 0:-50.26114543996854
- 1:66.19477992817431
4228: [-50.26131482707587, 66.19481113916056]
- 0:-50.26131482707587
- 1:66.19481113916056
4229: [-50.261462059078085, 66.19483345772107]
- 0:-50.261462059078085
- 1:66.19483345772107
4230: [-50.26161821556366, 66.19486016614954]
- 0:-50.26161821556366
- 1:66.19486016614954
4231: [-50.261787670947115, 66.19488248601101]
- 0:-50.261787670947115
- 1:66.19488248601101
4232: [-50.261974896102885, 66.19490476022652]
- 0:-50.261974896102885
- 1:66.19490476022652
4233: [-50.26233613785063, 66.1949449225467]
- 0:-50.26233613785063
- 1:66.1949449225467
4234: [-50.26325007386546, 66.19504298218904]
- 0:-50.26325007386546
- 1:66.19504298218904
4235: [-50.26350434683424, 66.1950697744818]
- 0:-50.26350434683424
- 1:66.1950697744818
4236: [-50.26372738369955, 66.19510094879747]
- 0:-50.26372738369955
- 1:66.19510094879747
4237: [-50.26396361280883, 66.19513221189472]
- 0:-50.26396361280883
- 1:66.19513221189472
4238: [-50.26417320576978, 66.19516783910026]
- 0:-50.26417320576978
- 1:66.19516783910026
4239: [-50.26436498958709, 66.1951990989934]
- 0:-50.26436498958709
- 1:66.1951990989934
4240: [-50.26454336902121, 66.1952392250657]
- 0:-50.26454336902121
- 1:66.1952392250657
4241: [-50.264721748929865, 66.19527935089314]
- 0:-50.264721748929865
- 1:66.19527935089314
4242: [-50.26490006295331, 66.19532836699905]
- 0:-50.26490006295331
- 1:66.19532836699905
4243: [-50.26507843970266, 66.19538191238208]
- 0:-50.26507843970266
- 1:66.19538191238208
4244: [-50.265261142172484, 66.19543986545575]
- 0:-50.265261142172484
- 1:66.19543986545575
4245: [-50.26544850749585, 66.19550232965649]
- 0:-50.26544850749585
- 1:66.19550232965649
4246: [-50.265640238932086, 66.1955736142537]
- 0:-50.265640238932086
- 1:66.1955736142537
4247: [-50.26584081227944, 66.19565388292038]
- 0:-50.26584081227944
- 1:66.19565388292038
4248: [-50.2660595339598, 66.19573862149157]
- 0:-50.2660595339598
- 1:66.19573862149157
4249: [-50.266050563774286, 66.19594818711569]
- 0:-50.266050563774286
- 1:66.19594818711569
4250: [-50.26655429140958, 66.19595264086499]
- 0:-50.26655429140958
- 1:66.19595264086499
4251: [-50.266714879447576, 66.19601953345195]
- 0:-50.266714879447576
- 1:66.19601953345195
4252: [-50.26671043358066, 66.19622025569183]
- 0:-50.26671043358066
- 1:66.19622025569183
4253: [-50.26719654200172, 66.19622468791869]
- 0:-50.26719654200172
- 1:66.19622468791869
4254: [-50.267370303279485, 66.19629155180354]
- 0:-50.267370303279485
- 1:66.19629155180354
4255: [-50.26753100107133, 66.19635396564183]
- 0:-50.26753100107133
- 1:66.19635396564183
4256: [-50.26768689047228, 66.19641193304267]
- 0:-50.26768689047228
- 1:66.19641193304267
4257: [-50.2678386013049, 66.19646542734353]
- 0:-50.2678386013049
- 1:66.19646542734353
4258: [-50.2679902721527, 66.19651450871984]
- 0:-50.2679902721527
- 1:66.19651450871984
4259: [-50.26813288976699, 66.1965635613475]
- 0:-50.26813288976699
- 1:66.1965635613475
4260: [-50.26827557312677, 66.19660372324921]
- 0:-50.26827557312677
- 1:66.19660372324921
4261: [-50.26841819418231, 66.19663935545518]
- 0:-50.26841819418231
- 1:66.19663935545518
4262: [-50.26856098410089, 66.19667503922771]
- 0:-50.26856098410089
- 1:66.19667503922771
4263: [-50.26869928003345, 66.19670626328592]
- 0:-50.26869928003345
- 1:66.19670626328592
4264: [-50.26884186140336, 66.19673748227015]
- 0:-50.26884186140336
- 1:66.19673748227015
4265: [-50.26898005442738, 66.19675976372508]
- 0:-50.26898005442738
- 1:66.19675976372508
4266: [-50.269122847769346, 66.19678202675267]
- 0:-50.269122847769346
- 1:66.19678202675267
4267: [-50.26926560056654, 66.19679987685984]
- 0:-50.26926560056654
- 1:66.19679987685984
4268: [-50.269408184994965, 66.19681767508574]
- 0:-50.269408184994965
- 1:66.19681767508574
4269: [-50.2695508973122, 66.1968311121107]
- 0:-50.2695508973122
- 1:66.1968311121107
4270: [-50.26990307860448, 66.19685339173756]
- 0:-50.26990307860448
- 1:66.19685339173756
4271: [-50.27023759524544, 66.19687123914078]
- 0:-50.27023759524544
- 1:66.19687123914078
4272: [-50.2705540690578, 66.19688013825818]
- 0:-50.2705540690578
- 1:66.19688013825818
4273: [-50.27085287779641, 66.19688460542487]
- 0:-50.27085287779641
- 1:66.19688460542487
4274: [-50.27113830649102, 66.19688463576088]
- 0:-50.27113830649102
- 1:66.19688463576088
4275: [-50.271405838153505, 66.19687565310609]
- 0:-50.271405838153505
- 1:66.19687565310609
4276: [-50.27153527762057, 66.1968667538199]
- 0:-50.27153527762057
- 1:66.1968667538199
4277: [-50.27166001155834, 66.19686235060033]
- 0:-50.27166001155834
- 1:66.19686235060033
4278: [-50.27178478748095, 66.19684893988024]
- 0:-50.27178478748095
- 1:66.19684893988024
4279: [-50.27190088769818, 66.19684001692825]
- 0:-50.27190088769818
- 1:66.19684001692825
4280: [-50.27207038550158, 66.19682217953013]
- 0:-50.27207038550158
- 1:66.19682217953013
4281: [-50.272244126970314, 66.19679992409709]
- 0:-50.272244126970314
- 1:66.19679992409709
4282: [-50.27241811973837, 66.19677312552774]
- 0:-50.27241811973837
- 1:66.19677312552774
4283: [-50.27258301710652, 66.19674188569985]
- 0:-50.27258301710652
- 1:66.19674188569985
4284: [-50.272747977466146, 66.19671517520149]
- 0:-50.272747977466146
- 1:66.19671517520149
4285: [-50.27290409395834, 66.19667948059772]
- 0:-50.27290409395834
- 1:66.19667948059772
4286: [-50.273055778476945, 66.1966438559409]
- 0:-50.273055778476945
- 1:66.1966438559409
4287: [-50.27319855530733, 66.1966081378241]
- 0:-50.27319855530733
- 1:66.1966081378241
4288: [-50.27341252093391, 66.19655015426682]
- 0:-50.27341252093391
- 1:66.19655015426682
4289: [-50.273622054116075, 66.19647882038642]
- 0:-50.273622054116075
- 1:66.19647882038642
4290: [-50.27381385744146, 66.19641194602333]
- 0:-50.27381385744146
- 1:66.19641194602333
4291: [-50.273992111112676, 66.19634058385908]
- 0:-50.273992111112676
- 1:66.19634058385908
4292: [-50.27415269864215, 66.19626479077881]
- 0:-50.27415269864215
- 1:66.19626479077881
4293: [-50.27429534669719, 66.1961889929624]
- 0:-50.27429534669719
- 1:66.1961889929624
4294: [-50.27441121199753, 66.19611762681491]
- 0:-50.27441121199753
- 1:66.19611762681491
4295: [-50.274464775139805, 66.19608192297011]
- 0:-50.274464775139805
- 1:66.19608192297011
4296: [-50.274509306746154, 66.19604630777397]
- 0:-50.274509306746154
- 1:66.19604630777397
4297: [-50.27455404792342, 66.1960017369281]
- 0:-50.27455404792342
- 1:66.1960017369281
4298: [-50.274594020481835, 66.19595713283935]
- 0:-50.274594020481835
- 1:66.19595713283935
4299: [-50.274625212815664, 66.195908074534]
- 0:-50.274625212815664
- 1:66.195908074534
4300: [-50.274652078466374, 66.19585460860873]
- 0:-50.274652078466374
- 1:66.19585460860873
4301: [-50.27467003701848, 66.1958010495155]
- 0:-50.27467003701848
- 1:66.1958010495155
4302: [-50.274683353994746, 66.19574309616833]
- 0:-50.274683353994746
- 1:66.19574309616833
4303: [-50.274687722360355, 66.19568063691683]
- 0:-50.274687722360355
- 1:66.19568063691683
4304: [-50.27468765934794, 66.19561824787749]
- 0:-50.27468765934794
- 1:66.19561824787749
4305: [-50.27467885794782, 66.19555581739523]
- 0:-50.27467885794782
- 1:66.19555581739523
4306: [-50.274665561549256, 66.19548892760042]
- 0:-50.274665561549256
- 1:66.19548892760042
4307: [-50.27464766536275, 66.19542205630438]
- 0:-50.27464766536275
- 1:66.19542205630438
4308: [-50.27462092566112, 66.19534620130203]
- 0:-50.27462092566112
- 1:66.19534620130203
4309: [-50.27455841559926, 66.19519458002243]
- 0:-50.27455841559926
- 1:66.19519458002243
4310: [-50.27442472341256, 66.19490924573363]
- 0:-50.27442472341256
- 1:66.19490924573363
4311: [-50.274741279218624, 66.1949136562892]
- 0:-50.274741279218624
- 1:66.1949136562892
4312: [-50.274732396093846, 66.19518119839881]
- 0:-50.274732396093846
- 1:66.19518119839881
4313: [-50.275401201381946, 66.19518567831324]
- 0:-50.275401201381946
- 1:66.19518567831324
4314: [-50.27538344782673, 66.1957207635456]
- 0:-50.27538344782673
- 1:66.1957207635456
4315: [-50.27671662954703, 66.19572966650254]
- 0:-50.27671662954703
- 1:66.19572966650254
4316: [-50.27673003061152, 66.19519017338234]
- 0:-50.27673003061152
- 1:66.19519017338234
4317: [-50.27739883462965, 66.19519464263472]
- 0:-50.27739883462965
- 1:66.19519464263472
4318: [-50.277403238701375, 66.19492705369238]
- 0:-50.277403238701375
- 1:66.19492705369238
4319: [-50.2780721401622, 66.19492704150541]
- 0:-50.2780721401622
- 1:66.19492704150541
4320: [-50.278063184869666, 66.19519906185242]
- 0:-50.278063184869666
- 1:66.19519906185242
4321: [-50.27939661017026, 66.19520351003355]
- 0:-50.27939661017026
- 1:66.19520351003355
4322: [-50.27940995931358, 66.19466401745315]
- 0:-50.27940995931358
- 1:66.19466401745315
4323: [-50.280078748668714, 66.19466847232114]
- 0:-50.280078748668714
- 1:66.19466847232114
4324: [-50.280083295566754, 66.19440093540085]
- 0:-50.280083295566754
- 1:66.19440093540085
4325: [-50.280752181934176, 66.19440090883344]
- 0:-50.280752181934176
- 1:66.19440090883344
4326: [-50.280765547528816, 66.19386583037729]
- 0:-50.280765547528816
- 1:66.19386583037729
4327: [-50.281429820843265, 66.19386581882858]
- 0:-50.281429820843265
- 1:66.19386581882858
4328: [-50.28144777300203, 66.19333072261718]
- 0:-50.28144777300203
- 1:66.19333072261718
4329: [-50.28077884834902, 66.19332622355307]
- 0:-50.28077884834902
- 1:66.19332622355307
4330: [-50.280774476433294, 66.19359381111273]
- 0:-50.280774476433294
- 1:66.19359381111273
4331: [-50.277443449164394, 66.19358039527727]
- 0:-50.277443449164394
- 1:66.19358039527727
4332: [-50.277434591995686, 66.19384793632368]
- 0:-50.277434591995686
- 1:66.19384793632368
4333: [-50.276770169109795, 66.19384799175941]
- 0:-50.276770169109795
- 1:66.19384799175941
4334: [-50.276779137174, 66.19357597301482]
- 0:-50.276779137174
- 1:66.19357597301482
4335: [-50.275445785678144, 66.19357149743372]
- 0:-50.275445785678144
- 1:66.19357149743372
4336: [-50.27545476674245, 66.1932994791502]
- 0:-50.27545476674245
- 1:66.1932994791502
4337: [-50.27412142633986, 66.19329498955106]
- 0:-50.27412142633986
- 1:66.19329498955106
4338: [-50.27413031548429, 66.19302744949483]
- 0:-50.27413031548429
- 1:66.19302744949483
4339: [-50.27679236916009, 66.19303643272613]
- 0:-50.27679236916009
- 1:66.19303643272613
4340: [-50.27680137897684, 66.19276882753908]
- 0:-50.27680137897684
- 1:66.19276882753908
4341: [-50.2794634635679, 66.19278228334151]
- 0:-50.2794634635679
- 1:66.19278228334151
4342: [-50.27947240531398, 66.1925102653954]
- 0:-50.27947240531398
- 1:66.1925102653954
4343: [-50.280805595418606, 66.19251917558894]
- 0:-50.280805595418606
- 1:66.19251917558894
4344: [-50.28081007112802, 66.19224711139071]
- 0:-50.28081007112802
- 1:66.19224711139071
4345: [-50.281478969775804, 66.19225161012592]
- 0:-50.281478969775804
- 1:66.19225161012592
4346: [-50.281483503730406, 66.19198407561694]
- 0:-50.281483503730406
- 1:66.19198407561694
4347: [-50.27682364254502, 66.19196180139112]
- 0:-50.27682364254502
- 1:66.19196180139112
4348: [-50.27681477928838, 66.19222934066336]
- 0:-50.27681477928838
- 1:66.19222934066336
4349: [-50.27215487339063, 66.19220700930019]
- 0:-50.27215487339063
- 1:66.19220700930019
4350: [-50.27216378156534, 66.19193947062897]
- 0:-50.27216378156534
- 1:66.19193947062897
4351: [-50.27184730008084, 66.1919394664783]
- 0:-50.27184730008084
- 1:66.1919394664783
4352: [-50.27170902918408, 66.19128398943894]
- 0:-50.27170902918408
- 1:66.19128398943894
4353: [-50.27167350788332, 66.19115912537902]
- 0:-50.27167350788332
- 1:66.19115912537902
4354: [-50.27161990630018, 66.19102090169201]
- 0:-50.27161990630018
- 1:66.19102090169201
4355: [-50.271557423038104, 66.19086928163372]
- 0:-50.271557423038104
- 1:66.19086928163372
4356: [-50.271428149987216, 66.19059276956098]
- 0:-50.271428149987216
- 1:66.19059276956098
4357: [-50.272199648636125, 66.19059284946935]
- 0:-50.272199648636125
- 1:66.19059284946935
4358: [-50.2721950661054, 66.19086479434547]
- 0:-50.2721950661054
- 1:66.19086479434547
4359: [-50.273524008845214, 66.19086930885574]
- 0:-50.273524008845214
- 1:66.19086930885574
4360: [-50.27353290391458, 66.19060177141799]
- 0:-50.27353290391458
- 1:66.19060177141799
4361: [-50.27419714719356, 66.19060621045041]
- 0:-50.27419714719356
- 1:66.19060621045041
4362: [-50.27420614070762, 66.19033419548627]
- 0:-50.27420614070762
- 1:66.19033419548627
4363: [-50.27487054558662, 66.19033868262105]
- 0:-50.27487054558662
- 1:66.19033868262105
4364: [-50.274888414580666, 66.18979913109406]
- 0:-50.274888414580666
- 1:66.18979913109406
4365: [-50.27555295255043, 66.1898035494614]
- 0:-50.27555295255043
- 1:66.1898035494614
4366: [-50.27557080835595, 66.18926399889666]
- 0:-50.27557080835595
- 1:66.18926399889666
4367: [-50.27357296734792, 66.1892550346936]
- 0:-50.27357296734792
- 1:66.1892550346936
4368: [-50.273577431739035, 66.18898756910554]
- 0:-50.273577431739035
- 1:66.18898756910554
4369: [-50.27424634010588, 66.18898751149328]
- 0:-50.27424634010588
- 1:66.18898751149328
4370: [-50.27425522834262, 66.18871997594071]
- 0:-50.27425522834262
- 1:66.18871997594071
4371: [-50.277581694732525, 66.18873334818144]
- 0:-50.277581694732525
- 1:66.18873334818144
4372: [-50.27757273418087, 66.18900536186145]
- 0:-50.27757273418087
- 1:66.18900536186145
4373: [-50.27690836317674, 66.18900088925774]
- 0:-50.27690836317674
- 1:66.18900088925774
4374: [-50.276894985818075, 66.18954048610011]
- 0:-50.276894985818075
- 1:66.18954048610011
4375: [-50.27822385753531, 66.18954495037535]
- 0:-50.27822385753531
- 1:66.18954495037535
4376: [-50.278232707399056, 66.18927741374512]
- 0:-50.278232707399056
- 1:66.18927741374512
4377: [-50.28023053891072, 66.1892863036355]
- 0:-50.28023053891072
- 1:66.1892863036355
4378: [-50.280239369452794, 66.18901876702863]
- 0:-50.280239369452794
- 1:66.18901876702863
4379: [-50.28156821073912, 66.1890231956758]
- 0:-50.28156821073912
- 1:66.1890231956758
4380: [-50.281577028407916, 66.18875565917982]
- 0:-50.281577028407916
- 1:66.18875565917982
4381: [-50.28224149372075, 66.18875562928024]
- 0:-50.28224149372075
- 1:66.18875562928024
4382: [-50.28225047341495, 66.18848814468373]
- 0:-50.28225047341495
- 1:66.18848814468373
4383: [-50.284248092230726, 66.18849703523081]
- 0:-50.284248092230726
- 1:66.18849703523081
4384: [-50.28423915392521, 66.18876463686392]
- 0:-50.28423915392521
- 1:66.18876463686392
4385: [-50.28557247208742, 66.18877348182725]
- 0:-50.28557247208742
- 1:66.18877348182725
4386: [-50.28556354656812, 66.18904108391538]
- 0:-50.28556354656812
- 1:66.18904108391538
4387: [-50.28356586964638, 66.18903209733448]
- 0:-50.28356586964638
- 1:66.18903209733448
4388: [-50.28355692480022, 66.18929969944433]
- 0:-50.28355692480022
- 1:66.18929969944433
4389: [-50.28422575044807, 66.18930418307023]
- 0:-50.28422575044807
- 1:66.18930418307023
4390: [-50.28421685504467, 66.18957619819153]
- 0:-50.28421685504467
- 1:66.18957619819153
4391: [-50.28754771202051, 66.18958953446635]
- 0:-50.28754771202051
- 1:66.18958953446635
4392: [-50.287556786882774, 66.18932198325066]
- 0:-50.287556786882774
- 1:66.18932198325066
4393: [-50.288885484291, 66.18932639943571]
- 0:-50.288885484291
- 1:66.18932639943571
4394: [-50.28890324953226, 66.1887868982594]
- 0:-50.28890324953226
- 1:66.1887868982594
4395: [-50.28823448351846, 66.18878685231782]
- 0:-50.28823448351846
- 1:66.18878685231782
4396: [-50.28825226149073, 66.18824735244557]
- 0:-50.28825226149073
- 1:66.18824735244557
4397: [-50.287583464283394, 66.1882428904773]
- 0:-50.287583464283394
- 1:66.1882428904773
4398: [-50.28759237038541, 66.18797528897602]
- 0:-50.28759237038541
- 1:66.18797528897602
4399: [-50.289590130230145, 66.18798426257605]
- 0:-50.289590130230145
- 1:66.18798426257605
4400: [-50.28958107488176, 66.18825181264296]
- 0:-50.28958107488176
- 1:66.18825181264296
4401: [-50.2909143826371, 66.18826071736959]
- 0:-50.2909143826371
- 1:66.18826071736959
4402: [-50.29090106459392, 66.18879585130144]
- 0:-50.29090106459392
- 1:66.18879585130144
4403: [-50.29156542032868, 66.18880024966084]
- 0:-50.29156542032868
- 1:66.18880024966084
4404: [-50.29155655258546, 66.18906785252139]
- 0:-50.29155655258546
- 1:66.18906785252139
4405: [-50.293554212986656, 66.18907671167841]
- 0:-50.293554212986656
- 1:66.18907671167841
4406: [-50.293549692841204, 66.18934872194218]
- 0:-50.293549692841204
- 1:66.18934872194218
4407: [-50.294214183697086, 66.18934874537763]
- 0:-50.294214183697086
- 1:66.18934874537763
4408: [-50.29420521765552, 66.18962071010579]
- 0:-50.29420521765552
- 1:66.18962071010579
4409: [-50.29487421159814, 66.1896251886114]
- 0:-50.29487421159814
- 1:66.1896251886114
4410: [-50.29486520728846, 66.18989274106254]
- 0:-50.29486520728846
- 1:66.18989274106254
4411: [-50.29552960848805, 66.18989723533818]
- 0:-50.29552960848805
- 1:66.18989723533818
4412: [-50.295525209357876, 66.19016476890357]
- 0:-50.295525209357876
- 1:66.19016476890357
4413: [-50.29618944804551, 66.19016920803591]
- 0:-50.29618944804551
- 1:66.19016920803591
4414: [-50.2961806027891, 66.1904366961289]
- 0:-50.2961806027891
- 1:66.1904366961289
4415: [-50.296845016021805, 66.19044118350942]
- 0:-50.296845016021805
- 1:66.19044118350942
4416: [-50.296831644405955, 66.19097627159603]
- 0:-50.296831644405955
- 1:66.19097627159603
4417: [-50.29749607005958, 66.1909807556044]
- 0:-50.29749607005958
- 1:66.1909807556044
4418: [-50.29749169012311, 66.1912482904811]
- 0:-50.29749169012311
- 1:66.1912482904811
4419: [-50.29815612179263, 66.19125277102947]
- 0:-50.29815612179263
- 1:66.19125277102947
4420: [-50.298147149227674, 66.1915203255984]
- 0:-50.298147149227674
- 1:66.1915203255984
4421: [-50.299480454720644, 66.19152920522382]
- 0:-50.299480454720644
- 1:66.19152920522382
4422: [-50.299475947689544, 66.19179680594883]
- 0:-50.299475947689544
- 1:66.19179680594883
4423: [-50.300140222460456, 66.1918012243767]
- 0:-50.300140222460456
- 1:66.1918012243767
4424: [-50.30012691476171, 66.19233631601963]
- 0:-50.30012691476171
- 1:66.19233631601963
4425: [-50.30145582584581, 66.1923452459658]
- 0:-50.30145582584581
- 1:66.1923452459658
4426: [-50.30146455209027, 66.19207322574579]
- 0:-50.30146455209027
- 1:66.19207322574579
4427: [-50.30212900053979, 66.19207768534673]
- 0:-50.30212900053979
- 1:66.19207768534673
4428: [-50.30214682283227, 66.19153816163856]
- 0:-50.30214682283227
- 1:66.19153816163856
4429: [-50.30081356660317, 66.19153372307451]
- 0:-50.30081356660317
- 1:66.19153372307451
4430: [-50.30082696193083, 66.19099415519379]
- 0:-50.30082696193083
- 1:66.19099415519379
4431: [-50.30149598398775, 66.190998598543]
- 0:-50.30149598398775
- 1:66.190998598543
4432: [-50.30150032541052, 66.19073106357581]
- 0:-50.30150032541052
- 1:66.19073106357581
4433: [-50.3001670390277, 66.19072208891086]
- 0:-50.3001670390277
- 1:66.19072208891086
4434: [-50.30017584584676, 66.1904546000254]
- 0:-50.30017584584676
- 1:66.1904546000254
4435: [-50.29951143476335, 66.19045013030875]
- 0:-50.29951143476335
- 1:66.19045013030875
4436: [-50.29952506975311, 66.18991502933744]
- 0:-50.29952506975311
- 1:66.18991502933744
4437: [-50.29819612570888, 66.1899061447354]
- 0:-50.29819612570888
- 1:66.1899061447354
4438: [-50.298200645502355, 66.1896385461102]
- 0:-50.298200645502355
- 1:66.1896385461102
4439: [-50.29687175778646, 66.18963406019192]
- 0:-50.29687175778646
- 1:66.18963406019192
4440: [-50.296876098999434, 66.18936211441829]
- 0:-50.296876098999434
- 1:66.18936211441829
4441: [-50.29621188011628, 66.18935767904766]
- 0:-50.29621188011628
- 1:66.18935767904766
4442: [-50.29622070295952, 66.18909007530634]
- 0:-50.29622070295952
- 1:66.18909007530634
4443: [-50.295551891427706, 66.18908565575644]
- 0:-50.295551891427706
- 1:66.18908565575644
4444: [-50.29556971833017, 66.18855050097203]
- 0:-50.29556971833017
- 1:66.18855050097203
4445: [-50.294236403606874, 66.18854164571077]
- 0:-50.294236403606874
- 1:66.18854164571077
4446: [-50.294245414066545, 66.18827409475625]
- 0:-50.294245414066545
- 1:66.18827409475625
4447: [-50.29357645218363, 66.18826961309614]
- 0:-50.29357645218363
- 1:66.18826961309614
4448: [-50.29358546902207, 66.1880020625098]
- 0:-50.29358546902207
- 1:66.1880020625098
4449: [-50.29225222198168, 66.187997598913]
- 0:-50.29225222198168
- 1:66.187997598913
4450: [-50.292274455107766, 66.18718609158262]
- 0:-50.292274455107766
- 1:66.18718609158262
4451: [-50.29161001420656, 66.18718605814202]
- 0:-50.29161001420656
- 1:66.18718605814202
4452: [-50.291619005852084, 66.18691409633806]
- 0:-50.291619005852084
- 1:66.18691409633806
4453: [-50.29428115723265, 66.18692744061858]
- 0:-50.29428115723265
- 1:66.18692744061858
4454: [-50.29426763347372, 66.18746699848259]
- 0:-50.29426763347372
- 1:66.18746699848259
4455: [-50.29626534081689, 66.18747586539457]
- 0:-50.29626534081689
- 1:66.18747586539457
4456: [-50.2962698348077, 66.18720385688648]
- 0:-50.2962698348077
- 1:66.18720385688648
4457: [-50.29760310449771, 66.18721280687801]
- 0:-50.29760310449771
- 1:66.18721280687801
4458: [-50.297589645372454, 66.1877523660609]
- 0:-50.297589645372454
- 1:66.1877523660609
4459: [-50.29692086706452, 66.18774795402129]
- 0:-50.29692086706452
- 1:66.18774795402129
4460: [-50.296898556371154, 66.18855500039861]
- 0:-50.296898556371154
- 1:66.18855500039861
4461: [-50.29756292407666, 66.1885594836895]
- 0:-50.29756292407666
- 1:66.1885594836895
4462: [-50.29754956573218, 66.18909456797853]
- 0:-50.29754956573218
- 1:66.18909456797853
4463: [-50.29821394585641, 66.18909904789741]
- 0:-50.29821394585641
- 1:66.18909904789741
4464: [-50.29820947135009, 66.18937105860452]
- 0:-50.29820947135009
- 1:66.18937105860452
4465: [-50.30020715980735, 66.18937992856586]
- 0:-50.30020715980735
- 1:66.18937992856586
4466: [-50.30019820688613, 66.18964748142588]
- 0:-50.30019820688613
- 1:66.18964748142588
4467: [-50.30153154216577, 66.1896519776825]
- 0:-50.30153154216577
- 1:66.1896519776825
4468: [-50.30150936621736, 66.19045903164863]
- 0:-50.30150936621736
- 1:66.19045903164863
4469: [-50.30217377602982, 66.19046349077013]
- 0:-50.30217377602982
- 1:66.19046349077013
4470: [-50.30215147273203, 66.19127061262282]
- 0:-50.30215147273203
- 1:66.19127061262282
4471: [-50.302820185580494, 66.19127506236676]
- 0:-50.302820185580494
- 1:66.19127506236676
4472: [-50.30279790138192, 66.19208218700734]
- 0:-50.30279790138192
- 1:66.19208218700734
4473: [-50.30412689642442, 66.19208661074431]
- 0:-50.30412689642442
- 1:66.19208661074431
4474: [-50.3041133970089, 66.19262612996998]
- 0:-50.3041133970089
- 1:66.19262612996998
4475: [-50.30278019212583, 66.19261723422078]
- 0:-50.30278019212583
- 1:66.19261723422078
4476: [-50.30277576317472, 66.192889249093]
- 0:-50.30277576317472
- 1:66.192889249093
4477: [-50.302106696546986, 66.19288481229337]
- 0:-50.302106696546986
- 1:66.19288481229337
4478: [-50.302084538550176, 66.1936918766853]
- 0:-50.302084538550176
- 1:66.1936918766853
4479: [-50.30274887891463, 66.1936963983424]
- 0:-50.30274887891463
- 1:66.1936963983424
4480: [-50.302735499546614, 66.19423585557448]
- 0:-50.302735499546614
- 1:66.19423585557448
4481: [-50.30406873592654, 66.19424033955035]
- 0:-50.30406873592654
- 1:66.19424033955035
4482: [-50.304055404600994, 66.1947799149932]
- 0:-50.304055404600994
- 1:66.1947799149932
4483: [-50.30272209626391, 66.19477101797906]
- 0:-50.30272209626391
- 1:66.19477101797906
4484: [-50.302713214001315, 66.19504298955479]
- 0:-50.302713214001315
- 1:66.19504298955479
4485: [-50.30338197109156, 66.19504302411984]
- 0:-50.30338197109156
- 1:66.19504302411984
4486: [-50.303373095316985, 66.19531499606789]
- 0:-50.303373095316985
- 1:66.19531499606789
4487: [-50.30137544894103, 66.19530609550355]
- 0:-50.30137544894103
- 1:66.19530609550355
4488: [-50.30136650768916, 66.19557365472424]
- 0:-50.30136650768916
- 1:66.19557365472424
4489: [-50.30003337143105, 66.1955691932927]
- 0:-50.30003337143105
- 1:66.1955691932927
4490: [-50.30004211135011, 66.19529716981214]
- 0:-50.30004211135011
- 1:66.19529716981214
4491: [-50.29870898617297, 66.19529269436623]
- 0:-50.29870898617297
- 1:66.19529269436623
4492: [-50.298704472566726, 66.19556029897245]
- 0:-50.298704472566726
- 1:66.19556029897245
4493: [-50.2980356534784, 66.19555582661324]
- 0:-50.2980356534784
- 1:66.19555582661324
4494: [-50.29802235165198, 66.196095338448]
- 0:-50.29802235165198
- 1:66.196095338448
4495: [-50.29935556199656, 66.1961042341919]
- 0:-50.29935556199656
- 1:66.1961042341919
4496: [-50.29935987732819, 66.19583228129522]
- 0:-50.29935987732819
- 1:66.19583228129522
4497: [-50.30002884843964, 66.19583668152822]
- 0:-50.30002884843964
- 1:66.19583668152822
4498: [-50.30001083923791, 66.19637627889429]
- 0:-50.30001083923791
- 1:66.19637627889429
4499: [-50.29801327706629, 66.19636737594303]
- 0:-50.29801327706629
- 1:66.19636737594303
4500: [-50.297999929746, 66.1969024767107]
- 0:-50.297999929746
- 1:66.1969024767107
4501: [-50.29866432771466, 66.19690690372848]
- 0:-50.29866432771466
- 1:66.19690690372848
4502: [-50.29865996041408, 66.19717444492612]
- 0:-50.29865996041408
- 1:66.19717444492612
4503: [-50.30398847188744, 66.19720116261831]
- 0:-50.30398847188744
- 1:66.19720116261831
4504: [-50.30399305651454, 66.1969291947132]
- 0:-50.30399305651454
- 1:66.1969291947132
4505: [-50.30532632019847, 66.19693814395613]
- 0:-50.30532632019847
- 1:66.19693814395613
4506: [-50.30531724856838, 66.19720565370602]
- 0:-50.30531724856838
- 1:66.19720565370602
4507: [-50.30598627051477, 66.19721013911743]
- 0:-50.30598627051477
- 1:66.19721013911743
4508: [-50.305972762208654, 66.19774525678045]
- 0:-50.305972762208654
- 1:66.19774525678045
4509: [-50.30663717439835, 66.19774964164951]
- 0:-50.30663717439835
- 1:66.19774964164951
4510: [-50.30661500364945, 66.19855678806036]
- 0:-50.30661500364945
- 1:66.19855678806036
4511: [-50.30861257853259, 66.19856573670855]
- 0:-50.30861257853259
- 1:66.19856573670855
4512: [-50.308608039537305, 66.19883770677633]
- 0:-50.308608039537305
- 1:66.19883770677633
4513: [-50.30927259738024, 66.19883771668668]
- 0:-50.30927259738024
- 1:66.19883771668668
4514: [-50.30926363328962, 66.19910975852247]
- 0:-50.30926363328962
- 1:66.19910975852247
4515: [-50.309928028442044, 66.1991097133242]
- 0:-50.309928028442044
- 1:66.1991097133242
4516: [-50.309914643921125, 66.19964924864402]
- 0:-50.309914643921125
- 1:66.19964924864402
4517: [-50.31058340632375, 66.19965372332385]
- 0:-50.31058340632375
- 1:66.19965372332385
4518: [-50.310588072125995, 66.1993816870956]
- 0:-50.310588072125995
- 1:66.1993816870956
4519: [-50.31125682758111, 66.19938615814122]
- 0:-50.31125682758111
- 1:66.19938615814122
4520: [-50.31127018609245, 66.19884662308952]
- 0:-50.31127018609245
- 1:66.19884662308952
4521: [-50.31193464293488, 66.19885109681343]
- 0:-50.31193464293488
- 1:66.19885109681343
4522: [-50.311943580857715, 66.19857905491733]
- 0:-50.311943580857715
- 1:66.19857905491733
4523: [-50.31260803079793, 66.19858352503049]
- 0:-50.31260803079793
- 1:66.19858352503049
4524: [-50.31263019584788, 66.19777642817749]
- 0:-50.31263019584788
- 1:66.19777642817749
4525: [-50.3132992260568, 66.19778087463006]
- 0:-50.3132992260568
- 1:66.19778087463006
4526: [-50.31330355074766, 66.19750885360243]
- 0:-50.31330355074766
- 1:66.19750885360243
4527: [-50.31397242767479, 66.19751336153558]
- 0:-50.31397242767479
- 1:66.19751336153558
4528: [-50.31397696228457, 66.19724580518674]
- 0:-50.31397696228457
- 1:66.19724580518674
4529: [-50.31531017817664, 66.1972502355009]
- 0:-50.31531017817664
- 1:66.1972502355009
4530: [-50.31531915346564, 66.1969827244514]
- 0:-50.31531915346564
- 1:66.1969827244514
4531: [-50.315983345937106, 66.19698271197929]
- 0:-50.315983345937106
- 1:66.19698271197929
4532: [-50.315992461076085, 66.19671513600755]
- 0:-50.315992461076085
- 1:66.19671513600755
4533: [-50.31998782486566, 66.19673297262182]
- 0:-50.31998782486566
- 1:66.19673297262182
4534: [-50.319978748256055, 66.19700054911586]
- 0:-50.319978748256055
- 1:66.19700054911586
4535: [-50.32464301332528, 66.19702282654244]
- 0:-50.32464301332528
- 1:66.19702282654244
4536: [-50.32465199541548, 66.19675083664983]
- 0:-50.32465199541548
- 1:66.19675083664983
4537: [-50.325980810782646, 66.19675975481209]
- 0:-50.325980810782646
- 1:66.19675975481209
4538: [-50.32597639173413, 66.197027311722]
- 0:-50.32597639173413
- 1:66.197027311722
4539: [-50.3273052183493, 66.19703621592255]
- 0:-50.3273052183493
- 1:66.19703621592255
4540: [-50.32731849328902, 66.19655018156779]
- 0:-50.32731849328902
- 1:66.19655018156779
4541: [-50.327367613443165, 66.1965679742587]
- 0:-50.327367613443165
- 1:66.1965679742587
4542: [-50.327514803996145, 66.19663042483995]
- 0:-50.327514803996145
- 1:66.19663042483995
4543: [-50.327661898912325, 66.19669735318848]
- 0:-50.327661898912325
- 1:66.19669735318848
4544: [-50.32780909459596, 66.19677310696677]
- 0:-50.32780909459596
- 1:66.19677310696677
4545: [-50.32794721406975, 66.19685784383499]
- 0:-50.32794721406975
- 1:66.19685784383499
4546: [-50.328018610185076, 66.19690246678798]
- 0:-50.328018610185076
- 1:66.19690246678798
4547: [-50.32808100342483, 66.19695147825682]
- 0:-50.32808100342483
- 1:66.19695147825682
4548: [-50.328134584726364, 66.19700504667509]
- 0:-50.328134584726364
- 1:66.19700504667509
4549: [-50.328179090682845, 66.19705847406824]
- 0:-50.328179090682845
- 1:66.19705847406824
4550: [-50.32821478463493, 66.19711645843509]
- 0:-50.32821478463493
- 1:66.19711645843509
4551: [-50.32824587896362, 66.19717446325473]
- 0:-50.32824587896362
- 1:66.19717446325473
4552: [-50.32826390413751, 66.19724132804629]
- 0:-50.32826390413751
- 1:66.19724132804629
4553: [-50.32827732960677, 66.19730821330326]
- 0:-50.32827732960677
- 1:66.19730821330326
4554: [-50.327300812127866, 66.19730377323988]
- 0:-50.327300812127866
- 1:66.19730377323988
4555: [-50.32728723122737, 66.19783885748427]
- 0:-50.32728723122737
- 1:66.19783885748427
4556: [-50.32795182062563, 66.19784329777231]
- 0:-50.32795182062563
- 1:66.19784329777231
4557: [-50.32792947131509, 66.19865042697039]
- 0:-50.32792947131509
- 1:66.19865042697039
4558: [-50.32726491255642, 66.19865039926516]
- 0:-50.32726491255642
- 1:66.19865039926516
4559: [-50.327256221189636, 66.19891796519425]
- 0:-50.327256221189636
- 1:66.19891796519425
4560: [-50.32792497526216, 66.19892246399594]
- 0:-50.32792497526216
- 1:66.19892246399594
4561: [-50.32791612164714, 66.19918997864777]
- 0:-50.32791612164714
- 1:66.19918997864777
4562: [-50.32858042796797, 66.19919442929483]
- 0:-50.32858042796797
- 1:66.19919442929483
4563: [-50.32858922924223, 66.19893580534617]
- 0:-50.32858922924223
- 1:66.19893580534617
4564: [-50.32891482093628, 66.19914984679781]
- 0:-50.32891482093628
- 1:66.19914984679781
4565: [-50.32900397608256, 66.19921672593858]
- 0:-50.32900397608256
- 1:66.19921672593858
4566: [-50.32907538449574, 66.19927465238267]
- 0:-50.32907538449574
- 1:66.19927465238267
4567: [-50.32912897230542, 66.19932822089922]
- 0:-50.32912897230542
- 1:66.19932822089922
4568: [-50.329164598688834, 66.19938167592619]
- 0:-50.329164598688834
- 1:66.19938167592619
4569: [-50.329173465147605, 66.1994039596851]
- 0:-50.329173465147605
- 1:66.1994039596851
4570: [-50.3291779503983, 66.19943072840556]
- 0:-50.3291779503983
- 1:66.19943072840556
4571: [-50.32917793153317, 66.19945303963783]
- 0:-50.32917793153317
- 1:66.19945303963783
4572: [-50.32917340854092, 66.19947089338066]
- 0:-50.32917340854092
- 1:66.19947089338066
4573: [-50.329164650610856, 66.19949316695082]
- 0:-50.329164650610856
- 1:66.19949316695082
4574: [-50.329151242233884, 66.19951104816379]
- 0:-50.329151242233884
- 1:66.19951104816379
4575: [-50.329128926126494, 66.19952884006653]
- 0:-50.329128926126494
- 1:66.19952884006653
4576: [-50.32910663232698, 66.1995467487426]
- 0:-50.32910663232698
- 1:66.1995467487426
4577: [-50.32904861044672, 66.19957790249674]
- 0:-50.32904861044672
- 1:66.19957790249674
4578: [-50.32897281762463, 66.19960911113785]
- 0:-50.32897281762463
- 1:66.19960911113785
4579: [-50.32887479991912, 66.19964032996916]
- 0:-50.32887479991912
- 1:66.19964032996916
4580: [-50.328754388606775, 66.1996715072958]
- 0:-50.328754388606775
- 1:66.1996715072958
4581: [-50.32861615593469, 66.19969832652725]
- 0:-50.32861615593469
- 1:66.19969832652725
4582: [-50.32845112582001, 66.19972947228597]
- 0:-50.32845112582001
- 1:66.19972947228597
4583: [-50.32656936339961, 66.19972058804143]
- 0:-50.32656936339961
- 1:66.19972058804143
4584: [-50.326560412978736, 66.20007734844775]
- 0:-50.326560412978736
- 1:66.20007734844775
4585: [-50.32650243354733, 66.20009961023887]
- 0:-50.32650243354733
- 1:66.20009961023887
4586: [-50.32644912647416, 66.20012638124906]
- 0:-50.32644912647416
- 1:66.20012638124906
4587: [-50.326252820039606, 66.2002289730404]
- 0:-50.326252820039606
- 1:66.2002289730404
4588: [-50.32609236668642, 66.20031813839574]
- 0:-50.32609236668642
- 1:66.20031813839574
4589: [-50.325954087913956, 66.20040288101073]
- 0:-50.325954087913956
- 1:66.20040288101073
4590: [-50.32584263410177, 66.20048759345198]
- 0:-50.32584263410177
- 1:66.20048759345198
4591: [-50.325748901367874, 66.20056783851541]
- 0:-50.325748901367874
- 1:66.20056783851541
4592: [-50.32571317100465, 66.20060351077537]
- 0:-50.32571317100465
- 1:66.20060351077537
4593: [-50.32568194433519, 66.200643640665]
- 0:-50.32568194433519
- 1:66.200643640665
4594: [-50.32565526822005, 66.20067933734478]
- 0:-50.32565526822005
- 1:66.20067933734478
4595: [-50.325633023776575, 66.2007149620269]
- 0:-50.325633023776575
- 1:66.2007149620269
4596: [-50.32561968741401, 66.20075067627232]
- 0:-50.32561968741401
- 1:66.20075067627232
4597: [-50.32561078276969, 66.20078631852539]
- 0:-50.32561078276969
- 1:66.20078631852539
4598: [-50.325606188721956, 66.20083537440468]
- 0:-50.325606188721956
- 1:66.20083537440468
4599: [-50.32561524956806, 66.20088443437703]
- 0:-50.32561524956806
- 1:66.20088443437703
4600: [-50.325628549044765, 66.20094237834648]
- 0:-50.325628549044765
- 1:66.20094237834648
4601: [-50.32565085338401, 66.2009959338956]
- 0:-50.32565085338401
- 1:66.2009959338956
4602: [-50.325681996879155, 66.20105835309181]
- 0:-50.325681996879155
- 1:66.20105835309181
4603: [-50.325722244838204, 66.20112520958652]
- 0:-50.325722244838204
- 1:66.20112520958652
4604: [-50.325771232628476, 66.201192103993]
- 0:-50.325771232628476
- 1:66.201192103993
4605: [-50.32583361054469, 66.20126342881191]
- 0:-50.32583361054469
- 1:66.20126342881191
4606: [-50.32591390498219, 66.20134375844538]
- 0:-50.32591390498219
- 1:66.20134375844538
4607: [-50.32600306358312, 66.2014239440369]
- 0:-50.32600306358312
- 1:66.2014239440369
4608: [-50.32611008925611, 66.20150872152406]
- 0:-50.32611008925611
- 1:66.20150872152406
4609: [-50.32623053001702, 66.20158892167343]
- 0:-50.32623053001702
- 1:66.20158892167343
4610: [-50.32635987988792, 66.20166921124803]
- 0:-50.32635987988792
- 1:66.20166921124803
4611: [-50.3264935626436, 66.20174060294013]
- 0:-50.3264935626436
- 1:66.20174060294013
4612: [-50.3266362785298, 66.20181190209637]
- 0:-50.3266362785298
- 1:66.20181190209637
4613: [-50.32678349585309, 66.20187435496602]
- 0:-50.32678349585309
- 1:66.20187435496602
4614: [-50.32660963165713, 66.20187432345327]
- 0:-50.32660963165713
- 1:66.20187432345327
4615: [-50.32699744891741, 66.20197692290701]
- 0:-50.32699744891741
- 1:66.20197692290701
4616: [-50.327166964929056, 66.20202146691832]
- 0:-50.327166964929056
- 1:66.20202146691832
4617: [-50.32732732656803, 66.20205716063685]
- 0:-50.32732732656803
- 1:66.20205716063685
4618: [-50.32748340296279, 66.20209286108579]
- 0:-50.32748340296279
- 1:66.20209286108579
4619: [-50.327630521109675, 66.2021240590424]
- 0:-50.327630521109675
- 1:66.2021240590424
4620: [-50.32777790445104, 66.20215083045906]
- 0:-50.32777790445104
- 1:66.20215083045906
4621: [-50.32792490063677, 66.2021730855346]
- 0:-50.32792490063677
- 1:66.2021730855346
4622: [-50.328058675025005, 66.20219096189057]
- 0:-50.328058675025005
- 1:66.20219096189057
4623: [-50.32820148212621, 66.20220874557661]
- 0:-50.32820148212621
- 1:66.20220874557661
4624: [-50.328348597357426, 66.20222663892208]
- 0:-50.328348597357426
- 1:66.20222663892208
4625: [-50.32850024082959, 66.2022399819802]
- 0:-50.32850024082959
- 1:66.2022399819802
4626: [-50.32850470287956, 66.20216867936348]
- 0:-50.32850470287956
- 1:66.20216867936348
4627: [-50.32872311802704, 66.20216420985979]
- 0:-50.32872311802704
- 1:66.20216420985979
4628: [-50.328946083369125, 66.20215530662045]
- 0:-50.328946083369125
- 1:66.20215530662045
4629: [-50.329169002787324, 66.2021552938876]
- 0:-50.329169002787324
- 1:66.2021552938876
4630: [-50.32916907187421, 66.20213739530314]
- 0:-50.32916907187421
- 1:66.20213739530314
4631: [-50.32937414130518, 66.20211960368329]
- 0:-50.32937414130518
- 1:66.20211960368329
4632: [-50.32957025151689, 66.20209730955995]
- 0:-50.32957025151689
- 1:66.20209730955995
4633: [-50.329753116837495, 66.2020705199819]
- 0:-50.329753116837495
- 1:66.2020705199819
4634: [-50.329927045169356, 66.20203934477375]
- 0:-50.329927045169356
- 1:66.20203934477375
4635: [-50.33007429225657, 66.20200813513803]
- 0:-50.33007429225657
- 1:66.20200813513803
4636: [-50.330234851935494, 66.20196352185158]
- 0:-50.330234851935494
- 1:66.20196352185158
4637: [-50.3303865249418, 66.20191893591577]
- 0:-50.3303865249418
- 1:66.20191893591577
4638: [-50.33075641982471, 66.2018074855499]
- 0:-50.33075641982471
- 1:66.2018074855499
4639: [-50.33163494503855, 66.20154878954375]
- 0:-50.33163494503855
- 1:66.20154878954375
4640: [-50.33195157035935, 66.20145521822008]
- 0:-50.33195157035935
- 1:66.20145521822008
4641: [-50.332290390983104, 66.20134821476006]
- 0:-50.332290390983104
- 1:66.20134821476006
4642: [-50.33243769830777, 66.20129910385747]
- 0:-50.33243769830777
- 1:66.20129910385747
4643: [-50.33258025836297, 66.2012500785318]
- 0:-50.33258025836297
- 1:66.2012500785318
4644: [-50.33272291333483, 66.20119657504199]
- 0:-50.33272291333483
- 1:66.20119657504199
4645: [-50.33286111363466, 66.20114302687378]
- 0:-50.33286111363466
- 1:66.20114302687378
4646: [-50.33298599581935, 66.20108957855561]
- 0:-50.33298599581935
- 1:66.20108957855561
4647: [-50.3331019693451, 66.20103604109076]
- 0:-50.3331019693451
- 1:66.20103604109076
4648: [-50.3332090566217, 66.20098253128052]
- 0:-50.3332090566217
- 1:66.20098253128052
4649: [-50.33331154311267, 66.20092904201945]
- 0:-50.33331154311267
- 1:66.20092904201945
4650: [-50.33340068939412, 66.2008755359462]
- 0:-50.33340068939412
- 1:66.2008755359462
4651: [-50.33348538128087, 66.20082198531723]
- 0:-50.33348538128087
- 1:66.20082198531723
4652: [-50.33353015592829, 66.20078633461736]
- 0:-50.33353015592829
- 1:66.20078633461736
4653: [-50.33357025678456, 66.20074617490904]
- 0:-50.33357025678456
- 1:66.20074617490904
4654: [-50.333605852505706, 66.20070155783498]
- 0:-50.333605852505706
- 1:66.20070155783498
4655: [-50.33364156576797, 66.20065257953341]
- 0:-50.33364156576797
- 1:66.20065257953341
4656: [-50.33369505154681, 66.20054550245777]
- 0:-50.33369505154681
- 1:66.20054550245777
4657: [-50.33377975299592, 66.20034937471881]
- 0:-50.33377975299592
- 1:66.20034937471881
4658: [-50.33381085802149, 66.20027798897819]
- 0:-50.33381085802149
- 1:66.20027798897819
4659: [-50.33385123675566, 66.20021109157373]
- 0:-50.33385123675566
- 1:66.20021109157373
4660: [-50.3338957100666, 66.2001531430079]
- 0:-50.3338957100666
- 1:66.2001531430079
4661: [-50.33392687978402, 66.20012190192281]
- 0:-50.33392687978402
- 1:66.20012190192281
4662: [-50.33395812283365, 66.20009519046015]
- 0:-50.33395812283365
- 1:66.20009519046015
4663: [-50.33398941687247, 66.20007289184275]
- 0:-50.33398941687247
- 1:66.20007289184275
4664: [-50.334029501102705, 66.20005504339758]
- 0:-50.334029501102705
- 1:66.20005504339758
4665: [-50.33406949004917, 66.20004167293104]
- 0:-50.33406949004917
- 1:66.20004167293104
4666: [-50.33411407916206, 66.20002828179038]
- 0:-50.33411407916206
- 1:66.20002828179038
4667: [-50.3341588879559, 66.20001935511927]
- 0:-50.3341588879559
- 1:66.20001935511927
4668: [-50.334212172032224, 66.20001489210262]
- 0:-50.334212172032224
- 1:66.20001489210262
4669: [-50.334256790366354, 66.2000149213772]
- 0:-50.334256790366354
- 1:66.2000149213772
4670: [-50.334310294161966, 66.2000149228036]
- 0:-50.334310294161966
- 1:66.2000149228036
4671: [-50.334435292437135, 66.20001933439094]
- 0:-50.334435292437135
- 1:66.20001933439094
4672: [-50.33457343980738, 66.20003271844776]
- 0:-50.33457343980738
- 1:66.20003271844776
4673: [-50.33472514648584, 66.20005058343429]
- 0:-50.33472514648584
- 1:66.20005058343429
4674: [-50.334881189785136, 66.20007285390768]
- 0:-50.334881189785136
- 1:66.20007285390768
4675: [-50.335028303960996, 66.20010404291853]
- 0:-50.335028303960996
- 1:66.20010404291853
4676: [-50.33515759622096, 66.20013087469628]
- 0:-50.33515759622096
- 1:66.20013087469628
4677: [-50.335264692674734, 66.20016201378641]
- 0:-50.335264692674734
- 1:66.20016201378641
4678: [-50.335309246004954, 66.20017994115875]
- 0:-50.335309246004954
- 1:66.20017994115875
4679: [-50.33534922806744, 66.20020218530206]
- 0:-50.33534922806744
- 1:66.20020218530206
4680: [-50.33538058834769, 66.20022003098103]
- 0:-50.33538058834769
- 1:66.20022003098103
4681: [-50.33540285075334, 66.20024674378067]
- 0:-50.33540285075334
- 1:66.20024674378067
4682: [-50.3354252818562, 66.2002735082129]
- 0:-50.3354252818562
- 1:66.2002735082129
4683: [-50.33543405856551, 66.20030026963336]
- 0:-50.33543405856551
- 1:66.20030026963336
4684: [-50.33543845498189, 66.20033151625583]
- 0:-50.33543845498189
- 1:66.20033151625583
4685: [-50.33543861738413, 66.20036718294025]
- 0:-50.33543861738413
- 1:66.20036718294025
4686: [-50.33542078243599, 66.2004340560219]
- 0:-50.33542078243599
- 1:66.2004340560219
4687: [-50.335380532178064, 66.2005098965031]
- 0:-50.335380532178064
- 1:66.2005098965031
4688: [-50.3353315936326, 66.2005901126153]
- 0:-50.3353315936326
- 1:66.2005901126153
4689: [-50.335166543665615, 66.20083089541406]
- 0:-50.335166543665615
- 1:66.20083089541406
4690: [-50.33512638722607, 66.20090225791706]
- 0:-50.33512638722607
- 1:66.20090225791706
4691: [-50.33509516017536, 66.20096470166447]
- 0:-50.33509516017536
- 1:66.20096470166447
4692: [-50.3350773752974, 66.20103598771489]
- 0:-50.3350773752974
- 1:66.20103598771489
4693: [-50.335072827761536, 66.20109846460561]
- 0:-50.335072827761536
- 1:66.20109846460561
4694: [-50.33507737023234, 66.20112964619511]
- 0:-50.33507737023234
- 1:66.20112964619511
4695: [-50.33508631557373, 66.20115645936357]
- 0:-50.33508631557373
- 1:66.20115645936357
4696: [-50.335099692665366, 66.20118320020306]
- 0:-50.335099692665366
- 1:66.20118320020306
4697: [-50.335117450281565, 66.20120545584138]
- 0:-50.335117450281565
- 1:66.20120545584138
4698: [-50.33518002008928, 66.2012768277782]
- 0:-50.33518002008928
- 1:66.2012768277782
4699: [-50.33524680205756, 66.20134366286186]
- 0:-50.33524680205756
- 1:66.20134366286186
4700: [-50.33531370173751, 66.20140613668877]
- 0:-50.33531370173751
- 1:66.20140613668877
4701: [-50.33538498221027, 66.20146412528032]
- 0:-50.33538498221027
- 1:66.20146412528032
4702: [-50.335460738467745, 66.20151315060725]
- 0:-50.335460738467745
- 1:66.20151315060725
4703: [-50.33553666365042, 66.20156222753299]
- 0:-50.33553666365042
- 1:66.20156222753299
4704: [-50.33561689588545, 66.20160228954222]
- 0:-50.33561689588545
- 1:66.20160228954222
4705: [-50.33569724567454, 66.20163799026255]
- 0:-50.33569724567454
- 1:66.20163799026255
4706: [-50.33577287013691, 66.20166476912463]
- 0:-50.33577287013691
- 1:66.20166476912463
4707: [-50.33586220121214, 66.20169596379375]
- 0:-50.33586220121214
- 1:66.20169596379375
4708: [-50.33595576661782, 66.2017227383057]
- 0:-50.33595576661782
- 1:66.2017227383057
4709: [-50.33605838685298, 66.20174953643128]
- 0:-50.33605838685298
- 1:66.20174953643128
4710: [-50.33616536531257, 66.20177173245087]
- 0:-50.33616536531257
- 1:66.20177173245087
4711: [-50.33627682048496, 66.20179408956172]
- 0:-50.33627682048496
- 1:66.20179408956172
4712: [-50.33639270764228, 66.20181637419978]
- 0:-50.33639270764228
- 1:66.20181637419978
4713: [-50.3365131439926, 66.20183422510287]
- 0:-50.3365131439926
- 1:66.20183422510287
4714: [-50.33663796081873, 66.20184759062435]
- 0:-50.33663796081873
- 1:66.20184759062435
4715: [-50.336758492213335, 66.20186096326862]
- 0:-50.336758492213335
- 1:66.20186096326862
4716: [-50.33688325771219, 66.20186991566526]
- 0:-50.33688325771219
- 1:66.20186991566526
4717: [-50.33700371536656, 66.2018787584165]
- 0:-50.33700371536656
- 1:66.2018787584165
4718: [-50.33712397522114, 66.20188325331354]
- 0:-50.33712397522114
- 1:66.20188325331354
4719: [-50.33723549536442, 66.20188771098817]
- 0:-50.33723549536442
- 1:66.20188771098817
4720: [-50.337347110222396, 66.20188769053546]
- 0:-50.337347110222396
- 1:66.20188769053546
4721: [-50.33745407295712, 66.20188327788276]
- 0:-50.33745407295712
- 1:66.20188327788276
4722: [-50.33763235782636, 66.20186991813307]
- 0:-50.33763235782636
- 1:66.20186991813307
4723: [-50.337801902766216, 66.20185652106173]
- 0:-50.337801902766216
- 1:66.20185652106173
4724: [-50.337962435736586, 66.20183420930756]
- 0:-50.337962435736586
- 1:66.20183420930756
4725: [-50.338109481951875, 66.20181194625512]
- 0:-50.338109481951875
- 1:66.20181194625512
4726: [-50.338238733565944, 66.20178962247267]
- 0:-50.338238733565944
- 1:66.20178962247267
4727: [-50.33834580161301, 66.20175841955167]
- 0:-50.33834580161301
- 1:66.20175841955167
4728: [-50.338439434760424, 66.2017316783657]
- 0:-50.338439434760424
- 1:66.2017316783657
4729: [-50.33851531616655, 66.20169598568513]
- 0:-50.33851531616655
- 1:66.20169598568513
4730: [-50.338560042700784, 66.20166922394465]
- 0:-50.338560042700784
- 1:66.20166922394465
4731: [-50.33860004273684, 66.20163354048034]
- 0:-50.33860004273684
- 1:66.20163354048034
4732: [-50.33863115675642, 66.2015978851444]
- 0:-50.33863115675642
- 1:66.2015978851444
4733: [-50.338707102492144, 66.2015086785423]
- 0:-50.338707102492144
- 1:66.2015086785423
4734: [-50.33875612510207, 66.20145959798246]
- 0:-50.33875612510207
- 1:66.20145959798246
4735: [-50.33879619878768, 66.20142844413371]
- 0:-50.33879619878768
- 1:66.20142844413371
4736: [-50.33884092461386, 66.20140168231711]
- 0:-50.33884092461386
- 1:66.20140168231711
4737: [-50.33889431568518, 66.20137042782714]
- 0:-50.33889431568518
- 1:66.20137042782714
4738: [-50.33894778086083, 66.20134370296803]
- 0:-50.33894778086083
- 1:66.20134370296803
4739: [-50.33901022617881, 66.2013124719039]
- 0:-50.33901022617881
- 1:66.2013124719039
4740: [-50.3390771773131, 66.20128569798925]
- 0:-50.3390771773131
- 1:66.20128569798925
4741: [-50.33922427276706, 66.20123223132545]
- 0:-50.33922427276706
- 1:66.20123223132545
4742: [-50.33939373952846, 66.20117868726187]
- 0:-50.33939373952846
- 1:66.20117868726187
4743: [-50.33959433929847, 66.20112521942433]
- 0:-50.33959433929847
- 1:66.20112521942433
4744: [-50.33980851861593, 66.20106722416433]
- 0:-50.33980851861593
- 1:66.20106722416433
4745: [-50.340410466559604, 66.20092005636499]
- 0:-50.340410466559604
- 1:66.20092005636499
4746: [-50.340588794847065, 66.2008754901217]
- 0:-50.340588794847065
- 1:66.2008754901217
4747: [-50.34073584292168, 66.2008309126233]
- 0:-50.34073584292168
- 1:66.2008309126233
4748: [-50.34090101866393, 66.20077737395809]
- 0:-50.34090101866393
- 1:66.20077737395809
4749: [-50.341039221986165, 66.2007239335342]
- 0:-50.341039221986165
- 1:66.2007239335342
4750: [-50.34109711532485, 66.20069713526549]
- 0:-50.34109711532485
- 1:66.20069713526549
4751: [-50.34115057695054, 66.200670409518]
- 0:-50.34115057695054
- 1:66.200670409518
4752: [-50.341199584489225, 66.20064363952267]
- 0:-50.341199584489225
- 1:66.20064363952267
4753: [-50.34124430662006, 66.20061687691063]
- 0:-50.34124430662006
- 1:66.20061687691063
4754: [-50.341293355819516, 66.2005812160082]
- 0:-50.341293355819516
- 1:66.2005812160082
4755: [-50.34133789870634, 66.20054109800635]
- 0:-50.34133789870634
- 1:66.20054109800635
4756: [-50.341378208398126, 66.20050540026068]
- 0:-50.341378208398126
- 1:66.20050540026068
4757: [-50.34141824485603, 66.20046082515898]
- 0:-50.34141824485603
- 1:66.20046082515898
4758: [-50.341444993980495, 66.20042064703195]
- 0:-50.341444993980495
- 1:66.20042064703195
4759: [-50.34147169078876, 66.20037605604561]
- 0:-50.34147169078876
- 1:66.20037605604561
4760: [-50.341494050004314, 66.20032705961123]
- 0:-50.341494050004314
- 1:66.20032705961123
4761: [-50.341511786558655, 66.20027796734063]
- 0:-50.341511786558655
- 1:66.20027796734063
4762: [-50.34153863675559, 66.2001753847845]
- 0:-50.34153863675559
- 1:66.2001753847845
4763: [-50.3415475368565, 66.20005950361866]
- 0:-50.3415475368565
- 1:66.20005950361866
4764: [-50.341547570943824, 66.19993464322326]
- 0:-50.341547570943824
- 1:66.19993464322326
4765: [-50.34153415382547, 66.19968497189657]
- 0:-50.34153415382547
- 1:66.19968497189657
4766: [-50.34152972529493, 66.19958237877057]
- 0:-50.34152972529493
- 1:66.19958237877057
4767: [-50.34153412976774, 66.19947534449642]
- 0:-50.34153412976774
- 1:66.19947534449642
4768: [-50.34154294621479, 66.199377245314]
- 0:-50.34154294621479
- 1:66.199377245314
4769: [-50.3415563447884, 66.199323747786]
- 0:-50.3415563447884
- 1:66.199323747786
4770: [-50.341574343343154, 66.19927022933106]
- 0:-50.341574343343154
- 1:66.19927022933106
4771: [-50.341596532906564, 66.19922118145972]
- 0:-50.341596532906564
- 1:66.19922118145972
4772: [-50.34161894330535, 66.19917659805715]
- 0:-50.34161894330535
- 1:66.19917659805715
4773: [-50.34164573272528, 66.1991275292559]
- 0:-50.34164573272528
- 1:66.1991275292559
4774: [-50.341681219109496, 66.19908738807385]
- 0:-50.341681219109496
- 1:66.19908738807385
4775: [-50.341716968048495, 66.19904282052663]
- 0:-50.341716968048495
- 1:66.19904282052663
4776: [-50.3417570542063, 66.19900265839321]
- 0:-50.3417570542063
- 1:66.19900265839321
4777: [-50.341841754553, 66.19892690791617]
- 0:-50.341841754553
- 1:66.19892690791617
4778: [-50.34193539172893, 66.19885554186011]
- 0:-50.34193539172893
- 1:66.19885554186011
4779: [-50.34202902841923, 66.19878417575136]
- 0:-50.34202902841923
- 1:66.19878417575136
4780: [-50.34213171822392, 66.19871283282498]
- 0:-50.34213171822392
- 1:66.19871283282498
4781: [-50.3459799220346, 66.1987306948545]
- 0:-50.3459799220346
- 1:66.1987306948545
4782: [-50.34588178958376, 66.1987976070652]
- 0:-50.34588178958376
- 1:66.1987976070652
4783: [-50.34579697286792, 66.19886441785432]
- 0:-50.34579697286792
- 1:66.19886441785432
4784: [-50.34573909506123, 66.19892683307182]
- 0:-50.34573909506123
- 1:66.19892683307182
4785: [-50.3456989564732, 66.19898489492974]
- 0:-50.3456989564732
- 1:66.19898489492974
4786: [-50.3456856650702, 66.19901160361178]
- 0:-50.3456856650702
- 1:66.19901160361178
4787: [-50.345676512425115, 66.19903836989602]
- 0:-50.345676512425115
- 1:66.19903836989602
4788: [-50.34567665305618, 66.1990606160155]
- 0:-50.34567665305618
- 1:66.1990606160155
4789: [-50.3456811011409, 66.19908297135731]
- 0:-50.3456811011409
- 1:66.19908297135731
4790: [-50.345689980542346, 66.19910525399375]
- 0:-50.345689980542346
- 1:66.19910525399375
4791: [-50.34570345993467, 66.19912751554347]
- 0:-50.34570345993467
- 1:66.19912751554347
4792: [-50.34572562522241, 66.19914540076422]
- 0:-50.34572562522241
- 1:66.19914540076422
4793: [-50.34574793679675, 66.19916322082854]
- 0:-50.34574793679675
- 1:66.19916322082854
4794: [-50.345801485505035, 66.19918994146478]
- 0:-50.345801485505035
- 1:66.19918994146478
4795: [-50.34587273350368, 66.19922119954398]
- 0:-50.34587273350368
- 1:66.19922119954398
4796: [-50.34595756003395, 66.19924792983451]
- 0:-50.34595756003395
- 1:66.19924792983451
4797: [-50.34606461060341, 66.19927464679144]
- 0:-50.34606461060341
- 1:66.19927464679144
4798: [-50.34618507557429, 66.19930590865091]
- 0:-50.34618507557429
- 1:66.19930590865091
4799: [-50.34632331097588, 66.19933711302981]
- 0:-50.34632331097588
- 1:66.19933711302981
4800: [-50.34648377060998, 66.19936830390793]
- 0:-50.34648377060998
- 1:66.19936830390793
4801: [-50.346684468881435, 66.19940400501592]
- 0:-50.346684468881435
- 1:66.19940400501592
4802: [-50.34681369155687, 66.19942629511779]
- 0:-50.34681369155687
- 1:66.19942629511779
4803: [-50.3469520613556, 66.19944412997631]
- 0:-50.3469520613556
- 1:66.19944412997631
4804: [-50.34710354839517, 66.1994575154965]
- 0:-50.34710354839517
- 1:66.1994575154965
4805: [-50.34726846753758, 66.19946643809146]
- 0:-50.34726846753758
- 1:66.19946643809146
4806: [-50.34742919472871, 66.19947089008029]
- 0:-50.34742919472871
- 1:66.19947089008029
4807: [-50.34760294589314, 66.19947537062549]
- 0:-50.34760294589314
- 1:66.19947537062549
4808: [-50.34825847450733, 66.19947538454873]
- 0:-50.34825847450733
- 1:66.19947538454873
4809: [-50.34852603646928, 66.19947977437688]
- 0:-50.34852603646928
- 1:66.19947977437688
4810: [-50.34866422476753, 66.19948425204024]
- 0:-50.34866422476753
- 1:66.19948425204024
4811: [-50.34879812799343, 66.19948873721097]
- 0:-50.34879812799343
- 1:66.19948873721097
4812: [-50.34891843086384, 66.19949763354741]
- 0:-50.34891843086384
- 1:66.19949763354741
4813: [-50.34902990211739, 66.19951097149468]
- 0:-50.34902990211739
- 1:66.19951097149468
4814: [-50.34922608262299, 66.19952890807512]
- 0:-50.34922608262299
- 1:66.19952890807512
4815: [-50.34922622611448, 66.19955115424925]
- 0:-50.34922622611448
- 1:66.19955115424925
4816: [-50.34939101661284, 66.1995511315896]
- 0:-50.34939101661284
- 1:66.1995511315896
4817: [-50.3496453137162, 66.1995823449602]
- 0:-50.3496453137162
- 1:66.1995823449602
4818: [-50.34989046482071, 66.19961801315536]
- 0:-50.34989046482071
- 1:66.19961801315536
4819: [-50.35012239261867, 66.19964930468824]
- 0:-50.35012239261867
- 1:66.19964930468824
4820: [-50.35034546693925, 66.19968492084783]
- 0:-50.35034546693925
- 1:66.19968492084783
4821: [-50.35056384915516, 66.19972503589683]
- 0:-50.35056384915516
- 1:66.19972503589683
4822: [-50.35076906165061, 66.19976518730255]
- 0:-50.35076906165061
- 1:66.19976518730255
4823: [-50.350965220830275, 66.19980531578355]
- 0:-50.350965220830275
- 1:66.19980531578355
4824: [-50.351148041530415, 66.19984542912167]
- 0:-50.351148041530415
- 1:66.19984542912167
4825: [-50.35132633888394, 66.19989009312486]
- 0:-50.35132633888394
- 1:66.19989009312486
4826: [-50.3514957291281, 66.19993466916429]
- 0:-50.3514957291281
- 1:66.19993466916429
4827: [-50.351651780828334, 66.19997923019352]
- 0:-50.351651780828334
- 1:66.19997923019352
4828: [-50.351799001639804, 66.2000282329703]
- 0:-50.351799001639804
- 1:66.2000282329703
4829: [-50.35194179153508, 66.20007730851441]
- 0:-50.35194179153508
- 1:66.20007730851441
4830: [-50.35207098178989, 66.20013079557071]
- 0:-50.35207098178989
- 1:66.20013079557071
4831: [-50.352191379547826, 66.20017983358568]
- 0:-50.352191379547826
- 1:66.20017983358568
4832: [-50.35230280013128, 66.20023337862922]
- 0:-50.35230280013128
- 1:66.20023337862922
4833: [-50.35244104559612, 66.20030919926016]
- 0:-50.35244104559612
- 1:66.20030919926016
4834: [-50.3525660448135, 66.20038052704254]
- 0:-50.3525660448135
- 1:66.20038052704254
4835: [-50.3526729590058, 66.20045192654517]
- 0:-50.3526729590058
- 1:66.20045192654517
4836: [-50.352766680694366, 66.20052324614221]
- 0:-50.352766680694366
- 1:66.20052324614221
4837: [-50.3527976986864, 66.20054999199812]
- 0:-50.3527976986864
- 1:66.20054999199812
4838: [-50.35282893946743, 66.20058120232805]
- 0:-50.35282893946743
- 1:66.20058120232805
4839: [-50.35285589507965, 66.20061242045172]
- 0:-50.35285589507965
- 1:66.20061242045172
4840: [-50.35287370445336, 66.20064809414387]
- 0:-50.35287370445336
- 1:66.20064809414387
4841: [-50.35289151387424, 66.20068376783875]
- 0:-50.35289151387424
- 1:66.20068376783875
4842: [-50.352904815343294, 66.2007149848543]
- 0:-50.352904815343294
- 1:66.2007149848543
4843: [-50.35291817139641, 66.20079523765695]
- 0:-50.35291817139641
- 1:66.20079523765695
4844: [-50.352913810610026, 66.20087996165947]
- 0:-50.352913810610026
- 1:66.20087996165947
4845: [-50.3528959799843, 66.20097803997825]
- 0:-50.3528959799843
- 1:66.20097803997825
4846: [-50.35286028593389, 66.20108065466513]
- 0:-50.35286028593389
- 1:66.20108065466513
4847: [-50.352780043062886, 66.20129020937549]
- 0:-50.352780043062886
- 1:66.20129020937549
4848: [-50.352748687494106, 66.20137491773015]
- 0:-50.352748687494106
- 1:66.20137491773015
4849: [-50.35272200852863, 66.201464134417]
- 0:-50.35272200852863
- 1:66.201464134417
4850: [-50.352713139011804, 66.20154440192685]
- 0:-50.352713139011804
- 1:66.20154440192685
4851: [-50.3527129705365, 66.20158897336638]
- 0:-50.3527129705365
- 1:66.20158897336638
4852: [-50.352713117007404, 66.20163353126172]
- 0:-50.352713117007404
- 1:66.20163353126172
4853: [-50.35272194894363, 66.20167371230522]
- 0:-50.35272194894363
- 1:66.20167371230522
4854: [-50.35273981292558, 66.20171379905537]
- 0:-50.35273981292558
- 1:66.20171379905537
4855: [-50.35275762291716, 66.20174947292108]
- 0:-50.35275762291716
- 1:66.20174947292108
4856: [-50.352784487433894, 66.20178516926075]
- 0:-50.352784487433894
- 1:66.20178516926075
4857: [-50.35281118332874, 66.20182081398936]
- 0:-50.35281118332874
- 1:66.20182081398936
4858: [-50.352846879734614, 66.20185206829422]
- 0:-50.352846879734614
- 1:66.20185206829422
4859: [-50.35299845304181, 66.20197240986074]
- 0:-50.35299845304181
- 1:66.20197240986074
4860: [-50.35315461199179, 66.20207942610212]
- 0:-50.35315461199179
- 1:66.20207942610212
4861: [-50.3533062096852, 66.20217757260947]
- 0:-50.3533062096852
- 1:66.20217757260947
4862: [-50.35344880723907, 66.20225779786166]
- 0:-50.35344880723907
- 1:66.20225779786166
4863: [-50.35315459340733, 66.2022578019663]
- 0:-50.35315459340733
- 1:66.2022578019663
4864: [-50.353145668379916, 66.20252533677383]
- 0:-50.353145668379916
- 1:66.20252533677383
4865: [-50.35381451218854, 66.2025298147376]
- 0:-50.35381451218854
- 1:66.2025298147376
4866: [-50.35380559354554, 66.20279734991219]
- 0:-50.35380559354554
- 1:66.20279734991219
4867: [-50.35513878417299, 66.20280183866844]
- 0:-50.35513878417299
- 1:66.20280183866844
4868: [-50.35512993275368, 66.2030737872054]
- 0:-50.35512993275368
- 1:66.2030737872054
4869: [-50.35579873373249, 66.20307384175078]
- 0:-50.35579873373249
- 1:66.20307384175078
4870: [-50.35580334757317, 66.20280631393432]
- 0:-50.35580334757317
- 1:66.20280631393432
4871: [-50.356472196136984, 66.20281077775819]
- 0:-50.356472196136984
- 1:66.20281077775819
4872: [-50.35648561935311, 66.20227118524141]
- 0:-50.35648561935311
- 1:66.20227118524141
4873: [-50.35582114625812, 66.20227124334616]
- 0:-50.35582114625812
- 1:66.20227124334616
4874: [-50.35582568308254, 66.20199918670062]
- 0:-50.35582568308254
- 1:66.20199918670062
4875: [-50.35648991181261, 66.20200367176457]
- 0:-50.35648991181261
- 1:66.20200367176457
4876: [-50.35650778898047, 66.20146412463217]
- 0:-50.35650778898047
- 1:66.20146412463217
4877: [-50.35783662575615, 66.20146859222939]
- 0:-50.35783662575615
- 1:66.20146859222939
4878: [-50.35784550562265, 66.20120105794189]
- 0:-50.35784550562265
- 1:66.20120105794189
4879: [-50.3571811284135, 66.20119652857892]
- 0:-50.3571811284135
- 1:66.20119652857892
4880: [-50.35718558312233, 66.20092906777084]
- 0:-50.35718558312233
- 1:66.20092906777084
4881: [-50.357149850155956, 66.20092901720197]
- 0:-50.357149850155956
- 1:66.20092901720197
4882: [-50.35722126822021, 66.20087107478786]
- 0:-50.35722126822021
- 1:66.20087107478786
4883: [-50.35727921842004, 66.20082648710834]
- 0:-50.35727921842004
- 1:66.20082648710834
4884: [-50.35732369711946, 66.20077294269863]
- 0:-50.35732369711946
- 1:66.20077294269863
4885: [-50.35736396764347, 66.20072393587989]
- 0:-50.35736396764347
- 1:66.20072393587989
4886: [-50.35739519820268, 66.20066589923739]
- 0:-50.35739519820268
- 1:66.20066589923739
4887: [-50.35742199718877, 66.20060793572114]
- 0:-50.35742199718877
- 1:66.20060793572114
4888: [-50.35744419593863, 66.20054999372987]
- 0:-50.35744419593863
- 1:66.20054999372987
4889: [-50.35745309208375, 66.20048314666592]
- 0:-50.35745309208375
- 1:66.20048314666592
4890: [-50.35745753432135, 66.20041625596933]
- 0:-50.35745753432135
- 1:66.20041625596933
4891: [-50.35745752268363, 66.20034932164077]
- 0:-50.35745752268363
- 1:66.20034932164077
4892: [-50.35744857103245, 66.20027800393804]
- 0:-50.35744857103245
- 1:66.20027800393804
4893: [-50.35743525705728, 66.2002021645732]
- 0:-50.35743525705728
- 1:66.2002021645732
4894: [-50.35741743456818, 66.20012186871706]
- 0:-50.35741743456818
- 1:66.20012186871706
4895: [-50.35735936485088, 66.19995694466724]
- 0:-50.35735936485088
- 1:66.19995694466724
4896: [-50.357252599146065, 66.19968491511433]
- 0:-50.357252599146065
- 1:66.19968491511433
4897: [-50.35718102399704, 66.19951992547469]
- 0:-50.35718102399704
- 1:66.19951992547469
4898: [-50.35711427663336, 66.19938169020486]
- 0:-50.35711427663336
- 1:66.19938169020486
4899: [-50.35704302507686, 66.19926130981031]
- 0:-50.35704302507686
- 1:66.19926130981031
4900: [-50.356967137404716, 66.1991498417951]
- 0:-50.356967137404716
- 1:66.1991498417951
4901: [-50.35688242017437, 66.19904281606478]
- 0:-50.35688242017437
- 1:66.19904281606478
4902: [-50.35678869030441, 66.19894918861348]
- 0:-50.35678869030441
- 1:66.19894918861348
4903: [-50.356681677287554, 66.19885995971663]
- 0:-50.356681677287554
- 1:66.19885995971663
4904: [-50.3565701968128, 66.19877969469997]
- 0:-50.3565701968128
- 1:66.19877969469997
4905: [-50.356489867927685, 66.19873511681953]
- 0:-50.356489867927685
- 1:66.19873511681953
4906: [-50.35640080077447, 66.19869050313214]
- 0:-50.35640080077447
- 1:66.19869050313214
4907: [-50.35628936460655, 66.19864596965729]
- 0:-50.35628936460655
- 1:66.19864596965729
4908: [-50.35616442179505, 66.19860137017986]
- 0:-50.35616442179505
- 1:66.19860137017986
4909: [-50.35604404202306, 66.19856563995504]
- 0:-50.35604404202306
- 1:66.19856563995504
4910: [-50.35591029219358, 66.19852559922404]
- 0:-50.35591029219358
- 1:66.19852559922404
4911: [-50.355455515751366, 66.19839624272433]
- 0:-50.355455515751366
- 1:66.19839624272433
4912: [-50.35529937594999, 66.19835616472037]
- 0:-50.35529937594999
- 1:66.19835616472037
4913: [-50.355161097692594, 66.19831154990867]
- 0:-50.355161097692594
- 1:66.19831154990867
4914: [-50.35504075779243, 66.19826692795145]
- 0:-50.35504075779243
- 1:66.19826692795145
4915: [-50.354938264302355, 66.1982267768929]
- 0:-50.354938264302355
- 1:66.1982267768929
4916: [-50.354849017345984, 66.19819111819889]
- 0:-50.354849017345984
- 1:66.19819111819889
4917: [-50.35477320062638, 66.19815099591224]
- 0:-50.35477320062638
- 1:66.19815099591224
4918: [-50.35470626870615, 66.19811084430538]
- 0:-50.35470626870615
- 1:66.19811084430538
4919: [-50.35464392000672, 66.19805736761212]
- 0:-50.35464392000672
- 1:66.19805736761212
4920: [-50.35459474092548, 66.19800385376774]
- 0:-50.35459474092548
- 1:66.19800385376774
4921: [-50.354594829850136, 66.19795475333987]
- 0:-50.354594829850136
- 1:66.19795475333987
4922: [-50.35592817859184, 66.19796374835384]
- 0:-50.35592817859184
- 1:66.19796374835384
4923: [-50.35592356484719, 66.19823127110939]
- 0:-50.35592356484719
- 1:66.19823127110939
4924: [-50.3585857523774, 66.19824464563676]
- 0:-50.3585857523774
- 1:66.19824464563676
4925: [-50.358594716543514, 66.19797263663595]
- 0:-50.358594716543514
- 1:66.19797263663595
4926: [-50.35659705666224, 66.19796814560925]
- 0:-50.35659705666224
- 1:66.19796814560925
4927: [-50.35660144068462, 66.19769615864375]
- 0:-50.35660144068462
- 1:66.19769615864375
4928: [-50.355268182656346, 66.19769170046516]
- 0:-50.355268182656346
- 1:66.19769170046516
4929: [-50.355277087572, 66.1974241704519]
- 0:-50.355277087572
- 1:66.1974241704519
4930: [-50.35594161390082, 66.19742416619117]
- 0:-50.35594161390082
- 1:66.19742416619117
4931: [-50.355950343674785, 66.19715658476862]
- 0:-50.355950343674785
- 1:66.19715658476862
4932: [-50.35794817036522, 66.19716555018002]
- 0:-50.35794817036522
- 1:66.19716555018002
4933: [-50.357952541347274, 66.19689356394866]
- 0:-50.357952541347274
- 1:66.19689356394866
4934: [-50.35995477510181, 66.19690242410918]
- 0:-50.35995477510181
- 1:66.19690242410918
4935: [-50.35995903542618, 66.19663491595183]
- 0:-50.35995903542618
- 1:66.19663491595183
4936: [-50.36528780622357, 66.19665716886854]
- 0:-50.36528780622357
- 1:66.19665716886854
4937: [-50.365296704814, 66.19638516071328]
- 0:-50.365296704814
- 1:66.19638516071328
4938: [-50.367294475828686, 66.19639409354045]
- 0:-50.367294475828686
- 1:66.19639409354045
4939: [-50.367298811748725, 66.1961265200943]
- 0:-50.367298811748725
- 1:66.1961265200943
4940: [-50.367967602989324, 66.19612656034987]
- 0:-50.367967602989324
- 1:66.19612656034987
4941: [-50.36797210116631, 66.19585903871366]
- 0:-50.36797210116631
- 1:66.19585903871366
4942: [-50.36930544113452, 66.19586352955211]
- 0:-50.36930544113452
- 1:66.19586352955211
4943: [-50.369309903981915, 66.19559589130344]
- 0:-50.369309903981915
- 1:66.19559589130344
4944: [-50.37131191534071, 66.19560486813565]
- 0:-50.37131191534071
- 1:66.19560486813565
4945: [-50.37131647065386, 66.19533286877743]
- 0:-50.37131647065386
- 1:66.19533286877743
4946: [-50.37264983691149, 66.19534173666236]
- 0:-50.37264983691149
- 1:66.19534173666236
4947: [-50.37265423301195, 66.19506980264747]
- 0:-50.37265423301195
- 1:66.19506980264747
4948: [-50.3753207308757, 66.1950831480065]
- 0:-50.3753207308757
- 1:66.1950831480065
4949: [-50.37531170418248, 66.19535069166612]
- 0:-50.37531170418248
- 1:66.19535069166612
4950: [-50.3773095676529, 66.1953596327089]
- 0:-50.3773095676529
- 1:66.1953596327089
4951: [-50.37730515932875, 66.19562715465736]
- 0:-50.37730515932875
- 1:66.19562715465736
4952: [-50.37996711921033, 66.19564054048332]
- 0:-50.37996711921033
- 1:66.19564054048332
4953: [-50.37997602013777, 66.1953684663776]
- 0:-50.37997602013777
- 1:66.1953684663776
4954: [-50.38130473985979, 66.19537296850125]
- 0:-50.38130473985979
- 1:66.19537296850125
4955: [-50.381327135031384, 66.19456588045577]
- 0:-50.381327135031384
- 1:66.19456588045577
4956: [-50.38598695846377, 66.19458815088872]
- 0:-50.38598695846377
- 1:66.19458815088872
4957: [-50.385977993846694, 66.19512320862678]
- 0:-50.385977993846694
- 1:66.19512320862678
4958: [-50.38397586174308, 66.19511429800517]
- 0:-50.38397586174308
- 1:66.19511429800517
4959: [-50.38398480491155, 66.19484675350361]
- 0:-50.38398480491155
- 1:66.19484675350361
4960: [-50.38198714073046, 66.19483785392617]
- 0:-50.38198714073046
- 1:66.19483785392617
4961: [-50.381973727379666, 66.19537739825203]
- 0:-50.381973727379666
- 1:66.19537739825203
4962: [-50.38263811540185, 66.19538184687939]
- 0:-50.38263811540185
- 1:66.19538184687939
4963: [-50.38262465614178, 66.19591697969504]
- 0:-50.38262465614178
- 1:66.19591697969504
4964: [-50.38329365575661, 66.19592140248191]
- 0:-50.38329365575661
- 1:66.19592140248191
4965: [-50.38328470600385, 66.1961889480225]
- 0:-50.38328470600385
- 1:66.1961889480225
4966: [-50.38394896630126, 66.19619345502029]
- 0:-50.38394896630126
- 1:66.19619345502029
4967: [-50.38395790964844, 66.19592590939162]
- 0:-50.38395790964844
- 1:66.19592590939162
4968: [-50.38529124853876, 66.1959303469035]
- 0:-50.38529124853876
- 1:66.1959303469035
4969: [-50.38529566682315, 66.19565834592983]
- 0:-50.38529566682315
- 1:66.19565834592983
4970: [-50.386629159329225, 66.19566282069344]
- 0:-50.386629159329225
- 1:66.19566282069344
4971: [-50.38665571800541, 66.19458820794405]
- 0:-50.38665571800541
- 1:66.19458820794405
4972: [-50.38798898814978, 66.194592616364]
- 0:-50.38798898814978
- 1:66.194592616364
4973: [-50.38799360861096, 66.19432508091026]
- 0:-50.38799360861096
- 1:66.19432508091026
4974: [-50.390659993570075, 66.19433403690918]
- 0:-50.390659993570075
- 1:66.19433403690918
4975: [-50.39066441964818, 66.19406644992549]
- 0:-50.39066441964818
- 1:66.19406644992549
4976: [-50.39599308201278, 66.19408878157716]
- 0:-50.39599308201278
- 1:66.19408878157716
4977: [-50.39599754201463, 66.19381671639258]
- 0:-50.39599754201463
- 1:66.19381671639258
4978: [-50.39733095070419, 66.19382119349494]
- 0:-50.39733095070419
- 1:66.19382119349494
4979: [-50.39732205109506, 66.19409321657925]
- 0:-50.39732205109506
- 1:66.19409321657925
4980: [-50.397990788252216, 66.19409321306077]
- 0:-50.397990788252216
- 1:66.19409321306077
4981: [-50.39799531245481, 66.19382567722387]
- 0:-50.39799531245481
- 1:66.19382567722387
4982: [-50.39866410381321, 66.19383008284638]
- 0:-50.39866410381321
- 1:66.19383008284638
4983: [-50.398655156008914, 66.19409769333252]
- 0:-50.398655156008914
- 1:66.19409769333252
4984: [-50.40198604010243, 66.19411105322862]
- 0:-50.40198604010243
- 1:66.19411105322862
4985: [-50.401981723147, 66.19437864126797]
- 0:-50.401981723147
- 1:66.19437864126797
4986: [-50.40464388960959, 66.19439195549391]
- 0:-50.40464388960959
- 1:66.19439195549391
4987: [-50.40463942960578, 66.19465949252374]
- 0:-50.40463942960578
- 1:66.19465949252374
4988: [-50.405968119277546, 66.19466396642551]
- 0:-50.405968119277546
- 1:66.19466396642551
4989: [-50.40595485721659, 66.19520352921316]
- 0:-50.40595485721659
- 1:66.19520352921316
4990: [-50.4066236130941, 66.19520347976415]
- 0:-50.4066236130941
- 1:66.19520347976415
4991: [-50.406619257558106, 66.1954755473876]
- 0:-50.406619257558106
- 1:66.1954755473876
4992: [-50.40728358917598, 66.19547556931761]
- 0:-50.40728358917598
- 1:66.19547556931761
4993: [-50.40727915486706, 66.19574310772056]
- 0:-50.40727915486706
- 1:66.19574310772056
4994: [-50.40927674407409, 66.19575201997404]
- 0:-50.40927674407409
- 1:66.19575201997404
4995: [-50.40924116625586, 66.19709866459797]
- 0:-50.40924116625586
- 1:66.19709866459797
4996: [-50.40791236562008, 66.19709422470541]
- 0:-50.40791236562008
- 1:66.19709422470541
4997: [-50.40790348460829, 66.19736172300786]
- 0:-50.40790348460829
- 1:66.19736172300786
4998: [-50.40723896236147, 66.19736176933625]
- 0:-50.40723896236147
- 1:66.19736176933625
4999: [-50.4072345280727, 66.19762930971214]
- 0:-50.4072345280727
- 1:66.19762930971214
5000: [-50.40656562915254, 66.1976248324899]
- 0:-50.40656562915254
- 1:66.1976248324899
5001: [-50.40656125099112, 66.19789678592568]
- 0:-50.40656125099112
- 1:66.19789678592568
5002: [-50.40589219901419, 66.19789237029335]
- 0:-50.40589219901419
- 1:66.19789237029335
5003: [-50.405887751872626, 66.19815991110437]
- 0:-50.405887751872626
- 1:66.19815991110437
5004: [-50.406552210916544, 66.19816435012451]
- 0:-50.406552210916544
- 1:66.19816435012451
5005: [-50.406543364313926, 66.19854335528476]
- 0:-50.406543364313926
- 1:66.19854335528476
5006: [-50.40652104126969, 66.19860584939003]
- 0:-50.40652104126969
- 1:66.19860584939003
5007: [-50.40651226421993, 66.19867270008875]
- 0:-50.40651226421993
- 1:66.19867270008875
5008: [-50.40650770919806, 66.19873512831138]
- 0:-50.40650770919806
- 1:66.19873512831138
5009: [-50.40651219018941, 66.1988956606243]
- 0:-50.40651219018941
- 1:66.1988956606243
5010: [-50.40650316241025, 66.19897594566413]
- 0:-50.40650316241025
- 1:66.19897594566413
5011: [-50.40648096406918, 66.1990472655947]
- 0:-50.40648096406918
- 1:66.1990472655947
5012: [-50.40646764864487, 66.19907845913463]
- 0:-50.40646764864487
- 1:66.19907845913463
5013: [-50.40644530287548, 66.19910975085214]
- 0:-50.40644530287548
- 1:66.19910975085214
5014: [-50.40639621864788, 66.19916769752079]
- 0:-50.40639621864788
- 1:66.19916769752079
5015: [-50.40632934305528, 66.19922559330158]
- 0:-50.40632934305528
- 1:66.19922559330158
5016: [-50.406244552535405, 66.19928362015479]
- 0:-50.406244552535405
- 1:66.19928362015479
5017: [-50.406142032915824, 66.19934600892368]
- 0:-50.406142032915824
- 1:66.19934600892368
5018: [-50.406044071069694, 66.19939507048137]
- 0:-50.406044071069694
- 1:66.19939507048137
5019: [-50.405928004171535, 66.19945310244923]
- 0:-50.405928004171535
- 1:66.19945310244923
5020: [-50.405535687843646, 66.19963141109521]
- 0:-50.405535687843646
- 1:66.19963141109521
5021: [-50.40540188973978, 66.19969380449554]
- 0:-50.40540188973978
- 1:66.19969380449554
5022: [-50.405281451651376, 66.19975632361343]
- 0:-50.405281451651376
- 1:66.19975632361343
5023: [-50.405183380338556, 66.19980974589747]
- 0:-50.405183380338556
- 1:66.19980974589747
5024: [-50.4051877507475, 66.19950658800602]
- 0:-50.4051877507475
- 1:66.19950658800602
5025: [-50.404523404658335, 66.19950207632357]
- 0:-50.404523404658335
- 1:66.19950207632357
5026: [-50.40454132187954, 66.19869501477301]
- 0:-50.40454132187954
- 1:66.19869501477301
5027: [-50.40320783747393, 66.19869054778188]
- 0:-50.40320783747393
- 1:66.19869054778188
5028: [-50.403194590737456, 66.19944412316805]
- 0:-50.403194590737456
- 1:66.19944412316805
5029: [-50.40304302596423, 66.19941738471866]
- 0:-50.40304302596423
- 1:66.19941738471866
5030: [-50.40288240834286, 66.19939062724387]
- 0:-50.40288240834286
- 1:66.19939062724387
5031: [-50.40271305276573, 66.19936383703124]
- 0:-50.40271305276573
- 1:66.19936383703124
5032: [-50.4025302135329, 66.199337102441]
- 0:-50.4025302135329
- 1:66.199337102441
5033: [-50.40253018206962, 66.19922559627571]
- 0:-50.40253018206962
- 1:66.19922559627571
5034: [-50.40186577903355, 66.19922566539928]
- 0:-50.40186577903355
- 1:66.19922566539928
5035: [-50.40187034898041, 66.1989536457521]
- 0:-50.40187034898041
- 1:66.1989536457521
5036: [-50.401205783087484, 66.19895365986825]
- 0:-50.401205783087484
- 1:66.19895365986825
5037: [-50.40121913626261, 66.19841409018142]
- 0:-50.40121913626261
- 1:66.19841409018142
5038: [-50.401883689234495, 66.19841407592178]
- 0:-50.401883689234495
- 1:66.19841407592178
5039: [-50.40189245945858, 66.19814652572833]
- 0:-50.40189245945858
- 1:66.19814652572833
5040: [-50.402556921221105, 66.19815098592979]
- 0:-50.402556921221105
- 1:66.19815098592979
5041: [-50.40256148465371, 66.19787896736403]
- 0:-50.40256148465371
- 1:66.19787896736403
5042: [-50.403894678461164, 66.19788786752385]
- 0:-50.403894678461164
- 1:66.19788786752385
5043: [-50.40390368205713, 66.19761589111198]
- 0:-50.40390368205713
- 1:66.19761589111198
5044: [-50.404567983494054, 66.19762040579201]
- 0:-50.404567983494054
- 1:66.19762040579201
5045: [-50.40457235860039, 66.19734833606702]
- 0:-50.40457235860039
- 1:66.19734833606702
5046: [-50.40590577626378, 66.19735278815168]
- 0:-50.40590577626378
- 1:66.19735278815168
5047: [-50.405914676537705, 66.1970852901088]
- 0:-50.405914676537705
- 1:66.1970852901088
5048: [-50.40524578970981, 66.19708080592518]
- 0:-50.40524578970981
- 1:66.19708080592518
5049: [-50.40525914993114, 66.19654576890682]
- 0:-50.40525914993114
- 1:66.19654576890682
5050: [-50.40326149380661, 66.19653679225418]
- 0:-50.40326149380661
- 1:66.19653679225418
5051: [-50.40325693691026, 66.19680880945393]
- 0:-50.40325693691026
- 1:66.19680880945393
5052: [-50.40059039609425, 66.19679540854062]
- 0:-50.40059039609425
- 1:66.19679540854062
5053: [-50.4005860663379, 66.19706299927083]
- 0:-50.4005860663379
- 1:66.19706299927083
5054: [-50.39925282235722, 66.19705854220852]
- 0:-50.39925282235722
- 1:66.19705854220852
5055: [-50.39925716496517, 66.19679095160146]
- 0:-50.39925716496517
- 1:66.19679095160146
5056: [-50.39859281713993, 66.19679100369788]
- 0:-50.39859281713993
- 1:66.19679100369788
5057: [-50.39857504074707, 66.1975980437363]
- 0:-50.39857504074707
- 1:66.1975980437363
5058: [-50.39657288461515, 66.19758915133276]
- 0:-50.39657288461515
- 1:66.19758915133276
5059: [-50.39658632830058, 66.19704958553035]
- 0:-50.39658632830058
- 1:66.19704958553035
5060: [-50.39525293210733, 66.19704515112628]
- 0:-50.39525293210733
- 1:66.19704515112628
5061: [-50.39526176638561, 66.1967776031916]
- 0:-50.39526176638561
- 1:66.1967776031916
5062: [-50.39326411440459, 66.19676870058476]
- 0:-50.39326411440459
- 1:66.19676870058476
5063: [-50.393250752167944, 66.19730819986371]
- 0:-50.393250752167944
- 1:66.19730819986371
5064: [-50.395248382232005, 66.19731269009034]
- 0:-50.395248382232005
- 1:66.19731269009034
5065: [-50.395244061864204, 66.19758469372205]
- 0:-50.395244061864204
- 1:66.19758469372205
5066: [-50.39257746607735, 66.19757135536503]
- 0:-50.39257746607735
- 1:66.19757135536503
5067: [-50.392586472243615, 66.19730374200441]
- 0:-50.392586472243615
- 1:66.19730374200441
5068: [-50.39191759257826, 66.19729930341111]
- 0:-50.39191759257826
- 1:66.19729930341111
5069: [-50.391926458999805, 66.19703175562661]
- 0:-50.391926458999805
- 1:66.19703175562661
5070: [-50.39059322454214, 66.19702732319938]
- 0:-50.39059322454214
- 1:66.19702732319938
5071: [-50.39057093110166, 66.19783437062408]
- 0:-50.39057093110166
- 1:66.19783437062408
5072: [-50.389242109147524, 66.19782996606041]
- 0:-50.389242109147524
- 1:66.19782996606041
5073: [-50.38925981933212, 66.19702282502688]
- 0:-50.38925981933212
- 1:66.19702282502688
5074: [-50.38859554321115, 66.19701834605549]
- 0:-50.38859554321115
- 1:66.19701834605549
5075: [-50.38860001113109, 66.1967508732075]
- 0:-50.38860001113109
- 1:66.1967508732075
5076: [-50.38660219868617, 66.1967419296103]
- 0:-50.38660219868617
- 1:66.1967419296103
5077: [-50.386611203173814, 66.19646990506105]
- 0:-50.386611203173814
- 1:66.19646990506105
5078: [-50.385942252151615, 66.19646991271384]
- 0:-50.385942252151615
- 1:66.19646991271384
5079: [-50.38593792727426, 66.19673743659378]
- 0:-50.38593792727426
- 1:66.19673743659378
5080: [-50.38526896918783, 66.19673744061558]
- 0:-50.38526896918783
- 1:66.19673744061558
5081: [-50.38526449174076, 66.19700502991634]
- 0:-50.38526449174076
- 1:66.19700502991634
5082: [-50.38592891620675, 66.19700946134246]
- 0:-50.38592891620675
- 1:66.19700946134246
5083: [-50.38592444518478, 66.19727705098767]
- 0:-50.38592444518478
- 1:66.19727705098767
5084: [-50.386588875658184, 66.19728147895587]
- 0:-50.386588875658184
- 1:66.19728147895587
5085: [-50.386575639311616, 66.19781655140152]
- 0:-50.386575639311616
- 1:66.19781655140152
5086: [-50.38724436679381, 66.19782096702333]
- 0:-50.38724436679381
- 1:66.19782096702333
5087: [-50.387217686822844, 66.19889565883311]
- 0:-50.387217686822844
- 1:66.19889565883311
5088: [-50.38388671940387, 66.19888229106918]
- 0:-50.38388671940387
- 1:66.19888229106918
5089: [-50.38387768839314, 66.19915431784077]
- 0:-50.38387768839314
- 1:66.19915431784077
5090: [-50.38321335721884, 66.19914981001503]
- 0:-50.38321335721884
- 1:66.19914981001503
5091: [-50.383208919384444, 66.19942181452083]
- 0:-50.383208919384444
- 1:66.19942181452083
5092: [-50.38054232253273, 66.19940850407512]
- 0:-50.38054232253273
- 1:66.19940850407512
5093: [-50.380529028712495, 66.19994799255007]
- 0:-50.380529028712495
- 1:66.19994799255007
5094: [-50.379195657670316, 66.19994355478228]
- 0:-50.379195657670316
- 1:66.19994355478228
5095: [-50.37919126861159, 66.20021108170258]
- 0:-50.37919126861159
- 1:66.20021108170258
5096: [-50.377189090598684, 66.20020216354986]
- 0:-50.377189090598684
- 1:66.20020216354986
5097: [-50.37718459399037, 66.20047416863066]
- 0:-50.37718459399037
- 1:66.20047416863066
5098: [-50.37652024873293, 66.20046974189357]
- 0:-50.37652024873293
- 1:66.20046974189357
5099: [-50.37651123399174, 66.20073729134452]
- 0:-50.37651123399174
- 1:66.20073729134452
5100: [-50.37850899841069, 66.20074617766022]
- 0:-50.37850899841069
- 1:66.20074617766022
5101: [-50.37850451486721, 66.20101818344013]
- 0:-50.37850451486721
- 1:66.20101818344013
5102: [-50.37983779248276, 66.20102269406422]
- 0:-50.37983779248276
- 1:66.20102269406422
5103: [-50.379842262960544, 66.20075068815865]
- 0:-50.379842262960544
- 1:66.20075068815865
5104: [-50.38051106624424, 66.20075514015942]
- 0:-50.38051106624424
- 1:66.20075514015942
5105: [-50.38050223619331, 66.20102262521578]
- 0:-50.38050223619331
- 1:66.20102262521578
5106: [-50.381835510671166, 66.20102711458752]
- 0:-50.381835510671166
- 1:66.20102711458752
5107: [-50.381822096333266, 66.20156667195475]
- 0:-50.381822096333266
- 1:66.20156667195475
5108: [-50.38115778700182, 66.20156668253243]
- 0:-50.38115778700182
- 1:66.20156668253243
5109: [-50.38113984706894, 66.20210178517559]
- 0:-50.38113984706894
- 1:66.20210178517559
5110: [-50.37914213772332, 66.2020928750094]
- 0:-50.37914213772332
- 1:66.2020928750094
5111: [-50.37913780689939, 66.2023648170864]
- 0:-50.37913780689939
- 1:66.2023648170864
5112: [-50.379802137172106, 66.20236481732415]
- 0:-50.379802137172106
- 1:66.20236481732415
5113: [-50.379797666691935, 66.20263682494456]
- 0:-50.379797666691935
- 1:66.20263682494456
5114: [-50.38046217160786, 66.20263687329464]
- 0:-50.38046217160786
- 1:66.20263687329464
5115: [-50.38044873107481, 66.20317643376272]
- 0:-50.38044873107481
- 1:66.20317643376272
5116: [-50.38068055123344, 66.20317641511349]
- 0:-50.38068055123344
- 1:66.20317641511349
5117: [-50.38066719797314, 66.20323880908072]
- 0:-50.38066719797314
- 1:66.20323880908072
5118: [-50.38065824039846, 66.20329683296198]
- 0:-50.38065824039846
- 1:66.20329683296198
5119: [-50.38065822719705, 66.20335923867063]
- 0:-50.38065822719705
- 1:66.20335923867063
5120: [-50.380658214001386, 66.20342164439451]
- 0:-50.380658214001386
- 1:66.20342164439451
5121: [-50.38066719702666, 66.20347965766291]
- 0:-50.38066719702666
- 1:66.20347965766291
5122: [-50.380680524105834, 66.20354207512943]
- 0:-50.380680524105834
- 1:66.20354207512943
5123: [-50.380693938946514, 66.20360001448117]
- 0:-50.380693938946514
- 1:66.20360001448117
5124: [-50.38072069414648, 66.20365796555407]
- 0:-50.38072069414648
- 1:66.20365796555407
5125: [-50.38074739095652, 66.20371150370032]
- 0:-50.38074739095652
- 1:66.20371150370032
5126: [-50.38077874687833, 66.20376943241631]
- 0:-50.38077874687833
- 1:66.20376943241631
5127: [-50.380814329979316, 66.203822939451]
- 0:-50.380814329979316
- 1:66.203822939451
5128: [-50.38085445520847, 66.2038720111753]
- 0:-50.38085445520847
- 1:66.2038720111753
5129: [-50.38089918110032, 66.20392106052066]
- 0:-50.38089918110032
- 1:66.20392106052066
5130: [-50.38094819273407, 66.20397010110527]
- 0:-50.38094819273407
- 1:66.20397010110527
5131: [-50.38100174652765, 66.20401470636102]
- 0:-50.38100174652765
- 1:66.20401470636102
5132: [-50.381059673723925, 66.20405482470626]
- 0:-50.381059673723925
- 1:66.20405482470626
5133: [-50.38113987981258, 66.20410834434409]
- 0:-50.38113987981258
- 1:66.20410834434409
5134: [-50.38123802729415, 66.2041618532109]
- 0:-50.38123802729415
- 1:66.2041618532109
5135: [-50.381353801318305, 66.2042153648892]
- 0:-50.381353801318305
- 1:66.2042153648892
5136: [-50.38148314373338, 66.20427335262153]
- 0:-50.38148314373338
- 1:66.20427335262153
5137: [-50.38162146043139, 66.20432683091323]
- 0:-50.38162146043139
- 1:66.20432683091323
5138: [-50.381782085733995, 66.20438481919103]
- 0:-50.381782085733995
- 1:66.20438481919103
5139: [-50.38196936420184, 66.20445172153185]
- 0:-50.38196936420184
- 1:66.20445172153185
5140: [-50.38222343575244, 66.20453639838325]
- 0:-50.38222343575244
- 1:66.20453639838325
5141: [-50.38235266990789, 66.20457655153902]
- 0:-50.38235266990789
- 1:66.20457655153902
5142: [-50.38249095947031, 66.20461672490028]
- 0:-50.38249095947031
- 1:66.20461672490028
5143: [-50.3826336812801, 66.2046568241066]
- 0:-50.3826336812801
- 1:66.2046568241066
5144: [-50.382780857918384, 66.20469696591319]
- 0:-50.382780857918384
- 1:66.20469696591319
5145: [-50.38293692128384, 66.20473707628284]
- 0:-50.38293692128384
- 1:66.20473707628284
5146: [-50.38309752682652, 66.2047727510566]
- 0:-50.38309752682652
- 1:66.2047727510566
5147: [-50.38326241844614, 66.2048084167983]
- 0:-50.38326241844614
- 1:66.2048084167983
5148: [-50.38343636557064, 66.20484410259292]
- 0:-50.38343636557064
- 1:66.20484410259292
5149: [-50.38379743312713, 66.20491543329537]
- 0:-50.38379743312713
- 1:66.20491543329537
5150: [-50.38419004067728, 66.20498233659185]
- 0:-50.38419004067728
- 1:66.20498233659185
5151: [-50.38460916294364, 66.20504920971709]
- 0:-50.38460916294364
- 1:66.20504920971709
5152: [-50.385068396740564, 66.20511163706244]
- 0:-50.385068396740564
- 1:66.20511163706244
5153: [-50.385059466354704, 66.2053479893121]
- 0:-50.385059466354704
- 1:66.2053479893121
5154: [-50.38439506954224, 66.20534801654406]
- 0:-50.38439506954224
- 1:66.20534801654406
5155: [-50.38438613111689, 66.20561557208731]
- 0:-50.38438613111689
- 1:66.20561557208731
5156: [-50.38571945083719, 66.20561996988829]
- 0:-50.38571945083719
- 1:66.20561996988829
5157: [-50.385714979827966, 66.20588756853303]
- 0:-50.385714979827966
- 1:66.20588756853303
5158: [-50.389710154753125, 66.2059053600764]
- 0:-50.389710154753125
- 1:66.2059053600764
5159: [-50.38971921057229, 66.20563785512576]
- 0:-50.38971921057229
- 1:66.20563785512576
5160: [-50.391052376202936, 66.20564226141187]
- 0:-50.391052376202936
- 1:66.20564226141187
5161: [-50.391056919962885, 66.20546391066384]
- 0:-50.391056919962885
- 1:66.20546391066384
5162: [-50.39139574149425, 66.20545052262507]
- 0:-50.39139574149425
- 1:66.20545052262507
5163: [-50.39172133009971, 66.20543276171801]
- 0:-50.39172133009971
- 1:66.20543276171801
5164: [-50.39202912563315, 66.20540593911292]
- 0:-50.39202912563315
- 1:66.20540593911292
5165: [-50.39232328718269, 66.20537923569465]
- 0:-50.39232328718269
- 1:66.20537923569465
5166: [-50.39372345542559, 66.20538365221755]
- 0:-50.39372345542559
- 1:66.20538365221755
5167: [-50.39372795753564, 66.20511169197569]
- 0:-50.39372795753564
- 1:66.20511169197569
5168: [-50.39439670908467, 66.20511613575637]
- 0:-50.39439670908467
- 1:66.20511613575637
5169: [-50.394405746974094, 66.20471922362371]
- 0:-50.394405746974094
- 1:66.20471922362371
5170: [-50.394521706155395, 66.20463006350258]
- 0:-50.394521706155395
- 1:66.20463006350258
5171: [-50.39461524449631, 66.20454976473987]
- 0:-50.39461524449631
- 1:66.20454976473987
5172: [-50.39469543976647, 66.20447846359566]
- 0:-50.39469543976647
- 1:66.20447846359566
5173: [-50.394757839878324, 66.2044071098745]
- 0:-50.394757839878324
- 1:66.2044071098745
5174: [-50.39480704340506, 66.20434468860121]
- 0:-50.39480704340506
- 1:66.20434468860121
5175: [-50.3948425914346, 66.20428227077437]
- 0:-50.3948425914346
- 1:66.20428227077437
5176: [-50.39486502852218, 66.20422430725253]
- 0:-50.39486502852218
- 1:66.20422430725253
5177: [-50.394869585525385, 66.20417076937437]
- 0:-50.394869585525385
- 1:66.20417076937437
5178: [-50.39485603098132, 66.20412620051343]
- 0:-50.39485603098132
- 1:66.20412620051343
5179: [-50.39483373668227, 66.20408159856417]
- 0:-50.39483373668227
- 1:66.20408159856417
5180: [-50.394793587210856, 66.20403253113624]
- 0:-50.394793587210856
- 1:66.20403253113624
5181: [-50.394740097680796, 66.20398345348934]
- 0:-50.394740097680796
- 1:66.20398345348934
5182: [-50.39467772242462, 66.20393440793741]
- 0:-50.39467772242462
- 1:66.20393440793741
5183: [-50.394601861071486, 66.20388541734698]
- 0:-50.394601861071486
- 1:66.20388541734698
5184: [-50.39429414826621, 66.20369364325106]
- 0:-50.39429414826621
- 1:66.20369364325106
5185: [-50.394173805259044, 66.20361337633646]
- 0:-50.394173805259044
- 1:66.20361337633646
5186: [-50.394115861117086, 66.20357326402183]
- 0:-50.394115861117086
- 1:66.20357326402183
5187: [-50.394066802935015, 66.20353311962363]
- 0:-50.394066802935015
- 1:66.20353311962363
5188: [-50.39403108487318, 66.2034929855052]
- 0:-50.39403108487318
- 1:66.2034929855052
5189: [-50.39400442145387, 66.20345287087983]
- 0:-50.39400442145387
- 1:66.20345287087983
5190: [-50.39395980948286, 66.20338156586796]
- 0:-50.39395980948286
- 1:66.20338156586796
5191: [-50.393919629303, 66.20331018645044]
- 0:-50.393919629303
- 1:66.20331018645044
5192: [-50.39388844321695, 66.20323441361347]
- 0:-50.39388844321695
- 1:66.20323441361347
5193: [-50.39386168884188, 66.20315856638317]
- 0:-50.39386168884188
- 1:66.20315856638317
5194: [-50.3938393887525, 66.20308276152998]
- 0:-50.3938393887525
- 1:66.20308276152998
5195: [-50.39382597442233, 66.2030069246482]
- 0:-50.39382597442233
- 1:66.2030069246482
5196: [-50.39381709746584, 66.2029356598424]
- 0:-50.39381709746584
- 1:66.2029356598424
5197: [-50.393817083536575, 66.20286424624105]
- 0:-50.393817083536575
- 1:66.20286424624105
5198: [-50.3938215237005, 66.20279287501944]
- 0:-50.3938215237005
- 1:66.20279287501944
5199: [-50.39383484699385, 66.20273047959391]
- 0:-50.39383484699385
- 1:66.20273047959391
5200: [-50.39384825580972, 66.20266360604828]
- 0:-50.39384825580972
- 1:66.20266360604828
5201: [-50.39387506469972, 66.20260115574533]
- 0:-50.39387506469972
- 1:66.20260115574533
5202: [-50.393901787905314, 66.2025431835827]
- 0:-50.393901787905314
- 1:66.2025431835827
5203: [-50.39393747966427, 66.20248970905683]
- 0:-50.39393747966427
- 1:66.20248970905683
5204: [-50.393982056733286, 66.20243620247138]
- 0:-50.393982056733286
- 1:66.20243620247138
5205: [-50.39403114825438, 66.2023871511495]
- 0:-50.39403114825438
- 1:66.2023871511495
5206: [-50.394066789702, 66.20235145870657]
- 0:-50.394066789702
- 1:66.20235145870657
5207: [-50.394111399689244, 66.2023202638723]
- 0:-50.394111399689244
- 1:66.2023202638723
5208: [-50.39416489497043, 66.20228903695234]
- 0:-50.39416489497043
- 1:66.20228903695234
5209: [-50.39422284412668, 66.20225785235766]
- 0:-50.39422284412668
- 1:66.20225785235766
5210: [-50.39429427866636, 66.20222661278774]
- 0:-50.39429427866636
- 1:66.20222661278774
5211: [-50.394365566889675, 66.20219543839202]
- 0:-50.394365566889675
- 1:66.20219543839202
5212: [-50.394445800966615, 66.20216864477918]
- 0:-50.394445800966615
- 1:66.20216864477918
5213: [-50.39453945966934, 66.2021373832255]
- 0:-50.39453945966934
- 1:66.2021373832255
5214: [-50.3947089182126, 66.20208841007087]
- 0:-50.3947089182126
- 1:66.20208841007087
5215: [-50.394905117448005, 66.20203486219292]
- 0:-50.394905117448005
- 1:66.20203486219292
5216: [-50.39511028454811, 66.20198581155198]
- 0:-50.39511028454811
- 1:66.20198581155198
5217: [-50.39564969025051, 66.20185650021166]
- 0:-50.39564969025051
- 1:66.20185650021166
5218: [-50.39593516940777, 66.20178518350563]
- 0:-50.39593516940777
- 1:66.20178518350563
5219: [-50.396073466638896, 66.20174503712055]
- 0:-50.396073466638896
- 1:66.20174503712055
5220: [-50.396202709503434, 66.2017048712534]
- 0:-50.396202709503434
- 1:66.2017048712534
5221: [-50.39631418164008, 66.20166476971207]
- 0:-50.39631418164008
- 1:66.20166476971207
5222: [-50.396416745667906, 66.20162458354383]
- 0:-50.396416745667906
- 1:66.20162458354383
5223: [-50.39714353607339, 66.20162908085628]
- 0:-50.39714353607339
- 1:66.20162908085628
5224: [-50.39715260556166, 66.20135710132315]
- 0:-50.39715260556166
- 1:66.20135710132315
5225: [-50.396925090962874, 66.20135714122392]
- 0:-50.396925090962874
- 1:66.20135714122392
5226: [-50.39709009977612, 66.20125902119842]
- 0:-50.39709009977612
- 1:66.20125902119842
5227: [-50.39722842979808, 66.20116088110075]
- 0:-50.39722842979808
- 1:66.20116088110075
5228: [-50.39734413520357, 66.201067255029]
- 0:-50.39734413520357
- 1:66.201067255029
5229: [-50.39744236223439, 66.20097356306678]
- 0:-50.39744236223439
- 1:66.20097356306678
5230: [-50.39746902747379, 66.20094238023583]
- 0:-50.39746902747379
- 1:66.20094238023583
5231: [-50.39749577764837, 66.2009067192941]
- 0:-50.39749577764837
- 1:66.2009067192941
5232: [-50.397513727850296, 66.20086661255684]
- 0:-50.397513727850296
- 1:66.20086661255684
5233: [-50.39752699434606, 66.20082199915473]
- 0:-50.39752699434606
- 1:66.20082199915473
5234: [-50.397830251148754, 66.20082202677132]
- 0:-50.397830251148754
- 1:66.20082202677132
5235: [-50.397843584417004, 66.20028693196714]
- 0:-50.397843584417004
- 1:66.20028693196714
5236: [-50.397723163014994, 66.20028244380333]
- 0:-50.397723163014994
- 1:66.20028244380333
5237: [-50.39775003344755, 66.20026461640342]
- 0:-50.39775003344755
- 1:66.20026461640342
5238: [-50.397830305893756, 66.20022003881914]
- 0:-50.397830305893756
- 1:66.20022003881914
5239: [-50.39791500909863, 66.20017538663558]
- 0:-50.39791500909863
- 1:66.20017538663558
5240: [-50.398004334418125, 66.20013082815927]
- 0:-50.398004334418125
- 1:66.20013082815927
5241: [-50.39810229042647, 66.20009066381492]
- 0:-50.39810229042647
- 1:66.20009066381492
5242: [-50.39820033001129, 66.20005502904303]
- 0:-50.39820033001129
- 1:66.20005502904303
5243: [-50.39829843059363, 66.20002380707612]
- 0:-50.39829843059363
- 1:66.20002380707612
5244: [-50.39839653094357, 66.19999258503499]
- 0:-50.39839653094357
- 1:66.19999258503499
5245: [-50.398494776270034, 66.19997030543975]
- 0:-50.398494776270034
- 1:66.19997030543975
5246: [-50.39857499867326, 66.19995251709422]
- 0:-50.39857499867326
- 1:66.19995251709422
5247: [-50.39866845171557, 66.19993909981434]
- 0:-50.39866845171557
- 1:66.19993909981434
5248: [-50.39876221953774, 66.19992566879714]
- 0:-50.39876221953774
- 1:66.19992566879714
5249: [-50.39886489445744, 66.19991232206515]
- 0:-50.39886489445744
- 1:66.19991232206515
5250: [-50.39896740050916, 66.19989892370062]
- 0:-50.39896740050916
- 1:66.19989892370062
5251: [-50.39907427529889, 66.19989004551562]
- 0:-50.39907427529889
- 1:66.19989004551562
5252: [-50.399181380159284, 66.19988563166376]
- 0:-50.399181380159284
- 1:66.19988563166376
5253: [-50.399283862621324, 66.19988112400968]
- 0:-50.399283862621324
- 1:66.19988112400968
5254: [-50.3993865137911, 66.19987666781967]
- 0:-50.3993865137911
- 1:66.19987666781967
5255: [-50.399484626645204, 66.19987664748376]
- 0:-50.399484626645204
- 1:66.19987664748376
5256: [-50.39957830852587, 66.1998767016844]
- 0:-50.39957830852587
- 1:66.1998767016844
5257: [-50.39966742952481, 66.19988107499483]
- 0:-50.39966742952481
- 1:66.19988107499483
5258: [-50.39975228833718, 66.19988557440917]
- 0:-50.39975228833718
- 1:66.19988557440917
5259: [-50.39982800923693, 66.19989453279258]
- 0:-50.39982800923693
- 1:66.19989453279258
5260: [-50.399899276583874, 66.19990344899026]
- 0:-50.399899276583874
- 1:66.19990344899026
5261: [-50.39996632065584, 66.19991678743389]
- 0:-50.39996632065584
- 1:66.19991678743389
5262: [-50.40002868047533, 66.19993462702035]
- 0:-50.40002868047533
- 1:66.19993462702035
5263: [-50.40009095579067, 66.19995694467347]
- 0:-50.40009095579067
- 1:66.19995694467347
5264: [-50.40014463848934, 66.19998817210316]
- 0:-50.40014463848934
- 1:66.19998817210316
5265: [-50.40019812954879, 66.2000282389437]
- 0:-50.40019812954879
- 1:66.2000282389437
5266: [-50.400238159401276, 66.2000594703889]
- 0:-50.400238159401276
- 1:66.2000594703889
5267: [-50.400273819929865, 66.20009518934367]
- 0:-50.400273819929865
- 1:66.20009518934367
5268: [-50.4004300018218, 66.2002735082202]
- 0:-50.4004300018218
- 1:66.2002735082202
5269: [-50.40047000937794, 66.20031363061159]
- 0:-50.40047000937794
- 1:66.20031363061159
5270: [-50.40050567053304, 66.20034934953947]
- 0:-50.40050567053304
- 1:66.20034934953947
5271: [-50.40050143292248, 66.20056336447547]
- 0:-50.40050143292248
- 1:66.20056336447547
5272: [-50.40110323139074, 66.20056778901039]
- 0:-50.40110323139074
- 1:66.20056778901039
5273: [-50.40121466219975, 66.20058567562383]
- 0:-50.40121466219975
- 1:66.20058567562383
5274: [-50.401335208406394, 66.20060799399096]
- 0:-50.401335208406394
- 1:66.20060799399096
5275: [-50.40146003967558, 66.20062129502065]
- 0:-50.40146003967558
- 1:66.20062129502065
5276: [-50.4015894091749, 66.20063916766436]
- 0:-50.4015894091749
- 1:66.20063916766436
5277: [-50.40172314807362, 66.20065255259759]
- 0:-50.40172314807362
- 1:66.20065255259759
5278: [-50.40185697136859, 66.20066145927831]
- 0:-50.40185697136859
- 1:66.20066145927831
5279: [-50.40199507966717, 66.20067035633933]
- 0:-50.40199507966717
- 1:66.20067035633933
5280: [-50.40213772598229, 66.20067481719913]
- 0:-50.40213772598229
- 1:66.20067481719913
5281: [-50.40227608737304, 66.2006792873842]
- 0:-50.40227608737304
- 1:66.2006792873842
5282: [-50.40241413389471, 66.20068377109389]
- 0:-50.40241413389471
- 1:66.20068377109389
5283: [-50.40255251755939, 66.20067934997049]
- 0:-50.40255251755939
- 1:66.20067934997049
5284: [-50.402686194525124, 66.20067931322068]
- 0:-50.402686194525124
- 1:66.20067931322068
5285: [-50.40281989361802, 66.20067038532407]
- 0:-50.40281989361802
- 1:66.20067038532407
5286: [-50.40294493861384, 66.20066595441818]
- 0:-50.40294493861384
- 1:66.20066595441818
5287: [-50.403065383155045, 66.20065253881117]
- 0:-50.403065383155045
- 1:66.20065253881117
5288: [-50.40317662792788, 66.20063916948286]
- 0:-50.40317662792788
- 1:66.20063916948286
5289: [-50.40341316933932, 66.20060793434384]
- 0:-50.40341316933932
- 1:66.20060793434384
5290: [-50.40363162581766, 66.20057677793558]
- 0:-50.40363162581766
- 1:66.20057677793558
5291: [-50.40449665865456, 66.20058117131344]
- 0:-50.40449665865456
- 1:66.20058117131344
5292: [-50.40449219870232, 66.20084871481565]
- 0:-50.40449219870232
- 1:66.20084871481565
5293: [-50.404835468417936, 66.20084875298603]
- 0:-50.404835468417936
- 1:66.20084875298603
5294: [-50.40488020876719, 66.20095578592777]
- 0:-50.40488020876719
- 1:66.20095578592777
5295: [-50.40492923446012, 66.20106280932278]
- 0:-50.40492923446012
- 1:66.20106280932278
5296: [-50.40500932731246, 66.20119656602104]
- 0:-50.40500932731246
- 1:66.20119656602104
5297: [-50.4050808087408, 66.20130803017746]
- 0:-50.4050808087408
- 1:66.20130803017746
5298: [-50.40516113475461, 66.20140615755129]
- 0:-50.40516113475461
- 1:66.20140615755129
5299: [-50.40524131393316, 66.2014953423363]
- 0:-50.40524131393316
- 1:66.2014953423363
5300: [-50.405334916214834, 66.20158005805474]
- 0:-50.405334916214834
- 1:66.20158005805474
5301: [-50.405432909155124, 66.20165139496245]
- 0:-50.405432909155124
- 1:66.20165139496245
5302: [-50.405535586266126, 66.20171823039814]
- 0:-50.405535586266126
- 1:66.20171823039814
5303: [-50.40564719283452, 66.20177625859891]
- 0:-50.40564719283452
- 1:66.20177625859891
5304: [-50.4057318267722, 66.20181638345674]
- 0:-50.4057318267722
- 1:66.20181638345674
5305: [-50.40581654459554, 66.20185203012679]
- 0:-50.40581654459554
- 1:66.20185203012679
5306: [-50.40591025403003, 66.20188328246552]
- 0:-50.40591025403003
- 1:66.20188328246552
5307: [-50.406012765164014, 66.20191897996509]
- 0:-50.406012765164014
- 1:66.20191897996509
5308: [-50.406119707782345, 66.20195460254389]
- 0:-50.406119707782345
- 1:66.20195460254389
5309: [-50.406226756903905, 66.20198586366197]
- 0:-50.406226756903905
- 1:66.20198586366197
5310: [-50.40634283751503, 66.20201702653067]
- 0:-50.40634283751503
- 1:66.20201702653067
5311: [-50.40646314092155, 66.20204376675143]
- 0:-50.40646314092155
- 1:66.20204376675143
5312: [-50.40643183741295, 66.2032789768505]
- 0:-50.40643183741295
- 1:66.2032789768505
5313: [-50.405767570790005, 66.20327452272758]
- 0:-50.405767570790005
- 1:66.20327452272758
5314: [-50.40574969178286, 66.20408159911487]
- 0:-50.40574969178286
- 1:66.20408159911487
5315: [-50.40508086743976, 66.20408157746982]
- 0:-50.40508086743976
- 1:66.20408157746982
5316: [-50.40507187672502, 66.20462115037317]
- 0:-50.40507187672502
- 1:66.20462115037317
5317: [-50.40440297648971, 66.20461671207745]
- 0:-50.40440297648971
- 1:66.20461671207745
5318: [-50.40438970593756, 66.20522759316893]
- 0:-50.40438970593756
- 1:66.20522759316893
5319: [-50.406414127099524, 66.20540150845811]
- 0:-50.406414127099524
- 1:66.20540150845811
5320: [-50.41997857141527, 66.2059499371118]
- 0:-50.41997857141527
- 1:66.2059499371118
5321: [-50.424357435381204, 66.20621302539571]
- 0:-50.424357435381204
- 1:66.20621302539571
5322: [-50.42436199925907, 66.20603913637335]
- 0:-50.42436199925907
- 1:66.20603913637335
5323: [-50.425026421108306, 66.20603913089992]
- 0:-50.425026421108306
- 1:66.20603913089992
5324: [-50.4250352823687, 66.2057715561389]
- 0:-50.4250352823687
- 1:66.2057715561389
5325: [-50.42436634705787, 66.20576710743029]
- 0:-50.42436634705787
- 1:66.20576710743029
5326: [-50.424384167355804, 66.20496005783791]
- 0:-50.424384167355804
- 1:66.20496005783791
5327: [-50.423719770731175, 66.20496006005277]
- 0:-50.423719770731175
- 1:66.20496006005277
5328: [-50.42372429391918, 66.20468808383198]
- 0:-50.42372429391918
- 1:66.20468808383198
5329: [-50.42239099246718, 66.2046836235025]
- 0:-50.42239099246718
- 1:66.2046836235025
5330: [-50.422399879262386, 66.20441605048866]
- 0:-50.422399879262386
- 1:66.20441605048866
5331: [-50.42106658863165, 66.20441157614965]
- 0:-50.42106658863165
- 1:66.20441157614965
5332: [-50.421071137954094, 66.20413960075516]
- 0:-50.421071137954094
- 1:66.20413960075516
5333: [-50.41707591603161, 66.20412618609163]
- 0:-50.41707591603161
- 1:66.20412618609163
5334: [-50.41708025389834, 66.20385863803278]
- 0:-50.41708025389834
- 1:66.20385863803278
5335: [-50.417749061733474, 66.20385859561203]
- 0:-50.417749061733474
- 1:66.20385859561203
5336: [-50.41775797516517, 66.20331907355572]
- 0:-50.41775797516517
- 1:66.20331907355572
5337: [-50.418426856574904, 66.20332355715219]
- 0:-50.418426856574904
- 1:66.20332355715219
5338: [-50.418431350420015, 66.20305606133644]
- 0:-50.418431350420015
- 1:66.20305606133644
5339: [-50.4217622854558, 66.20306488053528]
- 0:-50.4217622854558
- 1:66.20306488053528
5340: [-50.42177120117145, 66.2027974260562]
- 0:-50.42177120117145
- 1:66.2027974260562
5341: [-50.42310455918643, 66.20280182718811]
- 0:-50.42310455918643
- 1:66.20280182718811
5342: [-50.423108839262085, 66.20253427997989]
- 0:-50.423108839262085
- 1:66.20253427997989
5343: [-50.42377334723077, 66.20253433219168]
- 0:-50.42377334723077
- 1:66.20253433219168
5344: [-50.42378675503869, 66.20204377303625]
- 0:-50.42378675503869
- 1:66.20204377303625
5345: [-50.42401855573294, 66.20198579793055]
- 0:-50.42401855573294
- 1:66.20198579793055
5346: [-50.42419255431305, 66.20193676068367]
- 0:-50.42419255431305
- 1:66.20193676068367
5347: [-50.424348533055536, 66.20189221828383]
- 0:-50.424348533055536
- 1:66.20189221828383
5348: [-50.424482265050656, 66.20184758611278]
- 0:-50.424482265050656
- 1:66.20184758611278
5349: [-50.424607111765674, 66.20180298803744]
- 0:-50.424607111765674
- 1:66.20180298803744
5350: [-50.4247143345061, 66.20175839307768]
- 0:-50.4247143345061
- 1:66.20175839307768
5351: [-50.42481242269988, 66.20171825893095]
- 0:-50.42481242269988
- 1:66.20171825893095
5352: [-50.424897106554354, 66.20167370479491]
- 0:-50.424897106554354
- 1:66.20167370479491
5353: [-50.42495946354149, 66.20163353927602]
- 0:-50.42495946354149
- 1:66.20163353927602
5354: [-50.425021989152896, 66.20159342524555]
- 0:-50.425021989152896
- 1:66.20159342524555
5355: [-50.42507982650581, 66.2015488055124]
- 0:-50.42507982650581
- 1:66.2015488055124
5356: [-50.42513337874599, 66.20150419602757]
- 0:-50.42513337874599
- 1:66.20150419602757
5357: [-50.4251824115458, 66.2014551323693]
- 0:-50.4251824115458
- 1:66.2014551323693
5358: [-50.425227013195894, 66.20140614422009]
- 0:-50.425227013195894
- 1:66.20140614422009
5359: [-50.425271526394326, 66.20135262638975]
- 0:-50.425271526394326
- 1:66.20135262638975
5360: [-50.42531175453027, 66.20129911882839]
- 0:-50.42531175453027
- 1:66.20129911882839
5361: [-50.42535174814005, 66.20124114684101]
- 0:-50.42535174814005
- 1:66.20124114684101
5362: [-50.42538317183747, 66.20118319540737]
- 0:-50.42538317183747
- 1:66.20118319540737
5363: [-50.425409907356254, 66.20112073832152]
- 0:-50.425409907356254
- 1:66.20112073832152
5364: [-50.42543649669471, 66.20105834649297]
- 0:-50.42543649669471
- 1:66.20105834649297
5365: [-50.42547664387409, 66.20092453437209]
- 0:-50.42547664387409
- 1:66.20092453437209
5366: [-50.42550338699524, 66.20078630247113]
- 0:-50.42550338699524
- 1:66.20078630247113
5367: [-50.4255123460965, 66.20065703028456]
- 0:-50.4255123460965
- 1:66.20065703028456
5368: [-50.42581550888998, 66.20066146831631]
- 0:-50.42581550888998
- 1:66.20066146831631
5369: [-50.4258246122004, 66.2003894724492]
- 0:-50.4258246122004
- 1:66.2003894724492
5370: [-50.425467851438896, 66.20038943335643]
- 0:-50.425467851438896
- 1:66.20038943335643
5371: [-50.425427721945844, 66.20028691320675]
- 0:-50.425427721945844
- 1:66.20028691320675
5372: [-50.425400863746034, 66.20023786298538]
- 0:-50.425400863746034
- 1:66.20023786298538
5373: [-50.42536972092286, 66.20018882304564]
- 0:-50.42536972092286
- 1:66.20018882304564
5374: [-50.4253339636873, 66.20014869814891]
- 0:-50.4253339636873
- 1:66.20014869814891
5375: [-50.425289548852156, 66.20010406414696]
- 0:-50.425289548852156
- 1:66.20010406414696
5376: [-50.42523133547833, 66.2000595021602]
- 0:-50.42523133547833
- 1:66.2000595021602
5377: [-50.425164698959215, 66.20001489544869]
- 0:-50.425164698959215
- 1:66.20001489544869
5378: [-50.42518229910173, 66.19931037639857]
- 0:-50.42518229910173
- 1:66.19931037639857
5379: [-50.423572681127396, 66.19930586608712]
- 0:-50.423572681127396
- 1:66.19930586608712
5380: [-50.42352367816497, 66.19927026333414]
- 0:-50.42352367816497
- 1:66.19927026333414
5381: [-50.42348339055843, 66.19923457489499]
- 0:-50.42348339055843
- 1:66.19923457489499
5382: [-50.423394342912324, 66.19914984930605]
- 0:-50.423394342912324
- 1:66.19914984930605
5383: [-50.42331403371957, 66.19906515478513]
- 0:-50.42331403371957
- 1:66.19906515478513
5384: [-50.42324712751199, 66.19898488028333]
- 0:-50.42324712751199
- 1:66.19898488028333
5385: [-50.42318933960638, 66.19890903602105]
- 0:-50.42318933960638
- 1:66.19890903602105
5386: [-50.42320251714728, 66.19849880141244]
- 0:-50.42320251714728
- 1:66.19849880141244
5387: [-50.42453140462909, 66.19850331308868]
- 0:-50.42453140462909
- 1:66.19850331308868
5388: [-50.42452696848514, 66.19877080468761]
- 0:-50.42452696848514
- 1:66.19877080468761
5389: [-50.42586015124809, 66.19877529210191]
- 0:-50.42586015124809
- 1:66.19877529210191
5390: [-50.425873574377555, 66.1982401681422]
- 0:-50.425873574377555
- 1:66.1982401681422
5391: [-50.42520482113732, 66.1982357250644]
- 0:-50.42520482113732
- 1:66.1982357250644
5392: [-50.42523596890462, 66.196889048397]
- 0:-50.42523596890462
- 1:66.196889048397
5393: [-50.42590040548219, 66.19689350140013]
- 0:-50.42590040548219
- 1:66.19689350140013
5394: [-50.42591376281777, 66.19635396854825]
- 0:-50.42591376281777
- 1:66.19635396854825
5395: [-50.42724699600523, 66.19635849202085]
- 0:-50.42724699600523
- 1:66.19635849202085
5396: [-50.42723798653514, 66.19662600570052]
- 0:-50.42723798653514
- 1:66.19662600570052
5397: [-50.42857129657575, 66.19663492799344]
- 0:-50.42857129657575
- 1:66.19663492799344
5398: [-50.42856689891019, 66.19690241799768]
- 0:-50.42856689891019
- 1:66.19690241799768
5399: [-50.43189783943056, 66.19691581582583]
- 0:-50.43189783943056
- 1:66.19691581582583
5400: [-50.43190228445745, 66.19664384742171]
- 0:-50.43190228445745
- 1:66.19664384742171
5401: [-50.432571162985106, 66.19664830601914]
- 0:-50.432571162985106
- 1:66.19664830601914
5402: [-50.43257574750422, 66.19637627258302]
- 0:-50.43257574750422
- 1:66.19637627258302
5403: [-50.43457324222767, 66.19638519737929]
- 0:-50.43457324222767
- 1:66.19638519737929
5404: [-50.43456882330372, 66.1966571657505]
- 0:-50.43456882330372
- 1:66.1966571657505
5405: [-50.43523318009122, 66.19665715640159]
- 0:-50.43523318009122
- 1:66.19665715640159
5406: [-50.43521537853048, 66.19746431361106]
- 0:-50.43521537853048
- 1:66.19746431361106
5407: [-50.435879821228454, 66.19746871379164]
- 0:-50.435879821228454
- 1:66.19746871379164
5408: [-50.43587534816726, 66.19773627058244]
- 0:-50.43587534816726
- 1:66.19773627058244
5409: [-50.436544103921115, 66.1977407734026]
- 0:-50.436544103921115
- 1:66.1977407734026
5410: [-50.43653518420988, 66.1980082897016]
- 0:-50.43653518420988
- 1:66.1980082897016
5411: [-50.43720402460554, 66.19800831092275]
- 0:-50.43720402460554
- 1:66.19800831092275
5412: [-50.43719088732067, 66.19854784970457]
- 0:-50.43719088732067
- 1:66.19854784970457
5413: [-50.43519307468629, 66.19853891417694]
- 0:-50.43519307468629
- 1:66.19853891417694
5414: [-50.43517073446882, 66.19946197000851]
- 0:-50.43517073446882
- 1:66.19946197000851
5415: [-50.4350994367746, 66.19947085587928]
- 0:-50.4350994367746
- 1:66.19947085587928
5416: [-50.435036966806834, 66.1994843016356]
- 0:-50.435036966806834
- 1:66.1994843016356
5417: [-50.43498352675593, 66.19949764712982]
- 0:-50.43498352675593
- 1:66.19949764712982
5418: [-50.43493446105702, 66.19951551163983]
- 0:-50.43493446105702
- 1:66.19951551163983
5419: [-50.43487640958271, 66.19953777247989]
- 0:-50.43487640958271
- 1:66.19953777247989
5420: [-50.434818526822376, 66.19956008479504]
- 0:-50.434818526822376
- 1:66.19956008479504
5421: [-50.4347694489593, 66.19958684027183]
- 0:-50.4347694489593
- 1:66.19958684027183
5422: [-50.43472037099938, 66.19961359573168]
- 0:-50.43472037099938
- 1:66.19961359573168
5423: [-50.434675813364485, 66.199644804965]
- 0:-50.434675813364485
- 1:66.199644804965
5424: [-50.43463125562813, 66.19967601418571]
- 0:-50.43463125562813
- 1:66.19967601418571
5425: [-50.43459550279922, 66.19971166659529]
- 0:-50.43459550279922
- 1:66.19971166659529
5426: [-50.434559985706315, 66.19975178338747]
- 0:-50.434559985706315
- 1:66.19975178338747
5427: [-50.43453313951445, 66.19978751760645]
- 0:-50.43453313951445
- 1:66.19978751760645
5428: [-50.43450642727064, 66.19983207760176]
- 0:-50.43450642727064
- 1:66.19983207760176
5429: [-50.434484247401095, 66.19987220036221]
- 0:-50.434484247401095
- 1:66.19987220036221
5430: [-50.43446627305629, 66.19991679068508]
- 0:-50.43446627305629
- 1:66.19991679068508
5431: [-50.43443953390906, 66.20001493045783]
- 0:-50.43443953390906
- 1:66.20001493045783
5432: [-50.434430483856566, 66.20011747855104]
- 0:-50.434430483856566
- 1:66.20011747855104
5433: [-50.43443507423916, 66.20022890995921]
- 0:-50.43443507423916
- 1:66.20022890995921
5434: [-50.43445737687433, 66.20034486646665]
- 0:-50.43445737687433
- 1:66.20034486646665
5435: [-50.434493005485564, 66.2004697200592]
- 0:-50.434493005485564
- 1:66.2004697200592
5436: [-50.434551104428465, 66.20059011807712]
- 0:-50.434551104428465
- 1:66.20059011807712
5437: [-50.434617863189324, 66.20071502460604]
- 0:-50.434617863189324
- 1:66.20071502460604
5438: [-50.434702470325774, 66.2008353830993]
- 0:-50.434702470325774
- 1:66.2008353830993
5439: [-50.43479621042184, 66.20095127997322]
- 0:-50.43479621042184
- 1:66.20095127997322
5440: [-50.434898701598065, 66.20105831605017]
- 0:-50.434898701598065
- 1:66.20105831605017
5441: [-50.43499690966635, 66.20114746377108]
- 0:-50.43499690966635
- 1:66.20114746377108
5442: [-50.43508600974001, 66.20122329092669]
- 0:-50.43508600974001
- 1:66.20122329092669
5443: [-50.43517083725537, 66.20129023756725]
- 0:-50.43517083725537
- 1:66.20129023756725
5444: [-50.435255485331965, 66.20134812481858]
- 0:-50.435255485331965
- 1:66.20134812481858
5445: [-50.43534468909279, 66.20140169149477]
- 0:-50.43534468909279
- 1:66.20140169149477
5446: [-50.43543387040868, 66.20145514136019]
- 0:-50.43543387040868
- 1:66.20145514136019
5447: [-50.43552745023057, 66.20149532803717]
- 0:-50.43552745023057
- 1:66.20149532803717
5448: [-50.43562117635488, 66.20153544939164]
- 0:-50.43562117635488
- 1:66.20153544939164
5449: [-50.43570134001734, 66.20156220931561]
- 0:-50.43570134001734
- 1:66.20156220931561
5450: [-50.43579055725925, 66.201588985666]
- 0:-50.43579055725925
- 1:66.201588985666
5451: [-50.435786221824245, 66.2017718150874]
- 0:-50.435786221824245
- 1:66.2017718150874
5452: [-50.4351172894735, 66.20177178578399]
- 0:-50.4351172894735
- 1:66.20177178578399
5453: [-50.435112810091624, 66.20203934701267]
- 0:-50.435112810091624
- 1:66.20203934701267
5454: [-50.43444840347269, 66.20203487680746]
- 0:-50.43444840347269
- 1:66.20203487680746
5455: [-50.4344350451208, 66.2025743719943]
- 0:-50.4344350451208
- 1:66.2025743719943
5456: [-50.43377071487271, 66.20257442781168]
- 0:-50.43377071487271
- 1:66.20257442781168
5457: [-50.43375727660056, 66.20310951104467]
- 0:-50.43375727660056
- 1:66.20310951104467
5458: [-50.4344217094649, 66.20311398507778]
- 0:-50.4344217094649
- 1:66.20311398507778
5459: [-50.43438587477038, 66.20472817406208]
- 0:-50.43438587477038
- 1:66.20472817406208
5460: [-50.43505494615687, 66.20473262064702]
- 0:-50.43505494615687
- 1:66.20473262064702
5461: [-50.4350460126356, 66.20500014407152]
- 0:-50.4350460126356
- 1:66.20500014407152
5462: [-50.43571477516193, 66.20500460093561]
- 0:-50.43571477516193
- 1:66.20500460093561
5463: [-50.43570601687463, 66.20527217622812]
- 0:-50.43570601687463
- 1:66.20527217622812
5464: [-50.43770796836396, 66.2052811233923]
- 0:-50.43770796836396
- 1:66.2052811233923
5465: [-50.437699060478245, 66.2055486477237]
- 0:-50.437699060478245
- 1:66.2055486477237
5466: [-50.43836800302374, 66.20555314201572]
- 0:-50.43836800302374
- 1:66.20555314201572
5467: [-50.43837252856194, 66.20528109856713]
- 0:-50.43837252856194
- 1:66.20528109856713
5468: [-50.44103888599763, 66.20529002945443]
- 0:-50.44103888599763
- 1:66.20529002945443
5469: [-50.44104347631998, 66.2050225157833]
- 0:-50.44104347631998
- 1:66.2050225157833
5470: [-50.441707858377896, 66.20502242174494]
- 0:-50.441707858377896
- 1:66.20502242174494
5471: [-50.441721311550204, 66.20448738428696]
- 0:-50.441721311550204
- 1:66.20448738428696
5472: [-50.4423899882648, 66.20448739248816]
- 0:-50.4423899882648
- 1:66.20448739248816
5473: [-50.44239456575212, 66.20421987953334]
- 0:-50.44239456575212
- 1:66.20421987953334
5474: [-50.445061122489776, 66.20422871046728]
- 0:-50.445061122489776
- 1:66.20422871046728
5475: [-50.44505213941655, 66.20449629989338]
- 0:-50.44505213941655
- 1:66.20449629989338
5476: [-50.44838304601793, 66.20450965672792]
- 0:-50.44838304601793
- 1:66.20450965672792
5477: [-50.44839216581332, 66.20424211835083]
- 0:-50.44839216581332
- 1:66.20424211835083
5478: [-50.44905639917576, 66.20424216728951]
- 0:-50.44905639917576
- 1:66.20424216728951
5479: [-50.44906088961823, 66.20397453722546]
- 0:-50.44906088961823
- 1:66.20397453722546
5480: [-50.450394180146745, 66.20397906394113]
- 0:-50.450394180146745
- 1:66.20397906394113
5481: [-50.45040311171812, 66.20371147438172]
- 0:-50.45040311171812
- 1:66.20371147438172
5482: [-50.45106747653805, 66.20371144731155]
- 0:-50.45106747653805
- 1:66.20371144731155
5483: [-50.4510719705634, 66.20344393437988]
- 0:-50.4510719705634
- 1:66.20344393437988
5484: [-50.45174078227862, 66.20344394403038]
- 0:-50.45174078227862
- 1:66.20344394403038
5485: [-50.451763071073415, 66.2023692887014]
- 0:-50.451763071073415
- 1:66.2023692887014
5486: [-50.45109881534813, 66.2023648414237]
- 0:-50.45109881534813
- 1:66.2023648414237
5487: [-50.451103140541264, 66.20209727841883]
- 0:-50.451103140541264
- 1:66.20209727841883
5488: [-50.450438890816976, 66.20209282768565]
- 0:-50.450438890816976
- 1:66.20209282768565
5489: [-50.45044322243888, 66.20182526502444]
- 0:-50.45044322243888
- 1:66.20182526502444
5490: [-50.45177640741889, 66.20182977641234]
- 0:-50.45177640741889
- 1:66.20182977641234
5491: [-50.451785436109944, 66.20129015968067]
- 0:-50.451785436109944
- 1:66.20129015968067
5492: [-50.45045205460147, 66.20129019202123]
- 0:-50.45045205460147
- 1:66.20129019202123
5493: [-50.45046556279383, 66.2007506170156]
- 0:-50.45046556279383
- 1:66.2007506170156
5494: [-50.44913228139235, 66.200746157274]
- 0:-50.44913228139235
- 1:66.200746157274
5495: [-50.44914566942535, 66.20020664898081]
- 0:-50.44914566942535
- 1:66.20020664898081
5496: [-50.44980987501929, 66.20021110627819]
- 0:-50.44980987501929
- 1:66.20021110627819
5497: [-50.44981905792273, 66.19993909404111]
- 0:-50.44981905792273
- 1:66.19993909404111
5498: [-50.4511522994067, 66.19994354624257]
- 0:-50.4511522994067
- 1:66.19994354624257
5499: [-50.45115662467956, 66.19967598576804]
- 0:-50.45115662467956
- 1:66.19967598576804
5500: [-50.45182106110877, 66.19967600563362]
- 0:-50.45182106110877
- 1:66.19967600563362
5501: [-50.45184334984917, 66.19860136611396]
- 0:-50.45184334984917
- 1:66.19860136611396
5502: [-50.45051445829179, 66.19859691051559]
- 0:-50.45051445829179
- 1:66.19859691051559
5503: [-50.45051903532232, 66.19832492484196]
- 0:-50.45051903532232
- 1:66.19832492484196
5504: [-50.448521464018306, 66.19832043272018]
- 0:-50.448521464018306
- 1:66.19832043272018
5505: [-50.44852581504802, 66.19805287418085]
- 0:-50.44852581504802
- 1:66.19805287418085
5506: [-50.447861345277744, 66.1980484242011]
- 0:-50.447861345277744
- 1:66.1980484242011
5507: [-50.44786587155778, 66.1977809174885]
- 0:-50.44786587155778
- 1:66.1977809174885
5508: [-50.444534971393914, 66.19776752793393]
- 0:-50.444534971393914
- 1:66.19776752793393
5509: [-50.444530413010646, 66.19803503432962]
- 0:-50.444530413010646
- 1:66.19803503432962
5510: [-50.44386157880634, 66.19803505221121]
- 0:-50.44386157880634
- 1:66.19803505221121
5511: [-50.44387050538959, 66.1977630568387]
- 0:-50.44387050538959
- 1:66.1977630568387
5512: [-50.44320167711775, 66.19776307123507]
- 0:-50.44320167711775
- 1:66.19776307123507
5513: [-50.44321067856353, 66.19749548908719]
- 0:-50.44321067856353
- 1:66.19749548908719
5514: [-50.43987967003733, 66.19748215802889]
- 0:-50.43987967003733
- 1:66.19748215802889
5515: [-50.43988861728372, 66.19694256643237]
- 0:-50.43988861728372
- 1:66.19694256643237
5516: [-50.43922408918361, 66.19694254893287]
- 0:-50.43922408918361
- 1:66.19694254893287
5517: [-50.43924194325905, 66.19613544363824]
- 0:-50.43924194325905
- 1:66.19613544363824
5518: [-50.43857753504307, 66.19613106148712]
- 0:-50.43857753504307
- 1:66.19613106148712
5519: [-50.43858198244557, 66.19586350613474]
- 0:-50.43858198244557
- 1:66.19586350613474
5520: [-50.437324498630105, 66.19585903133549]
- 0:-50.437324498630105
- 1:66.19585903133549
5521: [-50.43725319878543, 66.19578325390816]
- 0:-50.43725319878543
- 1:66.19578325390816
5522: [-50.43726653558298, 66.19505195064862]
- 0:-50.43726653558298
- 1:66.19505195064862
5523: [-50.43793545012125, 66.19505190230062]
- 0:-50.43793545012125
- 1:66.19505190230062
5524: [-50.437939903971184, 66.19478434813732]
- 0:-50.437939903971184
- 1:66.19478434813732
5525: [-50.438604381634306, 66.19478437215476]
- 0:-50.438604381634306
- 1:66.19478437215476
5526: [-50.438613281650085, 66.19451685897108]
- 0:-50.438613281650085
- 1:66.19451685897108
5527: [-50.43994212135327, 66.19452125757296]
- 0:-50.43994212135327
- 1:66.19452125757296
5528: [-50.43995100849189, 66.19425374449682]
- 0:-50.43995100849189
- 1:66.19425374449682
5529: [-50.44061530281334, 66.19425370628466]
- 0:-50.44061530281334
- 1:66.19425370628466
5530: [-50.44061989981547, 66.19398620420833]
- 0:-50.44061989981547
- 1:66.19398620420833
5531: [-50.4426219928412, 66.19399514331569]
- 0:-50.4426219928412
- 1:66.19399514331569
5532: [-50.44262647952253, 66.19372311178552]
- 0:-50.44262647952253
- 1:66.19372311178552
5533: [-50.44395958086063, 66.19372757343413]
- 0:-50.44395958086063
- 1:66.19372757343413
5534: [-50.443964145763914, 66.19346007160433]
- 0:-50.443964145763914
- 1:66.19346007160433
5535: [-50.44529737817796, 66.19346445367431]
- 0:-50.44529737817796
- 1:66.19346445367431
5536: [-50.44530193025375, 66.19319695199854]
- 0:-50.44530193025375
- 1:66.19319695199854
5537: [-50.44663507888515, 66.19319690697888]
- 0:-50.44663507888515
- 1:66.19319690697888
5538: [-50.44663961813571, 66.19292940546192]
- 0:-50.44663961813571
- 1:66.19292940546192
5539: [-50.450634927700285, 66.19294726270947]
- 0:-50.450634927700285
- 1:66.19294726270947
5540: [-50.45063933613078, 66.19267523156645]
- 0:-50.45063933613078
- 1:66.19267523156645
5541: [-50.46063221458645, 66.19271089303147]
- 0:-50.46063221458645
- 1:66.19271089303147
5542: [-50.46062338078463, 66.19297847236192]
- 0:-50.46062338078463
- 1:66.19297847236192
5543: [-50.461956607364904, 66.19298291053153]
- 0:-50.461956607364904
- 1:66.19298291053153
5544: [-50.461961144973664, 66.1927153425642]
- 0:-50.461961144973664
- 1:66.1927153425642
5545: [-50.463294356639544, 66.1927197664225]
- 0:-50.463294356639544
- 1:66.1927197664225
5546: [-50.4632898318808, 66.19298733451583]
- 0:-50.4632898318808
- 1:66.19298733451583
5547: [-50.4639541915672, 66.19299181867217]
- 0:-50.4639541915672
- 1:66.19299181867217
5548: [-50.46394981915926, 66.19325932181877]
- 0:-50.46394981915926
- 1:66.19325932181877
5549: [-50.46461418484394, 66.19326380251772]
- 0:-50.46461418484394
- 1:66.19326380251772
5550: [-50.46460967293572, 66.19353137130155]
- 0:-50.46460967293572
- 1:66.19353137130155
5551: [-50.465943088064975, 66.19353581867206]
- 0:-50.465943088064975
- 1:66.19353581867206
5552: [-50.46593413672663, 66.19380334807404]
- 0:-50.46593413672663
- 1:66.19380334807404
5553: [-50.46726741672743, 66.19380784672468]
- 0:-50.46726741672743
- 1:66.19380784672468
5554: [-50.46726300267812, 66.19407982912047]
- 0:-50.46726300267812
- 1:66.19407982912047
5555: [-50.46859629368083, 66.19408431371131]
- 0:-50.46859629368083
- 1:66.19408431371131
5556: [-50.46858736797139, 66.19435184402272]
- 0:-50.46858736797139
- 1:66.19435184402272
5557: [-50.46925620859412, 66.19435633997234]
- 0:-50.46925620859412
- 1:66.19435633997234
5558: [-50.46924728927042, 66.19462387065188]
- 0:-50.46924728927042
- 1:66.19462387065188
5559: [-50.470580434158876, 66.19462828283503]
- 0:-50.470580434158876
- 1:66.19462828283503
5560: [-50.470575980083396, 66.19489585359052]
- 0:-50.470575980083396
- 1:66.19489585359052
5561: [-50.473238270638355, 66.19490922859434]
- 0:-50.473238270638355
- 1:66.19490922859434
5562: [-50.4732336734026, 66.19517674843641]
- 0:-50.4732336734026
- 1:66.19517674843641
5563: [-50.47456686093962, 66.19518123511898]
- 0:-50.47456686093962
- 1:66.19518123511898
5564: [-50.47456244542219, 66.19544880681426]
- 0:-50.47456244542219
- 1:66.19544880681426
5565: [-50.48055551769453, 66.19547107231772]
- 0:-50.48055551769453
- 1:66.19547107231772
5566: [-50.48055115997161, 66.19573864485587]
- 0:-50.48055115997161
- 1:66.19573864485587
5567: [-50.48187976351699, 66.19574307993862]
- 0:-50.48187976351699
- 1:66.19574307993862
5568: [-50.481875493119645, 66.19601506571952]
- 0:-50.481875493119645
- 1:66.19601506571952
5569: [-50.48387307108671, 66.19601954362926]
- 0:-50.48387307108671
- 1:66.19601954362926
5570: [-50.4838685766072, 66.1962870656056]
- 0:-50.4838685766072
- 1:66.1962870656056
5571: [-50.48520182219953, 66.19629155621296]
- 0:-50.48520182219953
- 1:66.19629155621296
5572: [-50.485197584492425, 66.19656354287686]
- 0:-50.485197584492425
- 1:66.19656354287686
5573: [-50.485861791772436, 66.19656356390121]
- 0:-50.485861791772436
- 1:66.19656356390121
5574: [-50.48585731659133, 66.19683108662817]
- 0:-50.48585731659133
- 1:66.19683108662817
5575: [-50.4871906602366, 66.19683996909]
- 0:-50.4871906602366
- 1:66.19683996909
5576: [-50.48718176819338, 66.19710756994087]
- 0:-50.48718176819338
- 1:66.19710756994087
5577: [-50.487850585242064, 66.19710755421363]
- 0:-50.487850585242064
- 1:66.19710755421363
5578: [-50.487846058929286, 66.19737955587624]
- 0:-50.487846058929286
- 1:66.19737955587624
5579: [-50.48851059801841, 66.1973795490795]
- 0:-50.48851059801841
- 1:66.1973795490795
5580: [-50.4885060782408, 66.19765155109255]
- 0:-50.4885060782408
- 1:66.19765155109255
5581: [-50.48917047733559, 66.19765160615545]
- 0:-50.48917047733559
- 1:66.19765160615545
5582: [-50.48916603430847, 66.19791913032212]
- 0:-50.48916603430847
- 1:66.19791913032212
5583: [-50.48983051496313, 66.19792359479679]
- 0:-50.48983051496313
- 1:66.19792359479679
5584: [-50.4898260783641, 66.19819111930809]
- 0:-50.4898260783641
- 1:66.19819111930809
5585: [-50.49115925926449, 66.19819561241232]
- 0:-50.49115925926449
- 1:66.19819561241232
5586: [-50.491154765645746, 66.19846761553805]
- 0:-50.491154765645746
- 1:66.19846761553805
5587: [-50.49248350461688, 66.19847205573879]
- 0:-50.49248350461688
- 1:66.19847205573879
5588: [-50.49247909372301, 66.19873958106434]
- 0:-50.49247909372301
- 1:66.19873958106434
5589: [-50.49381246530213, 66.19874409752734]
- 0:-50.49381246530213
- 1:66.19874409752734
5590: [-50.49382147674738, 66.19820450336861]
- 0:-50.49382147674738
- 1:66.19820450336861
5591: [-50.49315692289275, 66.19820453821751]
- 0:-50.49315692289275
- 1:66.19820453821751
5592: [-50.49316139695673, 66.19793253518803]
- 0:-50.49316139695673
- 1:66.19793253518803
5593: [-50.492496994868304, 66.19793250124688]
- 0:-50.492496994868304
- 1:66.19793250124688
5594: [-50.49250140578786, 66.19766497676491]
- 0:-50.49250140578786
- 1:66.19766497676491
5595: [-50.49116832255818, 66.19765601989857]
- 0:-50.49116832255818
- 1:66.19765601989857
5596: [-50.49117703021878, 66.19738848329655]
- 0:-50.49117703021878
- 1:66.19738848329655
5597: [-50.490508209539584, 66.19738851673996]
- 0:-50.490508209539584
- 1:66.19738851673996
5598: [-50.49051728588418, 66.19684892605075]
- 0:-50.49051728588418
- 1:66.19684892605075
5599: [-50.48918830644677, 66.19684447937146]
- 0:-50.48918830644677
- 1:66.19684447937146
5600: [-50.4891972628373, 66.19630495539663]
- 0:-50.4891972628373
- 1:66.19630495539663
5601: [-50.4898661344269, 66.19630934164759]
- 0:-50.4898661344269
- 1:66.19630934164759
5602: [-50.48987951462549, 66.19550229670033]
- 0:-50.48987951462549
- 1:66.19550229670033
5603: [-50.490544006900315, 66.19550227886278]
- 0:-50.490544006900315
- 1:66.19550227886278
5604: [-50.49055729696337, 66.19496715778934]
- 0:-50.49055729696337
- 1:66.19496715778934
5605: [-50.49189056051863, 66.19496721544732]
- 0:-50.49189056051863
- 1:66.19496721544732
5606: [-50.49189512387288, 66.19469962880143]
- 0:-50.49189512387288
- 1:66.19469962880143
5607: [-50.49322830250291, 66.19470415029666]
- 0:-50.49322830250291
- 1:66.19470415029666
5608: [-50.49321937592774, 66.19497611107391]
- 0:-50.49321937592774
- 1:66.19497611107391
5609: [-50.49455263491727, 66.19497614040748]
- 0:-50.49455263491727
- 1:66.19497614040748
5610: [-50.494548173745784, 66.1952481404157]
- 0:-50.494548173745784
- 1:66.1952481404157
5611: [-50.49521265556598, 66.19524809778424]
- 0:-50.49521265556598
- 1:66.19524809778424
5612: [-50.495208200929916, 66.19552009814271]
- 0:-50.495208200929916
- 1:66.19552009814271
5613: [-50.49787462351042, 66.19552905693156]
- 0:-50.49787462351042
- 1:66.19552905693156
5614: [-50.49787026385001, 66.19579657966054]
- 0:-50.49787026385001
- 1:66.19579657966054
5615: [-50.49853460982132, 66.19579658481966]
- 0:-50.49853460982132
- 1:66.19579658481966
5616: [-50.49853018787413, 66.19606858606649]
- 0:-50.49853018787413
- 1:66.19606858606649
5617: [-50.49919453973313, 66.19606858776395]
- 0:-50.49919453973313
- 1:66.19606858776395
5618: [-50.49919012432123, 66.19634058936084]
- 0:-50.49919012432123
- 1:66.19634058936084
5619: [-50.49985448206779, 66.19634058759658]
- 0:-50.49985448206779
- 1:66.19634058759658
5620: [-50.499849995838005, 66.19660817668888]
- 0:-50.499849995838005
- 1:66.19660817668888
5621: [-50.50051443682544, 66.19661258431745]
- 0:-50.50051443682544
- 1:66.19661258431745
5622: [-50.50050995702414, 66.19688017375479]
- 0:-50.50050995702414
- 1:66.19688017375479
5623: [-50.50184322552772, 66.1968846042316]
- 0:-50.50184322552772
- 1:66.1968846042316
5624: [-50.501838836277294, 66.19715660693939]
- 0:-50.501838836277294
- 1:66.19715660693939
5625: [-50.50317196991784, 66.19716108869791]
- 0:-50.50317196991784
- 1:66.19716108869791
5626: [-50.503163063166646, 66.19742864048244]
- 0:-50.503163063166646
- 1:66.19742864048244
5627: [-50.50449652234279, 66.19743309429964]
- 0:-50.50449652234279
- 1:66.19743309429964
5628: [-50.504491912219784, 66.19770063355142]
- 0:-50.504491912219784
- 1:66.19770063355142
5629: [-50.50582538216777, 66.19770507330864]
- 0:-50.50582538216777
- 1:66.19770507330864
5630: [-50.50581183625729, 66.1982446441627]
- 0:-50.50581183625729
- 1:66.1982446441627
5631: [-50.50648068615541, 66.19824464590354]
- 0:-50.50648068615541
- 1:66.19824464590354
5632: [-50.506471889834685, 66.19851661212904]
- 0:-50.506471889834685
- 1:66.19851661212904
5633: [-50.50714074565914, 66.19851661038444]
- 0:-50.50714074565914
- 1:66.19851661038444
5634: [-50.50713626289439, 66.19878868065622]
- 0:-50.50713626289439
- 1:66.19878868065622
5635: [-50.50780067174417, 66.19878863709744]
- 0:-50.50780067174417
- 1:66.19878863709744
5636: [-50.507796093796784, 66.19905617807248]
- 0:-50.507796093796784
- 1:66.19905617807248
5637: [-50.50846061025396, 66.19906066069919]
- 0:-50.50846061025396
- 1:66.19906066069919
5638: [-50.50845603873378, 66.19932820201963]
- 0:-50.50845603873378
- 1:66.19932820201963
5639: [-50.50978943416396, 66.19933266542064]
- 0:-50.50978943416396
- 1:66.19933266542064
5640: [-50.50978487551923, 66.19960020714775]
- 0:-50.50978487551923
- 1:66.19960020714775
5641: [-50.51178249394916, 66.1996091355411]
- 0:-50.51178249394916
- 1:66.1996091355411
5642: [-50.51177366346021, 66.20014868453606]
- 0:-50.51177366346021
- 1:66.20014868453606
5643: [-50.51310694673372, 66.20015317823223]
- 0:-50.51310694673372
- 1:66.20015317823223
5644: [-50.513115897134064, 66.19961356363382]
- 0:-50.513115897134064
- 1:66.19961356363382
5645: [-50.51378034319879, 66.19961360523203]
- 0:-50.51378034319879
- 1:66.19961360523203
5646: [-50.51379366745202, 66.19907850799625]
- 0:-50.51379366745202
- 1:66.19907850799625
5647: [-50.512460436961376, 66.19907402192091]
- 0:-50.512460436961376
- 1:66.19907402192091
5648: [-50.512473787663815, 66.19826693421278]
- 0:-50.512473787663815
- 1:66.19826693421278
5649: [-50.511809293324305, 66.19826247298599]
- 0:-50.511809293324305
- 1:66.19826247298599
5650: [-50.51181843881575, 66.19772291401513]
- 0:-50.51181843881575
- 1:66.19772291401513
5651: [-50.51115389031569, 66.19772292762384]
- 0:-50.51115389031569
- 1:66.19772292762384
5652: [-50.51115843621781, 66.19745538773695]
- 0:-50.51115843621781
- 1:66.19745538773695
5653: [-50.51049396027641, 66.19745091966227]
- 0:-50.51049396027641
- 1:66.19745091966227
5654: [-50.51051175284612, 66.19637624752413]
- 0:-50.51051175284612
- 1:66.19637624752413
5655: [-50.509847471138166, 66.19637182758763]
- 0:-50.509847471138166
- 1:66.19637182758763
5656: [-50.50985186104843, 66.19610423783625]
- 0:-50.50985186104843
- 1:66.19610423783625
5657: [-50.509187416423615, 66.1960997630438]
- 0:-50.509187416423615
- 1:66.1960997630438
5658: [-50.50919183584849, 66.19583229038331]
- 0:-50.50919183584849
- 1:66.19583229038331
5659: [-50.50852294479688, 66.19582777385678]
- 0:-50.50852294479688
- 1:66.19582777385678
5660: [-50.50853196889372, 66.1955602744728]
- 0:-50.50853196889372
- 1:66.1955602744728
5661: [-50.5078630166681, 66.19556023264977]
- 0:-50.5078630166681
- 1:66.19556023264977
5662: [-50.50786751619811, 66.19528828249615]
- 0:-50.50786751619811
- 1:66.19528828249615
5663: [-50.50720302223722, 66.1952882754868]
- 0:-50.50720302223722
- 1:66.1952882754868
5664: [-50.507207606807555, 66.19502073851284]
- 0:-50.507207606807555
- 1:66.19502073851284
5665: [-50.506543186053555, 66.19501624986904]
- 0:-50.506543186053555
- 1:66.19501624986904
5666: [-50.50654760815152, 66.19474866183722]
- 0:-50.50654760815152
- 1:66.19474866183722
5667: [-50.50854526752642, 66.1947531475428]
- 0:-50.50854526752642
- 1:66.1947531475428
5668: [-50.50854094340451, 66.19502514858976]
- 0:-50.50854094340451
- 1:66.19502514858976
5669: [-50.50920528399535, 66.19502521381338]
- 0:-50.50920528399535
- 1:66.19502521381338
5670: [-50.50921859608693, 66.19448559761399]
- 0:-50.50921859608693
- 1:66.19448559761399
5671: [-50.507885432381244, 66.19448112956168]
- 0:-50.507885432381244
- 1:66.19448112956168
5672: [-50.507894274064355, 66.19394607140237]
- 0:-50.507894274064355
- 1:66.19394607140237
5673: [-50.50722987955586, 66.19394158656567]
- 0:-50.50722987955586
- 1:66.19394158656567
5674: [-50.50724321725066, 66.19313446510924]
- 0:-50.50724321725066
- 1:66.19313446510924
5675: [-50.50657894311259, 66.19313450648815]
- 0:-50.50657894311259
- 1:66.19313450648815
5676: [-50.506583286942394, 66.19286250763409]
- 0:-50.506583286942394
- 1:66.19286250763409
5677: [-50.50591884980294, 66.19286249414748]
- 0:-50.50591884980294
- 1:66.19286249414748
5678: [-50.505914421180044, 66.19313008014498]
- 0:-50.505914421180044
- 1:66.19313008014498
5679: [-50.504581171029514, 66.19312564267614]
- 0:-50.504581171029514
- 1:66.19312564267614
5680: [-50.50458561250442, 66.19285805680418]
- 0:-50.50458561250442
- 1:66.19285805680418
5681: [-50.50392124145692, 66.19285355459417]
- 0:-50.50392124145692
- 1:66.19285355459417
5682: [-50.50391672571962, 66.19312561853557]
- 0:-50.50391672571962
- 1:66.19312561853557
5683: [-50.50125021688903, 66.19311668690227]
- 0:-50.50125021688903
- 1:66.19311668690227
5684: [-50.50125914245142, 66.19284913987421]
- 0:-50.50125914245142
- 1:66.19284913987421
5685: [-50.49992582044666, 66.19284024016368]
- 0:-50.49992582044666
- 1:66.19284024016368
5686: [-50.49991695935625, 66.19311219980771]
- 0:-50.49991695935625
- 1:66.19311219980771
5687: [-50.49791934111367, 66.19310328120443]
- 0:-50.49791934111367
- 1:66.19310328120443
5688: [-50.49792829879891, 66.19283573461205]
- 0:-50.49792829879891
- 1:66.19283573461205
5689: [-50.49659490320531, 66.19283127758291]
- 0:-50.49659490320531
- 1:66.19283127758291
5690: [-50.49659927588983, 66.19256375807662]
- 0:-50.49659927588983
- 1:66.19256375807662
5691: [-50.49526620577674, 66.19255927307319]
- 0:-50.49526620577674
- 1:66.19255927307319
5692: [-50.495274943641625, 66.19228726319065]
- 0:-50.495274943641625
- 1:66.19228726319065
5693: [-50.494606080778794, 66.19228726779026]
- 0:-50.494606080778794
- 1:66.19228726779026
5694: [-50.49461507048178, 66.19201972247288]
- 0:-50.49461507048178
- 1:66.19201972247288
5695: [-50.49328194680502, 66.19201080374499]
- 0:-50.49328194680502
- 1:66.19201080374499
5696: [-50.49328635161496, 66.19174328539778]
- 0:-50.49328635161496
- 1:66.19174328539778
5697: [-50.49262178296281, 66.19174326687195]
- 0:-50.49262178296281
- 1:66.19174326687195
5698: [-50.49263082098804, 66.19120368772849]
- 0:-50.49263082098804
- 1:66.19120368772849
5699: [-50.4919664334824, 66.1912037172215]
- 0:-50.4919664334824
- 1:66.1912037172215
5700: [-50.49197092095979, 66.19093172176109]
- 0:-50.49197092095979
- 1:66.19093172176109
5701: [-50.4913020876197, 66.19093170890821]
- 0:-50.4913020876197
- 1:66.19093170890821
5702: [-50.49131086450225, 66.190659701259]
- 0:-50.49131086450225
- 1:66.190659701259
5703: [-50.48997758500055, 66.19065529119152]
- 0:-50.48997758500055
- 1:66.19065529119152
5704: [-50.48998216782652, 66.19038770924263]
- 0:-50.48998216782652
- 1:66.19038770924263
5705: [-50.489317552888494, 66.19038326063158]
- 0:-50.489317552888494
- 1:66.19038326063158
5706: [-50.4893221421406, 66.19011567902864]
- 0:-50.4893221421406
- 1:66.19011567902864
5707: [-50.48732451960707, 66.19011125298132]
- 0:-50.48732451960707
- 1:66.19011125298132
5708: [-50.48733794406272, 66.18957166585865]
- 0:-50.48733794406272
- 1:66.18957166585865
5709: [-50.486669063910675, 66.18956721572995]
- 0:-50.486669063910675
- 1:66.18956721572995
5710: [-50.48667781568327, 66.18929968816175]
- 0:-50.48667781568327
- 1:66.18929968816175
5711: [-50.4860090166526, 66.18929964727486]
- 0:-50.4860090166526
- 1:66.18929964727486
5712: [-50.486026867415355, 66.18848813516647]
- 0:-50.486026867415355
- 1:66.18848813516647
5713: [-50.48535794146065, 66.18848815623232]
- 0:-50.48535794146065
- 1:66.18848815623232
5714: [-50.485371404681246, 66.18794857297269]
- 0:-50.485371404681246
- 1:66.18794857297269
5715: [-50.486035795601985, 66.18795299071057]
- 0:-50.486035795601985
- 1:66.18795299071057
5716: [-50.48605795319126, 66.18687391886638]
- 0:-50.48605795319126
- 1:66.18687391886638
5717: [-50.486726937786514, 66.18687842326788]
- 0:-50.486726937786514
- 1:66.18687842326788
5718: [-50.4867313840239, 66.1866107941533]
- 0:-50.4867313840239
- 1:66.1866107941533
5719: [-50.48806011739526, 66.18661083734091]
- 0:-50.48806011739526
- 1:66.18661083734091
5720: [-50.48807362708416, 66.18607578687728]
- 0:-50.48807362708416
- 1:66.18607578687728
5721: [-50.487409259656985, 66.18607126349052]
- 0:-50.487409259656985
- 1:66.18607126349052
5722: [-50.487413722498815, 66.1858037519068]
- 0:-50.487413722498815
- 1:66.1858037519068
5723: [-50.48674921523819, 66.18579929037968]
- 0:-50.48674921523819
- 1:66.18579929037968
5724: [-50.486762670781374, 66.18499216279527]
- 0:-50.486762670781374
- 1:66.18499216279527
5725: [-50.489424582090216, 66.1850010977711]
- 0:-50.489424582090216
- 1:66.1850010977711
5726: [-50.48942917159651, 66.18473352180825]
- 0:-50.48942917159651
- 1:66.18473352180825
5727: [-50.488764691496904, 66.18472907113713]
- 0:-50.488764691496904
- 1:66.18472907113713
5728: [-50.48876914160872, 66.18446156083984]
- 0:-50.48876914160872
- 1:66.18446156083984
5729: [-50.488104742876935, 66.18446151935012]
- 0:-50.488104742876935
- 1:66.18446151935012
5730: [-50.488109269855855, 66.1841895314394]
- 0:-50.488109269855855
- 1:66.1841895314394
5731: [-50.48744473119208, 66.1841895518042]
- 0:-50.48744473119208
- 1:66.1841895518042
5732: [-50.487449339967895, 66.18392197687561]
- 0:-50.487449339967895
- 1:66.18392197687561
5733: [-50.48612058390996, 66.1839131026848]
- 0:-50.48612058390996
- 1:66.1839131026848
5734: [-50.48612489089331, 66.18364554205617]
- 0:-50.48612489089331
- 1:66.18364554205617
5735: [-50.484791624438394, 66.18364109273423]
- 0:-50.484791624438394
- 1:66.18364109273423
5736: [-50.48476941495241, 66.18472015038436]
- 0:-50.48476941495241
- 1:66.18472015038436
5737: [-50.4841051003629, 66.18471572642923]
- 0:-50.4841051003629
- 1:66.18471572642923
5738: [-50.4840871164878, 66.18552281327594]
- 0:-50.4840871164878
- 1:66.18552281327594
5739: [-50.48342271098046, 66.1855228635494]
- 0:-50.48342271098046
- 1:66.1855228635494
5740: [-50.48345402323539, 66.18390418960205]
- 0:-50.48345402323539
- 1:66.18390418960205
5741: [-50.482789487041, 66.1839041853056]
- 0:-50.482789487041
- 1:66.1839041853056
5742: [-50.48280300168883, 66.18336461231087]
- 0:-50.48280300168883
- 1:66.18336461231087
5743: [-50.482134027236484, 66.18336456543287]
- 0:-50.482134027236484
- 1:66.18336456543287
5744: [-50.48220553222682, 66.17986421751145]
- 0:-50.48220553222682
- 1:66.17986421751145
5745: [-50.48287418228896, 66.17986868996404]
- 0:-50.48287418228896
- 1:66.17986868996404
5746: [-50.48290987329537, 66.17798249789338]
- 0:-50.48290987329537
- 1:66.17798249789338
5747: [-50.48224547816368, 66.17798249151987]
- 0:-50.48224547816368
- 1:66.17798249151987
5748: [-50.48226335110169, 66.1771753777118]
- 0:-50.48226335110169
- 1:66.1771753777118
5749: [-50.484925304034526, 66.17718431066915]
- 0:-50.484925304034526
- 1:66.17718431066915
5750: [-50.48492098389143, 66.17745186439788]
- 0:-50.48492098389143
- 1:66.17745186439788
5751: [-50.48558536383926, 66.17745185650281]
- 0:-50.48558536383926
- 1:66.17745185650281
5752: [-50.485580979239955, 66.17772388840875]
- 0:-50.485580979239955
- 1:66.17772388840875
5753: [-50.48624536507209, 66.17772387704896]
- 0:-50.48624536507209
- 1:66.17772387704896
5754: [-50.48623191546452, 66.17826343884418]
- 0:-50.48623191546452
- 1:66.17826343884418
5755: [-50.486900838421484, 66.17826787566331]
- 0:-50.486900838421484
- 1:66.17826787566331
5756: [-50.4868829321188, 66.17907494294046]
- 0:-50.4868829321188
- 1:66.17907494294046
5757: [-50.48754734902629, 66.17907492485732]
- 0:-50.48754734902629
- 1:66.17907492485732
5758: [-50.48753837508897, 66.17961452880617]
- 0:-50.48753837508897
- 1:66.17961452880617
5759: [-50.488202804281265, 66.17961450731906]
- 0:-50.488202804281265
- 1:66.17961450731906
5760: [-50.48818057819981, 66.18069361458608]
- 0:-50.48818057819981
- 1:66.18069361458608
5761: [-50.49084270205435, 66.18070248912753]
- 0:-50.49084270205435
- 1:66.18070248912753
5762: [-50.49085165319315, 66.1804305438685]
- 0:-50.49085165319315
- 1:66.1804305438685
5763: [-50.492180328167535, 66.18043500564883]
- 0:-50.492180328167535
- 1:66.18043500564883
5764: [-50.4921982255212, 66.17962786710197]
- 0:-50.4921982255212
- 1:66.17962786710197
5765: [-50.49153379975267, 66.17962790978643]
- 0:-50.49153379975267
- 1:66.17962790978643
5766: [-50.49154269606782, 66.17908830507994]
- 0:-50.49154269606782
- 1:66.17908830507994
5767: [-50.49087835260278, 66.17908386649154]
- 0:-50.49087835260278
- 1:66.17908386649154
5768: [-50.49088736067081, 66.17854879233802]
- 0:-50.49088736067081
- 1:66.17854879233802
5769: [-50.49022286082444, 66.17854429893526]
- 0:-50.49022286082444
- 1:66.17854429893526
5770: [-50.49022729840049, 66.17827679500495]
- 0:-50.49022729840049
- 1:66.17827679500495
5771: [-50.48956297331587, 66.1782723495645]
- 0:-50.48956297331587
- 1:66.1782723495645
5772: [-50.489571838348226, 66.17773722593529]
- 0:-50.489571838348226
- 1:66.17773722593529
5773: [-50.48890752565427, 66.17773277710135]
- 0:-50.48890752565427
- 1:66.17773277710135
5774: [-50.488911807332194, 66.17746522272056]
- 0:-50.488911807332194
- 1:66.17746522272056
5775: [-50.488247430177736, 66.17746524826362]
- 0:-50.488247430177736
- 1:66.17746524826362
5776: [-50.48825195749123, 66.17719326781565]
- 0:-50.48825195749123
- 1:66.17719326781565
5777: [-50.48758741746021, 66.17719323847011]
- 0:-50.48758741746021
- 1:66.17719323847011
5778: [-50.48759639163416, 66.17665363964822]
- 0:-50.48759639163416
- 1:66.17665363964822
5779: [-50.48626774380784, 66.17664919565361]
- 0:-50.48626774380784
- 1:66.17664919565361
5780: [-50.48627205117959, 66.17638164264874]
- 0:-50.48627205117959
- 1:66.17638164264874
5781: [-50.48560776833322, 66.17637717652067]
- 0:-50.48560776833322
- 1:66.17637717652067
5782: [-50.48561225087742, 66.17610967528819]
- 0:-50.48561225087742
- 1:66.17610967528819
5783: [-50.48494765948901, 66.17610521958713]
- 0:-50.48494765948901
- 1:66.17610521958713
5784: [-50.48497448101258, 66.17475851658118]
- 0:-50.48497448101258
- 1:66.17475851658118
5785: [-50.48630320941865, 66.17476302517376]
- 0:-50.48630320941865
- 1:66.17476302517376
5786: [-50.48629883116928, 66.1750350542685]
- 0:-50.48629883116928
- 1:66.1750350542685
5787: [-50.486963297843175, 66.17503497341737]
- 0:-50.486963297843175
- 1:66.17503497341737
5788: [-50.486972216812354, 66.17476751249404]
- 0:-50.486972216812354
- 1:66.17476751249404
5789: [-50.48763653068904, 66.17476749334843]
- 0:-50.48763653068904
- 1:66.17476749334843
5790: [-50.48764113985836, 66.17449992830961]
- 0:-50.48764113985836
- 1:66.17449992830961
5791: [-50.48697666363853, 66.1744998960914]
- 0:-50.48697666363853
- 1:66.1744998960914
5792: [-50.486985505228844, 66.17396036841194]
- 0:-50.486985505228844
- 1:66.17396036841194
5793: [-50.488983249004065, 66.17396485410893]
- 0:-50.488983249004065
- 1:66.17396485410893
5794: [-50.488978728050775, 66.17423683117094]
- 0:-50.488978728050775
- 1:66.17423683117094
5795: [-50.48964319611144, 66.17423685272772]
- 0:-50.48964319611144
- 1:66.17423685272772
5796: [-50.48963868168613, 66.17450883014155]
- 0:-50.48963868168613
- 1:66.17450883014155
5797: [-50.49030315563071, 66.17450884823303]
- 0:-50.49030315563071
- 1:66.17450884823303
5798: [-50.49028534603308, 66.17531590463558]
- 0:-50.49028534603308
- 1:66.17531590463558
5799: [-50.489621021531605, 66.17531593776053]
- 0:-50.489621021531605
- 1:66.17531593776053
5800: [-50.48962536718092, 66.17504390806333]
- 0:-50.48962536718092
- 1:66.17504390806333
5801: [-50.488296485254814, 66.17503949995913]
- 0:-50.488296485254814
- 1:66.17503949995913
5802: [-50.48828322038392, 66.17557899119275]
- 0:-50.48828322038392
- 1:66.17557899119275
5803: [-50.488952001696966, 66.17557900415267]
- 0:-50.488952001696966
- 1:66.17557900415267
5804: [-50.48894305450165, 66.17585106072764]
- 0:-50.48894305450165
- 1:66.17585106072764
5805: [-50.48961198751, 66.17585100488228]
- 0:-50.48961198751
- 1:66.17585100488228
5806: [-50.48959860269343, 66.17639056344086]
- 0:-50.48959860269343
- 1:66.17639056344086
5807: [-50.49026305152459, 66.17639505982291]
- 0:-50.49026305152459
- 1:66.17639505982291
5808: [-50.49025861383353, 66.1766625617775]
- 0:-50.49025861383353
- 1:66.1766625617775
5809: [-50.490922824147475, 66.17666259077366]
- 0:-50.490922824147475
- 1:66.17666259077366
5810: [-50.49091849161458, 66.17693462232029]
- 0:-50.49091849161458
- 1:66.17693462232029
5811: [-50.49158730306044, 66.17693462139088]
- 0:-50.49158730306044
- 1:66.17693462139088
5812: [-50.4915739569839, 66.17747418267797]
- 0:-50.4915739569839
- 1:66.17747418267797
5813: [-50.49223833123459, 66.17747413948602]
- 0:-50.49223833123459
- 1:66.17747413948602
5814: [-50.49223384302109, 66.17774612060123]
- 0:-50.49223384302109
- 1:66.17774612060123
5815: [-50.49290284152307, 66.17774616417559]
- 0:-50.49290284152307
- 1:66.17774616417559
5816: [-50.49289376446628, 66.17801817215226]
- 0:-50.49289376446628
- 1:66.17801817215226
5817: [-50.494227084798, 66.17802263642326]
- 0:-50.494227084798
- 1:66.17802263642326
5818: [-50.49423169919582, 66.1777505895052]
- 0:-50.49423169919582
- 1:66.1777505895052
5819: [-50.49489586241385, 66.17775507542547]
- 0:-50.49489586241385
- 1:66.17775507542547
5820: [-50.4948916384439, 66.17802263064439]
- 0:-50.4948916384439
- 1:66.17802263064439
5821: [-50.4955559534196, 66.17802704778114]
- 0:-50.4955559534196
- 1:66.17802704778114
5822: [-50.4955470350296, 66.17856212168658]
- 0:-50.4955470350296
- 1:66.17856212168658
5823: [-50.496211385405715, 66.17856665217036]
- 0:-50.496211385405715
- 1:66.17856665217036
5824: [-50.49618469863176, 66.17990886544507]
- 0:-50.49618469863176
- 1:66.17990886544507
5825: [-50.50150882479425, 66.17992668372771]
- 0:-50.50150882479425
- 1:66.17992668372771
5826: [-50.50150442796926, 66.18019866831364]
- 0:-50.50150442796926
- 1:66.18019866831364
5827: [-50.50216871225319, 66.1801986381393]
- 0:-50.50216871225319
- 1:66.1801986381393
5828: [-50.5021643219588, 66.18047062307605]
- 0:-50.5021643219588
- 1:66.18047062307605
5829: [-50.506159639399385, 66.18047954117903]
- 0:-50.506159639399385
- 1:66.18047954117903
5830: [-50.50616423757602, 66.18021201984152]
- 0:-50.50616423757602
- 1:66.18021201984152
5831: [-50.507497348796036, 66.18021647414523]
- 0:-50.507497348796036
- 1:66.18021647414523
5832: [-50.50749293227196, 66.18048404700889]
- 0:-50.50749293227196
- 1:66.18048404700889
5833: [-50.50882177310342, 66.18048850039636]
- 0:-50.50882177310342
- 1:66.18048850039636
5834: [-50.508817448031714, 66.18076048624822]
- 0:-50.508817448031714
- 1:66.18076048624822
5835: [-50.5094817619394, 66.18076053409804]
- 0:-50.5094817619394
- 1:66.18076053409804
5836: [-50.509477195849286, 66.18102805631683]
- 0:-50.509477195849286
- 1:66.18102805631683
5837: [-50.51081058826908, 66.18103693957752]
- 0:-50.51081058826908
- 1:66.18103693957752
5838: [-50.510806203866665, 66.18130451360332]
- 0:-50.510806203866665
- 1:66.18130451360332
5839: [-50.51147052891373, 66.18130455097835]
- 0:-50.51147052891373
- 1:66.18130455097835
5840: [-50.51146606116568, 66.18157648654845]
- 0:-50.51146606116568
- 1:66.18157648654845
5841: [-50.51279480166691, 66.18158096344645]
- 0:-50.51279480166691
- 1:66.18158096344645
5842: [-50.51279940214402, 66.18130896240267]
- 0:-50.51279940214402
- 1:66.18130896240267
5843: [-50.51213493249636, 66.18130899742222]
- 0:-50.51213493249636
- 1:66.18130899742222
5844: [-50.51213937068113, 66.18103694533755]
- 0:-50.51213937068113
- 1:66.18103694533755
5845: [-50.511474906916135, 66.1810369768925]
- 0:-50.511474906916135
- 1:66.1810369768925
5846: [-50.51147935163455, 66.18076492515911]
- 0:-50.51147935163455
- 1:66.18076492515911
5847: [-50.510814893752304, 66.18076495324951]
- 0:-50.510814893752304
- 1:66.18076495324951
5848: [-50.51081944702104, 66.1804974311845]
- 0:-50.51081944702104
- 1:66.1804974311845
5849: [-50.50948615923575, 66.18049296076373]
- 0:-50.50948615923575
- 1:66.18049296076373
5850: [-50.5094950734857, 66.18022094802019]
- 0:-50.5094950734857
- 1:66.18022094802019
5851: [-50.50816172945463, 66.18022094149568]
- 0:-50.50816172945463
- 1:66.18022094149568
5852: [-50.50817523564247, 66.17968140824672]
- 0:-50.50817523564247
- 1:66.17968140824672
5853: [-50.507506272312284, 66.17967696809602]
- 0:-50.507506272312284
- 1:66.17967696809602
5854: [-50.50752420801303, 66.17886986469328]
- 0:-50.50752420801303
- 1:66.17886986469328
5855: [-50.50552657519779, 66.17886535996243]
- 0:-50.50552657519779
- 1:66.17886535996243
5856: [-50.50553093297767, 66.17859337643505]
- 0:-50.50553093297767
- 1:66.17859337643505
5857: [-50.5042021771155, 66.17858888868524]
- 0:-50.5042021771155
- 1:66.17858888868524
5858: [-50.504206480058514, 66.17832138344869]
- 0:-50.504206480058514
- 1:66.17832138344869
5859: [-50.503542073761125, 66.17832137328615]
- 0:-50.503542073761125
- 1:66.17832137328615
5860: [-50.503551220781674, 66.17778180664371]
- 0:-50.503551220781674
- 1:66.17778180664371
5861: [-50.502217759270756, 66.17777739031149]
- 0:-50.502217759270756
- 1:66.17777739031149
5862: [-50.50222222727354, 66.17750982077267]
- 0:-50.50222222727354
- 1:66.17750982077267
5863: [-50.49889576544413, 66.17749645786596]
- 0:-50.49889576544413
- 1:66.17749645786596
5864: [-50.498900265513626, 66.17722888892507]
- 0:-50.498900265513626
- 1:66.17722888892507
5865: [-50.49823580344475, 66.17722443824039]
- 0:-50.49823580344475
- 1:66.17722443824039
5866: [-50.49824481645074, 66.17668930133236]
- 0:-50.49824481645074
- 1:66.17668930133236
5867: [-50.49758036677432, 66.17668484725355]
- 0:-50.49758036677432
- 1:66.17668484725355
5868: [-50.49758473395673, 66.17641734461428]
- 0:-50.49758473395673
- 1:66.17641734461428
5869: [-50.49625609153384, 66.17641288992796]
- 0:-50.49625609153384
- 1:66.17641288992796
5870: [-50.496264897715506, 66.17587329118224]
- 0:-50.496264897715506
- 1:66.17587329118224
5871: [-50.49560056550239, 66.17587335595752]
- 0:-50.49560056550239
- 1:66.17587335595752
5872: [-50.49560485246004, 66.17560132512249]
- 0:-50.49560485246004
- 1:66.17560132512249
5873: [-50.494276245653644, 66.17559684966719]
- 0:-50.494276245653644
- 1:66.17559684966719
5874: [-50.494280644919755, 66.17532934847041]
- 0:-50.494280644919755
- 1:66.17532934847041
5875: [-50.49361622468086, 66.17532487356938]
- 0:-50.49361622468086
- 1:66.17532487356938
5876: [-50.49362077612576, 66.17505730739552]
- 0:-50.49362077612576
- 1:66.17505730739552
5877: [-50.492951843007525, 66.1750572680283]
- 0:-50.492951843007525
- 1:66.1750572680283
5878: [-50.492969575278465, 66.1742502116246]
- 0:-50.492969575278465
- 1:66.1742502116246
5879: [-50.496964944976526, 66.17425914250121]
- 0:-50.496964944976526
- 1:66.17425914250121
5880: [-50.496956221926105, 66.17453113335787]
- 0:-50.496956221926105
- 1:66.17453113335787
5881: [-50.49828936800304, 66.17453555335698]
- 0:-50.49828936800304
- 1:66.17453555335698
5882: [-50.49828486139671, 66.17480311940824]
- 0:-50.49828486139671
- 1:66.17480311940824
5883: [-50.49961359215709, 66.17480760350786]
- 0:-50.49961359215709
- 1:66.17480760350786
5884: [-50.49961825472694, 66.17454008873872]
- 0:-50.49961825472694
- 1:66.17454008873872
5885: [-50.500287000353595, 66.17454004101107]
- 0:-50.500287000353595
- 1:66.17454004101107
5886: [-50.50029148774109, 66.17427247505421]
- 0:-50.50029148774109
- 1:66.17427247505421
5887: [-50.50095580031745, 66.17427250190855]
- 0:-50.50095580031745
- 1:66.17427250190855
5888: [-50.50095139664749, 66.17454448039796]
- 0:-50.50095139664749
- 1:66.17454448039796
5889: [-50.50161588387058, 66.1745445551935]
- 0:-50.50161588387058
- 1:66.1745445551935
5890: [-50.50161148673147, 66.17481653403425]
- 0:-50.50161148673147
- 1:66.17481653403425
5891: [-50.50294466151089, 66.17482102128994]
- 0:-50.50294466151089
- 1:66.17482102128994
5892: [-50.502935750684955, 66.17508854961231]
- 0:-50.502935750684955
- 1:66.17508854961231
5893: [-50.50426908196156, 66.17509295751277]
- 0:-50.50426908196156
- 1:66.17509295751277
5894: [-50.50427345301326, 66.17482097813398]
- 0:-50.50427345301326
- 1:66.17482097813398
5895: [-50.50560687025594, 66.17482990092749]
- 0:-50.50560687025594
- 1:66.17482990092749
5896: [-50.505597839358, 66.17509749493243]
- 0:-50.505597839358
- 1:66.17509749493243
5897: [-50.506931166470494, 66.17510187448924]
- 0:-50.506931166470494
- 1:66.17510187448924
5898: [-50.50692674323428, 66.17536944192219]
- 0:-50.50692674323428
- 1:66.17536944192219
5899: [-50.50759100845975, 66.17537391154892]
- 0:-50.50759100845975
- 1:66.17537391154892
5900: [-50.507586591645726, 66.1756414793279]
- 0:-50.507586591645726
- 1:66.1756414793279
5901: [-50.508915515296444, 66.17564591636287]
- 0:-50.508915515296444
- 1:66.17564591636287
5902: [-50.50890647142693, 66.1761854794622]
- 0:-50.50890647142693
- 1:66.1761854794622
5903: [-50.509570821637155, 66.17618546086906]
- 0:-50.509570821637155
- 1:66.17618546086906
5904: [-50.509562105277176, 66.17672501128672]
- 0:-50.509562105277176
- 1:66.17672501128672
5905: [-50.510226467765975, 66.17672498928896]
- 0:-50.510226467765975
- 1:66.17672498928896
5906: [-50.51022200975862, 66.17699703658809]
- 0:-50.51022200975862
- 1:66.17699703658809
5907: [-50.51088637812863, 66.17699701112632]
- 0:-50.51088637812863
- 1:66.17699701112632
5908: [-50.51088192665252, 66.177269058777]
- 0:-50.51088192665252
- 1:66.177269058777
5909: [-50.51221512395807, 66.17726903552636]
- 0:-50.51221512395807
- 1:66.17726903552636
5910: [-50.5122062360912, 66.17754104546343]
- 0:-50.5122062360912
- 1:66.17754104546343
5911: [-50.51353937756962, 66.17754548606239]
- 0:-50.51353937756962
- 1:66.17754548606239
5912: [-50.51357068669147, 66.17592682706446]
- 0:-50.51357068669147
- 1:66.17592682706446
5913: [-50.514235128857756, 66.17593131292458]
- 0:-50.514235128857756
- 1:66.17593131292458
5914: [-50.514257538412416, 66.17485663752525]
- 0:-50.514257538412416
- 1:66.17485663752525
5915: [-50.51359297625291, 66.17485221729713]
- 0:-50.51359297625291
- 1:66.17485221729713
5916: [-50.513602009081666, 66.17431706863891]
- 0:-50.513602009081666
- 1:66.17431706863891
5917: [-50.51293745931255, 66.17431264501565]
- 0:-50.51293745931255
- 1:66.17431264501565
5918: [-50.51291967828588, 66.17511973563775]
- 0:-50.51291967828588
- 1:66.17511973563775
5919: [-50.51159093238988, 66.17511527590746]
- 0:-50.51159093238988
- 1:66.17511527590746
5920: [-50.51159531076647, 66.17484770832006]
- 0:-50.51159531076647
- 1:66.17484770832006
5921: [-50.50893324359226, 66.17483877391416]
- 0:-50.50893324359226
- 1:66.17483877391416
5922: [-50.50893773782446, 66.17456684577871]
- 0:-50.50893773782446
- 1:66.17456684577871
5923: [-50.50827325692542, 66.1745668098387]
- 0:-50.50827325692542
- 1:66.1745668098387
5924: [-50.50827783616483, 66.17429929452487]
- 0:-50.50827783616483
- 1:66.17429929452487
5925: [-50.50761342838544, 66.17429477731058]
- 0:-50.50761342838544
- 1:66.17429477731058
5926: [-50.5076176995567, 66.17402727628554]
- 0:-50.5076176995567
- 1:66.17402727628554
5927: [-50.506953466538214, 66.17402280700904]
- 0:-50.506953466538214
- 1:66.17402280700904
5928: [-50.50696665827634, 66.17321569734787]
- 0:-50.50696665827634
- 1:66.17321569734787
5929: [-50.50830006152947, 66.17322011317505]
- 0:-50.50830006152947
- 1:66.17322011317505
5930: [-50.508304640834275, 66.17295259927602]
- 0:-50.508304640834275
- 1:66.17295259927602
5931: [-50.51030215582675, 66.17295704320183]
- 0:-50.51030215582675
- 1:66.17295704320183
5932: [-50.51029324882102, 66.17322904828643]
- 0:-50.51029324882102
- 1:66.17322904828643
5933: [-50.5109621446384, 66.17322911148842]
- 0:-50.5109621446384
- 1:66.17322911148842
5934: [-50.51097553498533, 66.17242198930802]
- 0:-50.51097553498533
- 1:66.17242198930802
5935: [-50.510311107261955, 66.17242196447795]
- 0:-50.510311107261955
- 1:66.17242196447795
5936: [-50.51031556554789, 66.17214992206631]
- 0:-50.51031556554789
- 1:66.17214992206631
5937: [-50.50965116676956, 66.17215001050617]
- 0:-50.50965116676956
- 1:66.17215001050617
5938: [-50.50965563158551, 66.17187796844631]
- 0:-50.50965563158551
- 1:66.17187796844631
5939: [-50.511653313517385, 66.17188685417662]
- 0:-50.511653313517385
- 1:66.17188685417662
5940: [-50.51164434065719, 66.17215444585514]
- 0:-50.51164434065719
- 1:66.17215444585514
5941: [-50.51231328844393, 66.17215891412371]
- 0:-50.51231328844393
- 1:66.17215891412371
5942: [-50.512308747546356, 66.17242642755502]
- 0:-50.512308747546356
- 1:66.17242642755502
5943: [-50.51297310701287, 66.17243091956776]
- 0:-50.51297310701287
- 1:66.17243091956776
5944: [-50.51296874130624, 66.17269848473555]
- 0:-50.51296874130624
- 1:66.17269848473555
5945: [-50.513633173142296, 66.17269849549923]
- 0:-50.513633173142296
- 1:66.17269849549923
5946: [-50.51362872439951, 66.1729704220677]
- 0:-50.51362872439951
- 1:66.1729704220677
5947: [-50.51429316211457, 66.17297042936616]
- 0:-50.51429316211457
- 1:66.17297042936616
5948: [-50.514288494782846, 66.1732380091797]
- 0:-50.514288494782846
- 1:66.1732380091797
5949: [-50.51495301780101, 66.17324242546688]
- 0:-50.51495301780101
- 1:66.17324242546688
5950: [-50.51494867136386, 66.17350999166754]
- 0:-50.51494867136386
- 1:66.17350999166754
5951: [-50.516941885912686, 66.17351893780867]
- 0:-50.516941885912686
- 1:66.17351893780867
5952: [-50.51693289393715, 66.174053968662]
- 0:-50.51693289393715
- 1:66.174053968662
5953: [-50.517601737595506, 66.17405847432433]
- 0:-50.517601737595506
- 1:66.17405847432433
5954: [-50.51758841267398, 66.17459799771414]
- 0:-50.51758841267398
- 1:66.17459799771414
5955: [-50.51825273987441, 66.1745980495737]
- 0:-50.51825273987441
- 1:66.1745980495737
5956: [-50.51824387684082, 66.1751376121596]
- 0:-50.51824387684082
- 1:66.1751376121596
5957: [-50.518908193217754, 66.1751375438807]
- 0:-50.518908193217754
- 1:66.1751375438807
5958: [-50.51891726461164, 66.17486999952591]
- 0:-50.51891726461164
- 1:66.17486999952591
5959: [-50.51958159706459, 66.17487004437221]
- 0:-50.51958159706459
- 1:66.17487004437221
5960: [-50.519594904569665, 66.17406296600953]
- 0:-50.519594904569665
- 1:66.17406296600953
5961: [-50.5202638920377, 66.17406739210115]
- 0:-50.5202638920377
- 1:66.17406739210115
5962: [-50.52026825245159, 66.17379534701739]
- 0:-50.52026825245159
- 1:66.17379534701739
5963: [-50.519599520594916, 66.17379538483691]
- 0:-50.519599520594916
- 1:66.17379538483691
5964: [-50.51961280672079, 66.17325586271137]
- 0:-50.51961280672079
- 1:66.17325586271137
5965: [-50.518279543901464, 66.17325138526103]
- 0:-50.518279543901464
- 1:66.17325138526103
5966: [-50.51829300153526, 66.17271179922606]
- 0:-50.51829300153526
- 1:66.17271179922606
5967: [-50.51762397940703, 66.17271184061238]
- 0:-50.51762397940703
- 1:66.17271184061238
5968: [-50.517628614738804, 66.17244426104413]
- 0:-50.517628614738804
- 1:66.17244426104413
5969: [-50.516964112896034, 66.17243985907952]
- 0:-50.516964112896034
- 1:66.17243985907952
5970: [-50.516955054978794, 66.17297936546471]
- 0:-50.516955054978794
- 1:66.17297936546471
5971: [-50.51629068550353, 66.17297489449366]
- 0:-50.51629068550353
- 1:66.17297489449366
5972: [-50.516295187927135, 66.17270738012076]
- 0:-50.516295187927135
- 1:66.17270738012076
5973: [-50.515630758380944, 66.17270738348341]
- 0:-50.515630758380944
- 1:66.17270738348341
5974: [-50.51564858846356, 66.1716282707275]
- 0:-50.51564858846356
- 1:66.1716282707275
5975: [-50.51431984538278, 66.17162378958899]
- 0:-50.51431984538278
- 1:66.17162378958899
5976: [-50.51432436711115, 66.17135627681857]
- 0:-50.51432436711115
- 1:66.17135627681857
5977: [-50.512991040589775, 66.17135180895892]
- 0:-50.512991040589775
- 1:66.17135180895892
5978: [-50.51300000053777, 66.17108421795398]
- 0:-50.51300000053777
- 1:66.17108421795398
5979: [-50.51166653909046, 66.17107980141358]
- 0:-50.51166653909046
- 1:66.17107980141358
5980: [-50.511671153201505, 66.17080781170554]
- 0:-50.511671153201505
- 1:66.17080781170554
5981: [-50.50967790717715, 66.1708033259691]
- 0:-50.50967790717715
- 1:66.1708033259691
5982: [-50.50966906088554, 66.17107085091557]
- 0:-50.50966906088554
- 1:66.17107085091557
5983: [-50.50767581373802, 66.17106644992506]
- 0:-50.50767581373802
- 1:66.17106644992506
5984: [-50.50768023081858, 66.1707988869544]
- 0:-50.50768023081858
- 1:66.1707988869544
5985: [-50.50701576054658, 66.17079443245021]
- 0:-50.50701576054658
- 1:66.17079443245021
5986: [-50.507029267328285, 66.16998731908639]
- 0:-50.507029267328285
- 1:66.16998731908639
5987: [-50.50636481594972, 66.16998286125335]
- 0:-50.50636481594972
- 1:66.16998286125335
5988: [-50.50637367591454, 66.16944773811396]
- 0:-50.50637367591454
- 1:66.16944773811396
5989: [-50.507042630154224, 66.169447756396]
- 0:-50.507042630154224
- 1:66.169447756396
5990: [-50.507047053729856, 66.16918019518788]
- 0:-50.507047053729856
- 1:66.16918019518788
5991: [-50.50637827467115, 66.1691802283642]
- 0:-50.50637827467115
- 1:66.1691802283642
5992: [-50.506391650412546, 66.16864066752997]
- 0:-50.506391650412546
- 1:66.16864066752997
5993: [-50.50572723072641, 66.16863620652178]
- 0:-50.50572723072641
- 1:66.16863620652178
5994: [-50.5057448986117, 66.16756155492425]
- 0:-50.5057448986117
- 1:66.16756155492425
5995: [-50.506413808069425, 66.16756157630564]
- 0:-50.506413808069425
- 1:66.16756157630564
5996: [-50.50641823816283, 66.1672940171422]
- 0:-50.50641823816283
- 1:66.1672940171422
5997: [-50.51040922608635, 66.16730742890743]
- 0:-50.51040922608635
- 1:66.16730742890743
5998: [-50.51041361777417, 66.16703986965008]
- 0:-50.51041361777417
- 1:66.16703986965008
5999: [-50.51174695433788, 66.16703982066441]
- 0:-50.51174695433788
- 1:66.16703982066441
6000: [-50.51175150194582, 66.16677231295819]
- 0:-50.51175150194582
- 1:66.16677231295819
6001: [-50.5124158723891, 66.16677674170766]
- 0:-50.5124158723891
- 1:66.16677674170766
6002: [-50.51242485274653, 66.16623719794589]
- 0:-50.51242485274653
- 1:66.16623719794589
6003: [-50.513089130710505, 66.1662372107081]
- 0:-50.513089130710505
- 1:66.1662372107081
6004: [-50.51310262499845, 66.16570211837367]
- 0:-50.51310262499845
- 1:66.16570211837367
6005: [-50.51376688954406, 66.16570212746534]
- 0:-50.51376688954406
- 1:66.16570212746534
6006: [-50.51378915689109, 66.16462744413445]
- 0:-50.51378915689109
- 1:66.16462744413445
6007: [-50.51511804965223, 66.16463196628364]
- 0:-50.51511804965223
- 1:66.16463196628364
6008: [-50.515113533932315, 66.16489947204198]
- 0:-50.515113533932315
- 1:66.16489947204198
6009: [-50.51777576316746, 66.16490839545651]
- 0:-50.51777576316746
- 1:66.16490839545651
6010: [-50.51778015027737, 66.16463636041081]
- 0:-50.51778015027737
- 1:66.16463636041081
6011: [-50.51844448805808, 66.16464087356673]
- 0:-50.51844448805808
- 1:66.16464087356673
6012: [-50.51844886869055, 66.16436883874677]
- 0:-50.51844886869055
- 1:66.16436883874677
6013: [-50.52044666397508, 66.16437778633185]
- 0:-50.52044666397508
- 1:66.16437778633185
6014: [-50.520451105389775, 66.16411016390722]
- 0:-50.520451105389775
- 1:66.16411016390722
6015: [-50.52111549372859, 66.16411018515787]
- 0:-50.52111549372859
- 1:66.16411018515787
6016: [-50.52111113913132, 66.1643822199438]
- 0:-50.52111113913132
- 1:66.1643822199438
6017: [-50.522439926941225, 66.16438225198571]
- 0:-50.522439926941225
- 1:66.16438225198571
6018: [-50.52244434916083, 66.16411462937528]
- 0:-50.52244434916083
- 1:66.16411462937528
6019: [-50.523777649781465, 66.16411909718742]
- 0:-50.523777649781465
- 1:66.16411909718742
6020: [-50.52378214708151, 66.16384711381399]
- 0:-50.52378214708151
- 1:66.16384711381399
6021: [-50.52511077515412, 66.16385607265154]
- 0:-50.52511077515412
- 1:66.16385607265154
6022: [-50.525115405091285, 66.1635840240798]
- 0:-50.525115405091285
- 1:66.1635840240798
6023: [-50.52644853003384, 66.16358852864307]
- 0:-50.52644853003384
- 1:66.16358852864307
6024: [-50.52644412311802, 66.16385603433301]
- 0:-50.52644412311802
- 1:66.16385603433301
6025: [-50.52843729178313, 66.16386499863778]
- 0:-50.52843729178313
- 1:66.16386499863778
6026: [-50.5284418891557, 66.16359294974615]
- 0:-50.5284418891557
- 1:66.16359294974615
6027: [-50.52910619368275, 66.16359740615914]
- 0:-50.52910619368275
- 1:66.16359740615914
6028: [-50.529115231687705, 66.1633253950029]
- 0:-50.529115231687705
- 1:66.1633253950029
6029: [-50.529779529295034, 66.16332984780101]
- 0:-50.529779529295034
- 1:66.16332984780101
6030: [-50.529792863619626, 66.16252278933872]
- 0:-50.529792863619626
- 1:66.16252278933872
6031: [-50.530457373972524, 66.16252281214557]
- 0:-50.530457373972524
- 1:66.16252281214557
6032: [-50.53047511292779, 66.16171567679947]
- 0:-50.53047511292779
- 1:66.16171567679947
6033: [-50.52914177040606, 66.16171122966979]
- 0:-50.52914177040606
- 1:66.16171122966979
6034: [-50.529146297486015, 66.16144366063605]
- 0:-50.529146297486015
- 1:66.16144366063605
6035: [-50.52781755812318, 66.16143917162515]
- 0:-50.52781755812318
- 1:66.16143917162515
6036: [-50.52782195241905, 66.1611716683599]
- 0:-50.52782195241905
- 1:66.1611716683599
6037: [-50.527157704841834, 66.1611672055087]
- 0:-50.527157704841834
- 1:66.1611672055087
6038: [-50.52716210555556, 66.16089970259017]
- 0:-50.52716210555556
- 1:66.16089970259017
6039: [-50.52516876734128, 66.16089521089657]
- 0:-50.52516876734128
- 1:66.16089521089657
6040: [-50.52515992377088, 66.16116279270823]
- 0:-50.52515992377088
- 1:66.16116279270823
6041: [-50.526493078168464, 66.16116723072729]
- 0:-50.526493078168464
- 1:66.16116723072729
6042: [-50.52648867108218, 66.1614347338674]
- 0:-50.52648867108218
- 1:66.1614347338674
6043: [-50.527153094299145, 66.16143925167869]
- 0:-50.527153094299145
- 1:66.16143925167869
6044: [-50.52714869363235, 66.16170675516562]
- 0:-50.52714869363235
- 1:66.16170675516562
6045: [-50.52648436838743, 66.16170676627253]
- 0:-50.52648436838743
- 1:66.16170676627253
6046: [-50.52647981574526, 66.16197433533958]
- 0:-50.52647981574526
- 1:66.16197433533958
6047: [-50.523817705622974, 66.16196543066903]
- 0:-50.523817705622974
- 1:66.16196543066903
6048: [-50.52381327298512, 66.16223293440832]
- 0:-50.52381327298512
- 1:66.16223293440832
6049: [-50.52314893202945, 66.16223292773715]
- 0:-50.52314893202945
- 1:66.16223292773715
6050: [-50.523139900392614, 66.16250045933062]
- 0:-50.523139900392614
- 1:66.16250045933062
6051: [-50.52247555241267, 66.16250044904807]
- 0:-50.52247555241267
- 1:66.16250044904807
6052: [-50.52248450833078, 66.16196096391715]
- 0:-50.52248450833078
- 1:66.16196096391715
6053: [-50.521155587163285, 66.1619564693812]
- 0:-50.521155587163285
- 1:66.1619564693812
6054: [-50.52115129762245, 66.16222402424516]
- 0:-50.52115129762245
- 1:66.16222402424516
6055: [-50.52048680875238, 66.16222406879602]
- 0:-50.52048680875238
- 1:66.16222406879602
6056: [-50.52049125031035, 66.16195644864011]
- 0:-50.52049125031035
- 1:66.16195644864011
6057: [-50.51982683264026, 66.16195201211423]
- 0:-50.51982683264026
- 1:66.16195201211423
6058: [-50.51983130371385, 66.16168450903405]
- 0:-50.51983130371385
- 1:66.16168450903405
6059: [-50.518498113002266, 66.16167999990151]
- 0:-50.518498113002266
- 1:66.16167999990151
6060: [-50.51848910265809, 66.16221960043171]
- 0:-50.51848910265809
- 1:66.16221960043171
6061: [-50.51982229615994, 66.16222399308988]
- 0:-50.51982229615994
- 1:66.16222399308988
6062: [-50.5198089301518, 66.16275907955702]
- 0:-50.5198089301518
- 1:66.16275907955702
6063: [-50.51914474158147, 66.16275910293585]
- 0:-50.51914474158147
- 1:66.16275910293585
6064: [-50.5191401185331, 66.16302667243711]
- 0:-50.5191401185331
- 1:66.16302667243711
6065: [-50.51847575422112, 66.16302664084965]
- 0:-50.51847575422112
- 1:66.16302664084965
6066: [-50.51848030367844, 66.16275465913796]
- 0:-50.51848030367844
- 1:66.16275465913796
6067: [-50.51781579961251, 66.16275468943394]
- 0:-50.51781579961251
- 1:66.16275468943394
6068: [-50.51782026675839, 66.16248706896118]
- 0:-50.51782026675839
- 1:66.16248706896118
6069: [-50.517155834321635, 66.162482618175]
- 0:-50.517155834321635
- 1:66.162482618175
6070: [-50.517169221487244, 66.16167557984987]
- 0:-50.517169221487244
- 1:66.16167557984987
6071: [-50.51450713094006, 66.16166659404864]
- 0:-50.51450713094006
- 1:66.16166659404864
6072: [-50.51451593145374, 66.16139907839768]
- 0:-50.51451593145374
- 1:66.16139907839768
6073: [-50.513847244260525, 66.16139462357526]
- 0:-50.513847244260525
- 1:66.16139462357526
6074: [-50.513856051153354, 66.16112710829397]
- 0:-50.513856051153354
- 1:66.16112710829397
6075: [-50.5131871347779, 66.16112707618663]
- 0:-50.5131871347779
- 1:66.16112707618663
6076: [-50.51319601455406, 66.16085508369046]
- 0:-50.51319601455406
- 1:66.16085508369046
6077: [-50.512527272795154, 66.1608550994803]
- 0:-50.512527272795154
- 1:66.1608550994803
6078: [-50.51251391894489, 66.1616621853073]
- 0:-50.51251391894489
- 1:66.1616621853073
6079: [-50.51118501798398, 66.16165770172171]
- 0:-50.51118501798398
- 1:66.16165770172171
6080: [-50.51118957229921, 66.16139019974209]
- 0:-50.51118957229921
- 1:66.16139019974209
6081: [-50.50985640385869, 66.16138571537283]
- 0:-50.50985640385869
- 1:66.16138571537283
6082: [-50.50986514752824, 66.16111367163245]
- 0:-50.50986514752824
- 1:66.16111367163245
6083: [-50.50919639640041, 66.16111366958677]
- 0:-50.50919639640041
- 1:66.16111366958677
6084: [-50.50920972012556, 66.16057412528446]
- 0:-50.50920972012556
- 1:66.16057412528446
6085: [-50.50854542812568, 66.16057415804941]
- 0:-50.50854542812568
- 1:66.16057415804941
6086: [-50.50854976102636, 66.16030219383642]
- 0:-50.50854976102636
- 1:66.16030219383642
6087: [-50.50788530621275, 66.16030217174182]
- 0:-50.50788530621275
- 1:66.16030217174182
6088: [-50.50788979128439, 66.16003014254439]
- 0:-50.50788979128439
- 1:66.16003014254439
6089: [-50.507225342350225, 66.16003011698294]
- 0:-50.507225342350225
- 1:66.16003011698294
6090: [-50.50723000263152, 66.1597581395326]
- 0:-50.50723000263152
- 1:66.1597581395326
6091: [-50.50656555957583, 66.15975811050524]
- 0:-50.50656555957583
- 1:66.15975811050524
6092: [-50.50656999012272, 66.15949055955939]
- 0:-50.50656999012272
- 1:66.15949055955939
6093: [-50.50590547487708, 66.15948611485298]
- 0:-50.50590547487708
- 1:66.15948611485298
6094: [-50.505914517509446, 66.1589510653333]
- 0:-50.505914517509446
- 1:66.1589510653333
6095: [-50.50525001464474, 66.15894661723026]
- 0:-50.50525001464474
- 1:66.15894661723026
6096: [-50.505254458052086, 66.15867906726051]
- 0:-50.505254458052086
- 1:66.15867906726051
6097: [-50.503925541522996, 66.15867457279869]
- 0:-50.503925541522996
- 1:66.15867457279869
6098: [-50.503930065749834, 66.15840254571344]
- 0:-50.503930065749834
- 1:66.15840254571344
6099: [-50.50260132882836, 66.15839808866858]
- 0:-50.50260132882836
- 1:66.15839808866858
6100: [-50.5025925137671, 66.15867012857869]
- 0:-50.5025925137671
- 1:66.15867012857869
6101: [-50.50325676588955, 66.15867012715317]
- 0:-50.50325676588955
- 1:66.15867012715317
6102: [-50.50325238078988, 66.15894208913298]
- 0:-50.50325238078988
- 1:66.15894208913298
6103: [-50.503921085324286, 66.15894212264297]
- 0:-50.503921085324286
- 1:66.15894212264297
6104: [-50.50391228323762, 66.15921416330373]
- 0:-50.50391228323762
- 1:66.15921416330373
6105: [-50.50458113933728, 66.15921412799266]
- 0:-50.50458113933728
- 1:66.15921412799266
6106: [-50.504563275531595, 66.16002121943256]
- 0:-50.504563275531595
- 1:66.16002121943256
6107: [-50.50323446236331, 66.16001676863797]
- 0:-50.50323446236331
- 1:66.16001676863797
6108: [-50.50323892490841, 66.15974921772155]
- 0:-50.50323892490841
- 1:66.15974921772155
6109: [-50.502574569563244, 66.15974480668939]
- 0:-50.502574569563244
- 1:66.15974480668939
6110: [-50.502579038525994, 66.15947725612008]
- 0:-50.502579038525994
- 1:66.15947725612008
6111: [-50.50191466614628, 66.15947272489679]
- 0:-50.50191466614628
- 1:66.15947272489679
6112: [-50.50191914152666, 66.15920517467475]
- 0:-50.50191914152666
- 1:66.15920517467475
6113: [-50.501254729716855, 66.15920523425433]
- 0:-50.501254729716855
- 1:66.15920523425433
6114: [-50.50126359310002, 66.15866560585151]
- 0:-50.50126359310002
- 1:66.15866560585151
6115: [-50.500599262102405, 66.15866118450157]
- 0:-50.500599262102405
- 1:66.15866118450157
6116: [-50.50060375034015, 66.15839363525616]
- 0:-50.50060375034015
- 1:66.15839363525616
6117: [-50.49993925666248, 66.15838915904196]
- 0:-50.49993925666248
- 1:66.15838915904196
6118: [-50.49994810034349, 66.15785412685443]
- 0:-50.49994810034349
- 1:66.15785412685443
6119: [-50.501281407857455, 66.15785858507824]
- 0:-50.501281407857455
- 1:66.15785858507824
6120: [-50.501276926011805, 66.15812613382036]
- 0:-50.501276926011805
- 1:66.15812613382036
6121: [-50.50194141236456, 66.15813060289146]
- 0:-50.50194141236456
- 1:66.15813060289146
6122: [-50.50195026295218, 66.15759097665229]
- 0:-50.50195026295218
- 1:66.15759097665229
6123: [-50.50128595816004, 66.15758655911351]
- 0:-50.50128595816004
- 1:66.15758655911351
6124: [-50.501290440049885, 66.15731901094041]
- 0:-50.501290440049885
- 1:66.15731901094041
6125: [-50.50062590403992, 66.15731901603765]
- 0:-50.50062590403992
- 1:66.15731901603765
6126: [-50.50063046088992, 66.157046990713]
- 0:-50.50063046088992
- 1:66.157046990713
6127: [-50.49996593075863, 66.15704699234242]
- 0:-50.49996593075863
- 1:66.15704699234242
6128: [-50.499970494133464, 66.15677496737099]
- 0:-50.499970494133464
- 1:66.15677496737099
6129: [-50.49930613853302, 66.15677501693685]
- 0:-50.49930613853302
- 1:66.15677501693685
6130: [-50.49932841249188, 66.15569592763323]
- 0:-50.49932841249188
- 1:66.15569592763323
6131: [-50.50065717159119, 66.15570035331477]
- 0:-50.50065717159119
- 1:66.15570035331477
6132: [-50.50065261466995, 66.15597237719557]
- 0:-50.50065261466995
- 1:66.15597237719557
6133: [-50.501981553351854, 66.15597684029618]
- 0:-50.501981553351854
- 1:66.15597684029618
6134: [-50.50198609726928, 66.15570481628761]
- 0:-50.50198609726928
- 1:66.15570481628761
6135: [-50.50265035657007, 66.15570922981911]
- 0:-50.50265035657007
- 1:66.15570922981911
6136: [-50.50264151863589, 66.15624885217682]
- 0:-50.50264151863589
- 1:66.15624885217682
6137: [-50.503305858534766, 66.15624878482924]
- 0:-50.503305858534766
- 1:66.15624878482924
6138: [-50.503301395780404, 66.15651633205529]
- 0:-50.503301395780404
- 1:66.15651633205529
6139: [-50.50396584209571, 66.15652079012828]
- 0:-50.50396584209571
- 1:66.15652079012828
6140: [-50.50396138575914, 66.15678833770164]
- 0:-50.50396138575914
- 1:66.15678833770164
6141: [-50.50462569242426, 66.15679285764418]
- 0:-50.50462569242426
- 1:66.15679285764418
6142: [-50.504621242504356, 66.15706040556488]
- 0:-50.504621242504356
- 1:66.15706040556488
6143: [-50.50528570079048, 66.15706485671437]
- 0:-50.50528570079048
- 1:66.15706485671437
6144: [-50.50529910179949, 66.15652532188275]
- 0:-50.50529910179949
- 1:66.15652532188275
6145: [-50.50795669966595, 66.15653414954113]
- 0:-50.50795669966595
- 1:66.15653414954113
6146: [-50.50796120802071, 66.15626224111054]
- 0:-50.50796120802071
- 1:66.15626224111054
6147: [-50.50929000236573, 66.15626669201232]
- 0:-50.50929000236573
- 1:66.15626669201232
6148: [-50.50930340437288, 66.15573157015284]
- 0:-50.50930340437288
- 1:66.15573157015284
6149: [-50.50664127315146, 66.15572268187076]
- 0:-50.50664127315146
- 1:66.15572268187076
6150: [-50.50665464829384, 66.15518314960106]
- 0:-50.50665464829384
- 1:66.15518314960106
6151: [-50.50598586803823, 66.15518307982413]
- 0:-50.50598586803823
- 1:66.15518307982413
6152: [-50.506003693333845, 66.15437600335449]
- 0:-50.506003693333845
- 1:66.15437600335449
6153: [-50.50666800837852, 66.15437603462598]
- 0:-50.50666800837852
- 1:66.15437603462598
6154: [-50.506672439259, 66.15410848935564]
- 0:-50.506672439259
- 1:66.15410848935564
6155: [-50.50733689290286, 66.15410845170528]
- 0:-50.50733689290286
- 1:66.15410845170528
6156: [-50.507345763117215, 66.15384094493103]
- 0:-50.507345763117215
- 1:66.15384094493103
6157: [-50.50801020973801, 66.153840903668]
- 0:-50.50801020973801
- 1:66.153840903668
6158: [-50.5080057242968, 66.15411292622996]
- 0:-50.5080057242968
- 1:66.15411292622996
6159: [-50.50933448305145, 66.15411289857623]
- 0:-50.50933448305145
- 1:66.15411289857623
6160: [-50.509321159570604, 66.15465242915113]
- 0:-50.509321159570604
- 1:66.15465242915113
6161: [-50.50999000248735, 66.15465689315474]
- 0:-50.50999000248735
- 1:66.15465689315474
6162: [-50.50997661334769, 66.15519201289372]
- 0:-50.50997661334769
- 1:66.15519201289372
6163: [-50.51130979900353, 66.15519648021564]
- 0:-50.51130979900353
- 1:66.15519648021564
6164: [-50.511314499283365, 66.1549289197066]
- 0:-50.511314499283365
- 1:66.1549289197066
6165: [-50.51197882254396, 66.15492892285508]
- 0:-50.51197882254396
- 1:66.15492892285508
6166: [-50.511987750505455, 66.15439388185332]
- 0:-50.511987750505455
- 1:66.15439388185332
6167: [-50.51332104003818, 66.15439826217205]
- 0:-50.51332104003818
- 1:66.15439826217205
6168: [-50.51332547340478, 66.15412623881502]
- 0:-50.51332547340478
- 1:66.15412623881502
6169: [-50.51266102497593, 66.15412630826772]
- 0:-50.51266102497593
- 1:66.15412630826772
6170: [-50.51266546486842, 66.15385428526346]
- 0:-50.51266546486842
- 1:66.15385428526346
6171: [-50.51000343479194, 66.15384983033519]
- 0:-50.51000343479194
- 1:66.15384983033519
6172: [-50.51001229969324, 66.15331026314287]
- 0:-50.51001229969324
- 1:66.15331026314287
6173: [-50.50735467959665, 66.15330137824296]
- 0:-50.50735467959665
- 1:66.15330137824296
6174: [-50.50735025508309, 66.15356892272213]
- 0:-50.50735025508309
- 1:66.15356892272213
6175: [-50.506685959949735, 66.15356889518415]
- 0:-50.506685959949735
- 1:66.15356889518415
6176: [-50.50669031282701, 66.1532969386617]
- 0:-50.50669031282701
- 1:66.1532969386617
6177: [-50.5060260235685, 66.15329690765698]
- 0:-50.5060260235685
- 1:66.15329690765698
6178: [-50.506034965927, 66.15275734237]
- 0:-50.506034965927
- 1:66.15275734237
6179: [-50.505370374687544, 66.15275732189617]
- 0:-50.505370374687544
- 1:66.15275732189617
6180: [-50.50537933003521, 66.15221775787955]
- 0:-50.50537933003521
- 1:66.15221775787955
6181: [-50.50471491970155, 66.15221778539285]
- 0:-50.50471491970155
- 1:66.15221778539285
6182: [-50.50475944728046, 66.15006404400744]
- 0:-50.50475944728046
- 1:66.15006404400744
6183: [-50.504095155803505, 66.15005959114832]
- 0:-50.504095155803505
- 1:66.15005959114832
6184: [-50.50409961249467, 66.14979205067529]
- 0:-50.50409961249467
- 1:66.14979205067529
6185: [-50.503435258876365, 66.14979207172486]
- 0:-50.503435258876365
- 1:66.14979207172486
6186: [-50.50345307906938, 66.14871290680166]
- 0:-50.50345307906938
- 1:66.14871290680166
6187: [-50.50411740690745, 66.14871288550951]
- 0:-50.50411740690745
- 1:66.14871288550951
6188: [-50.50413076535628, 66.14817784607357]
- 0:-50.50413076535628
- 1:66.14817784607357
6189: [-50.5047952483926, 66.14817787250371]
- 0:-50.5047952483926
- 1:66.14817787250371
6190: [-50.50479969880781, 66.14791033395784]
- 0:-50.50479969880781
- 1:66.14791033395784
6191: [-50.5054640062213, 66.14791030540381]
- 0:-50.5054640062213
- 1:66.14791030540381
6192: [-50.505468450268445, 66.14764276708033]
- 0:-50.505468450268445
- 1:66.14764276708033
6193: [-50.5061329971596, 66.14764719833539]
- 0:-50.5061329971596
- 1:66.14764719833539
6194: [-50.50614194721067, 66.14737522120822]
- 0:-50.50614194721067
- 1:66.14737522120822
6195: [-50.50547289433823, 66.14737522903957]
- 0:-50.50547289433823
- 1:66.14737522903957
6196: [-50.50548199645594, 66.14710318695863]
- 0:-50.50548199645594
- 1:66.14710318695863
6197: [-50.50481753972405, 66.14710316432442]
- 0:-50.50481753972405
- 1:66.14710316432442
6198: [-50.50485317293147, 66.1452169634747]
- 0:-50.50485317293147
- 1:66.1452169634747
6199: [-50.50418878365404, 66.14521705448257]
- 0:-50.50418878365404
- 1:66.14521705448257
6200: [-50.50419759705541, 66.14467745537645]
- 0:-50.50419759705541
- 1:66.14467745537645
6201: [-50.50353336561427, 66.14467747764809]
- 0:-50.50353336561427
- 1:66.14467747764809
6202: [-50.50357782857716, 66.14252375003953]
- 0:-50.50357782857716
- 1:66.14252375003953
6203: [-50.502244608413505, 66.14251923191247]
- 0:-50.502244608413505
- 1:66.14251923191247
6204: [-50.50225352861886, 66.14225173803219]
- 0:-50.50225352861886
- 1:66.14225173803219
6205: [-50.50158910755483, 66.14224728700499]
- 0:-50.50158910755483
- 1:66.14224728700499
6206: [-50.50159342168768, 66.1419797036324]
- 0:-50.50159342168768
- 1:66.1419797036324
6207: [-50.50092915217299, 66.1419751838169]
- 0:-50.50092915217299
- 1:66.1419751838169
6208: [-50.50093364128389, 66.14170765219033]
- 0:-50.50093364128389
- 1:66.14170765219033
6209: [-50.50292685703748, 66.14171211575481]
- 0:-50.50292685703748
- 1:66.14171211575481
1: List (4 elements)
0: [-50.42311777474328, 66.20222213686813]
- 0:-50.42311777474328
- 1:66.20222213686813
1: [-50.422926164009475, 66.20226228453883]
- 0:-50.422926164009475
- 1:66.20226228453883
2: [-50.423113434247966, 66.20226671932227]
- 0:-50.423113434247966
- 1:66.20226671932227
3: [-50.42311777474328, 66.20222213686813]
- 0:-50.42311777474328
- 1:66.20222213686813
2: List (4 elements)
0: [-50.42450900278992, 66.19957790003305]
- 0:-50.42450900278992
- 1:66.19957790003305
1: [-50.42412114600388, 66.19957791858413]
- 0:-50.42412114600388
- 1:66.19957791858413
2: [-50.42450471158506, 66.19972056825372]
- 0:-50.42450471158506
- 1:66.19972056825372
3: [-50.42450900278992, 66.19957790003305]
- 0:-50.42450900278992
- 1:66.19957790003305
3: List (4 elements)
0: [-50.27409021743861, 66.19436967696565]
- 0:-50.27409021743861
- 1:66.19436967696565
1: [-50.27394751658952, 66.19436966531293]
- 0:-50.27394751658952
- 1:66.19436966531293
2: [-50.27408569935241, 66.19449006017288]
- 0:-50.27408569935241
- 1:66.19449006017288
3: [-50.27409021743861, 66.19436967696565]
- 0:-50.27409021743861
- 1:66.19436967696565
4: List (5 elements)
0: [-50.4885195673179, 66.19684002409805]
- 0:-50.4885195673179
- 1:66.19684002409805
1: [-50.48851504749431, 66.19711202553735]
- 0:-50.48851504749431
- 1:66.19711202553735
2: [-50.489183863394395, 66.19711200269434]
- 0:-50.489183863394395
- 1:66.19711200269434
3: [-50.48918830644677, 66.19684447937146]
- 0:-50.48918830644677
- 1:66.19684447937146
4: [-50.4885195673179, 66.19684002409805]
- 0:-50.4885195673179
- 1:66.19684002409805
5: List (5 elements)
0: [-50.488653327748764, 66.19038320734512]
- 0:-50.488653327748764
- 1:66.19038320734512
1: [-50.487984429080974, 66.19037876411267]
- 0:-50.487984429080974
- 1:66.19037876411267
2: [-50.48797990241213, 66.19065075861657]
- 0:-50.48797990241213
- 1:66.19065075861657
3: [-50.48864444926978, 66.19065080161626]
- 0:-50.48864444926978
- 1:66.19065080161626
4: [-50.488653327748764, 66.19038320734512]
- 0:-50.488653327748764
- 1:66.19038320734512
6: List (5 elements)
0: [-50.51225081595452, 66.1753872886876]
- 0:-50.51225081595452
- 1:66.1753872886876
1: [-50.511581959194864, 66.17538287097376]
- 0:-50.511581959194864
- 1:66.17538287097376
2: [-50.511573112701726, 66.17592236866034]
- 0:-50.511573112701726
- 1:66.17592236866034
3: [-50.512237387525545, 66.17592681372673]
- 0:-50.512237387525545
- 1:66.17592681372673
4: [-50.51225081595452, 66.1753872886876]
- 0:-50.51225081595452
- 1:66.1753872886876
7: List (5 elements)
0: [-50.411073836058, 66.20437146312155]
- 0:-50.411073836058
- 1:66.20437146312155
1: [-50.410405009669255, 66.20437146984999]
- 0:-50.410405009669255
- 1:66.20437146984999
2: [-50.4104004387732, 66.20463896631536]
- 0:-50.4104004387732
- 1:66.20463896631536
3: [-50.4110649033193, 66.20464344762759]
- 0:-50.4110649033193
- 1:66.20464344762759
4: [-50.411073836058, 66.20437146312155]
- 0:-50.411073836058
- 1:66.20437146312155
8: List (5 elements)
0: [-50.409753905380136, 66.20382745366449]
- 0:-50.409753905380136
- 1:66.20382745366449
1: [-50.40775182870696, 66.20382295438452]
- 0:-50.40775182870696
- 1:66.20382295438452
2: [-50.4077474009051, 66.20409050157268]
- 0:-50.4077474009051
- 1:66.20409050157268
3: [-50.409744959652535, 66.20409943742524]
- 0:-50.409744959652535
- 1:66.20409943742524
4: [-50.409753905380136, 66.20382745366449]
- 0:-50.409753905380136
- 1:66.20382745366449
9: List (5 elements)
0: [-50.395244061864204, 66.19758469372205]
- 0:-50.395244061864204
- 1:66.19758469372205
1: [-50.39523505874301, 66.19785219094658]
- 0:-50.39523505874301
- 1:66.19785219094658
2: [-50.39590397179821, 66.19785672868218]
- 0:-50.39590397179821
- 1:66.19785672868218
3: [-50.39590843175517, 66.19758465948874]
- 0:-50.39590843175517
- 1:66.19758465948874
4: [-50.395244061864204, 66.19758469372205]
- 0:-50.395244061864204
- 1:66.19758469372205
10: List (5 elements)
0: [-50.49905643697261, 66.13578152821397]
- 0:-50.49905643697261
- 1:66.13578152821397
1: [-50.49839185380428, 66.13577707512474]
- 0:-50.49839185380428
- 1:66.13577707512474
2: [-50.49838743834661, 66.1360491287516]
- 0:-50.49838743834661
- 1:66.1360491287516
3: [-50.49905192837655, 66.13604905338687]
- 0:-50.49905192837655
- 1:66.13604905338687
4: [-50.49905643697261, 66.13578152821397]
- 0:-50.49905643697261
- 1:66.13578152821397
11: List (5 elements)
0: [-50.48646390876658, 66.1341227816809]
- 0:-50.48646390876658
- 1:66.1341227816809
1: [-50.48646837035888, 66.13385520829014]
- 0:-50.48646837035888
- 1:66.13385520829014
2: [-50.48580399189687, 66.13385074001405]
- 0:-50.48580399189687
- 1:66.13385074001405
3: [-50.48579945288758, 66.13412279040573]
- 0:-50.48579945288758
- 1:66.13412279040573
4: [-50.48646390876658, 66.1341227816809]
- 0:-50.48646390876658
- 1:66.1341227816809
12: List (5 elements)
0: [-50.47939611469301, 66.12225707649385]
- 0:-50.47939611469301
- 1:66.12225707649385
1: [-50.47939182414959, 66.12252909989417]
- 0:-50.47939182414959
- 1:66.12252909989417
2: [-50.48005615500813, 66.12252905834629]
- 0:-50.48005615500813
- 1:66.12252905834629
3: [-50.48006053547026, 66.12226156315427]
- 0:-50.48006053547026
- 1:66.12226156315427
4: [-50.47939611469301, 66.12225707649385]
- 0:-50.47939611469301
- 1:66.12225707649385
13: List (5 elements)
0: [-50.47939611469301, 66.12225707649385]
- 0:-50.47939611469301
- 1:66.12225707649385
1: [-50.47940954679575, 66.12171758419385]
- 0:-50.47940954679575
- 1:66.12171758419385
2: [-50.47808065746023, 66.12171307742223]
- 0:-50.47808065746023
- 1:66.12171307742223
3: [-50.47806736800236, 66.12225262084652]
- 0:-50.47806736800236
- 1:66.12225262084652
4: [-50.47939611469301, 66.12225707649385]
- 0:-50.47939611469301
- 1:66.12225707649385
14: List (5 elements)
0: [-50.46950588418862, 66.11872552945874]
- 0:-50.46950588418862
- 1:66.11872552945874
1: [-50.4695014014661, 66.11899301993346]
- 0:-50.4695014014661
- 1:66.11899301993346
2: [-50.47016589755789, 66.11899749340884]
- 0:-50.47016589755789
- 1:66.11899749340884
3: [-50.47017027912837, 66.1187254746662]
- 0:-50.47017027912837
- 1:66.1187254746662
4: [-50.46950588418862, 66.11872552945874]
- 0:-50.46950588418862
- 1:66.11872552945874
15: List (5 elements)
0: [-50.30401515778251, 66.19612211943839]
- 0:-50.30401515778251
- 1:66.19612211943839
1: [-50.30335082871951, 66.19612213367725]
- 0:-50.30335082871951
- 1:66.19612213367725
2: [-50.30334190657037, 66.19638969399925]
- 0:-50.30334190657037
- 1:66.19638969399925
3: [-50.304010741763335, 66.19639413815975]
- 0:-50.304010741763335
- 1:66.19639413815975
4: [-50.30401515778251, 66.19612211943839]
- 0:-50.30401515778251
- 1:66.19612211943839
16: List (5 elements)
0: [-50.28576861011665, 66.18177719339951]
- 0:-50.28576861011665
- 1:66.18177719339951
1: [-50.28510424949545, 66.18177271364824]
- 0:-50.28510424949545
- 1:66.18177271364824
2: [-50.285095318985626, 66.1820403083236]
- 0:-50.285095318985626
- 1:66.1820403083236
3: [-50.285764115117246, 66.18204471756516]
- 0:-50.285764115117246
- 1:66.18204471756516
4: [-50.28576861011665, 66.18177719339951]
- 0:-50.28576861011665
- 1:66.18177719339951
17: List (5 elements)
0: [-50.28309751452087, 66.18203134405644]
- 0:-50.28309751452087
- 1:66.18203134405644
1: [-50.28243331430599, 66.18202690179669]
- 0:-50.28243331430599
- 1:66.18202690179669
2: [-50.28242423233548, 66.18229885722293]
- 0:-50.28242423233548
- 1:66.18229885722293
3: [-50.28309316231777, 66.18229891995057]
- 0:-50.28309316231777
- 1:66.18229891995057
4: [-50.28309751452087, 66.18203134405644]
- 0:-50.28309751452087
- 1:66.18203134405644
18: List (5 elements)
0: [-50.246270017493956, 66.1891257646104]
- 0:-50.246270017493956
- 1:66.1891257646104
1: [-50.244272373492244, 66.1891168519964]
- 0:-50.244272373492244
- 1:66.1891168519964
2: [-50.24426336475525, 66.18938443597075]
- 0:-50.24426336475525
- 1:66.18938443597075
3: [-50.24626102801324, 66.18939334884298]
- 0:-50.24626102801324
- 1:66.18939334884298
4: [-50.246270017493956, 66.1891257646104]
- 0:-50.246270017493956
- 1:66.1891257646104
19: List (5 elements)
0: [-50.41491317145219, 66.09591715439981]
- 0:-50.41491317145219
- 1:66.09591715439981
1: [-50.41491753360519, 66.09564960431148]
- 0:-50.41491753360519
- 1:66.09564960431148
2: [-50.41359324115785, 66.09564515073843]
- 0:-50.41359324115785
- 1:66.09564515073843
3: [-50.4135842838222, 66.09591272437078]
- 0:-50.4135842838222
- 1:66.09591272437078
4: [-50.41491317145219, 66.09591715439981]
- 0:-50.41491317145219
- 1:66.09591715439981
20: List (5 elements)
0: [-50.23893915309013, 66.18935770225491]
- 0:-50.23893915309013
- 1:66.18935770225491
1: [-50.23827033668266, 66.18935321038313]
- 0:-50.23827033668266
- 1:66.18935321038313
2: [-50.23826590502259, 66.18962518932425]
- 0:-50.23826590502259
- 1:66.18962518932425
3: [-50.238930239440094, 66.1896252207907]
- 0:-50.238930239440094
- 1:66.1896252207907
4: [-50.23893915309013, 66.18935770225491]
- 0:-50.23893915309013
- 1:66.18935770225491
21: List (5 elements)
0: [-50.38603607441538, 66.1103423859758]
- 0:-50.38603607441538
- 1:66.1103423859758
1: [-50.386026998998, 66.11060990661858]
- 0:-50.386026998998
- 1:66.11060990661858
2: [-50.38669143671281, 66.11061440734342]
- 0:-50.38669143671281
- 1:66.11061440734342
3: [-50.38669583957763, 66.11034238124643]
- 0:-50.38669583957763
- 1:66.11034238124643
4: [-50.38603607441538, 66.1103423859758]
- 0:-50.38603607441538
- 1:66.1103423859758
22: List (5 elements)
0: [-50.23761473051861, 66.18908119299502]
- 0:-50.23761473051861
- 1:66.18908119299502
1: [-50.23695040793156, 66.18908115462169]
- 0:-50.23695040793156
- 1:66.18908115462169
2: [-50.236941328614726, 66.18934873764401]
- 0:-50.236941328614726
- 1:66.18934873764401
3: [-50.237606008178375, 66.18935317545186]
- 0:-50.237606008178375
- 1:66.18935317545186
4: [-50.23761473051861, 66.18908119299502]
- 0:-50.23761473051861
- 1:66.18908119299502
23: List (5 elements)
0: [-50.41226436425837, 66.09564070673797]
- 0:-50.41226436425837
- 1:66.09564070673797
1: [-50.411599966598715, 66.09563624130077]
- 0:-50.411599966598715
- 1:66.09563624130077
2: [-50.41159557259687, 66.09590379107802]
- 0:-50.41159557259687
- 1:66.09590379107802
3: [-50.41225997663521, 66.09590825657948]
- 0:-50.41225997663521
- 1:66.09590825657948
4: [-50.41226436425837, 66.09564070673797]
- 0:-50.41226436425837
- 1:66.09564070673797
24: List (5 elements)
0: [-50.41295563958882, 66.09456608880268]
- 0:-50.41295563958882
- 1:66.09456608880268
1: [-50.41229126806297, 66.0945616272084]
- 0:-50.41229126806297
- 1:66.0945616272084
2: [-50.41228236069264, 66.09483361056185]
- 0:-50.41228236069264
- 1:66.09483361056185
3: [-50.41294667604735, 66.09483366120061]
- 0:-50.41294667604735
- 1:66.09483366120061
4: [-50.41295563958882, 66.09456608880268]
- 0:-50.41295563958882
- 1:66.09456608880268
25: List (5 elements)
0: [-50.41094006776865, 66.09563622502355]
- 0:-50.41094006776865
- 1:66.09563622502355
1: [-50.41027552364233, 66.09563181774632]
- 0:-50.41027552364233
- 1:66.09563181774632
2: [-50.41027111692601, 66.09589936740016]
- 0:-50.41027111692601
- 1:66.09589936740016
3: [-50.41093108494514, 66.09590379831141]
- 0:-50.41093108494514
- 1:66.09590379831141
4: [-50.41094006776865, 66.09563622502355]
- 0:-50.41094006776865
- 1:66.09563622502355
26: List (5 elements)
0: [-50.232032073098104, 66.17559685389814]
- 0:-50.232032073098104
- 1:66.17559685389814
1: [-50.231363121457456, 66.17559240546144]
- 0:-50.231363121457456
- 1:66.17559240546144
2: [-50.23135419042013, 66.17586443774478]
- 0:-50.23135419042013
- 1:66.17586443774478
3: [-50.232022945602196, 66.17586442212767]
- 0:-50.232022945602196
- 1:66.17586442212767
4: [-50.232032073098104, 66.17559685389814]
- 0:-50.232032073098104
- 1:66.17559685389814
27: List (5 elements)
0: [-50.23272761540696, 66.17452226400881]
- 0:-50.23272761540696
- 1:66.17452226400881
1: [-50.232063321496604, 66.17452221486593]
- 0:-50.232063321496604
- 1:66.17452221486593
2: [-50.23205419424039, 66.1747897819679]
- 0:-50.23205419424039
- 1:66.1747897819679
3: [-50.23271867574633, 66.17479417853725]
- 0:-50.23271867574633
- 1:66.17479417853725
4: [-50.23272761540696, 66.17452226400881]
- 0:-50.23272761540696
- 1:66.17452226400881
28: List (5 elements)
0: [-50.23340996909955, 66.173987124167]
- 0:-50.23340996909955
- 1:66.173987124167
1: [-50.23208105805626, 66.17398263064369]
- 0:-50.23208105805626
- 1:66.17398263064369
2: [-50.23207209926579, 66.17425024894503]
- 0:-50.23207209926579
- 1:66.17425024894503
3: [-50.23340088966596, 66.1742591032235]
- 0:-50.23340088966596
- 1:66.1742591032235
4: [-50.23340996909955, 66.173987124167]
- 0:-50.23340996909955
- 1:66.173987124167
29: List (5 elements)
0: [-50.22802766902226, 66.17584655175213]
- 0:-50.22802766902226
- 1:66.17584655175213
1: [-50.22801881773264, 66.17611410650292]
- 0:-50.22801881773264
- 1:66.17611410650292
2: [-50.22868778439203, 66.17611857288688]
- 0:-50.22868778439203
- 1:66.17611857288688
3: [-50.22869203230235, 66.17585103485986]
- 0:-50.22869203230235
- 1:66.17585103485986
4: [-50.22802766902226, 66.17584655175213]
- 0:-50.22802766902226
- 1:66.17584655175213
30: List (5 elements)
0: [-50.23073006628529, 66.1745132981866]
- 0:-50.23073006628529
- 1:66.1745132981866
1: [-50.23006542170917, 66.17450883933574]
- 0:-50.23006542170917
- 1:66.17450883933574
2: [-50.23005662431285, 66.1747808052853]
- 0:-50.23005662431285
- 1:66.1747808052853
3: [-50.23072092618532, 66.17478086511177]
- 0:-50.23072092618532
- 1:66.17478086511177
4: [-50.23073006628529, 66.1745132981866]
- 0:-50.23073006628529
- 1:66.1745132981866
31: List (5 elements)
0: [-50.22477703828955, 66.17340747111821]
- 0:-50.22477703828955
- 1:66.17340747111821
1: [-50.22476815552858, 66.17367502289954]
- 0:-50.22476815552858
- 1:66.17367502289954
2: [-50.22543261573325, 66.17367945797646]
- 0:-50.22543261573325
- 1:66.17367945797646
3: [-50.22544149209417, 66.17341190610843]
- 0:-50.22544149209417
- 1:66.17341190610843
4: [-50.22477703828955, 66.17340747111821]
- 0:-50.22477703828955
- 1:66.17340747111821
32: List (5 elements)
0: [-50.21935043242159, 66.17660907691956]
- 0:-50.21935043242159
- 1:66.17660907691956
1: [-50.21868578386049, 66.1766090865058]
- 0:-50.21868578386049
- 1:66.1766090865058
2: [-50.21867698909806, 66.176876575906]
- 0:-50.21867698909806
- 1:66.176876575906
3: [-50.219345812650516, 66.17688104053705]
- 0:-50.219345812650516
- 1:66.17688104053705
4: [-50.21935043242159, 66.17660907691956]
- 0:-50.21935043242159
- 1:66.17660907691956
33: List (5 elements)
0: [-50.212715260004, 66.17603828864178]
- 0:-50.212715260004
- 1:66.17603828864178
1: [-50.21071747396632, 66.17602941816743]
- 0:-50.21071747396632
- 1:66.17602941816743
2: [-50.21070860242934, 66.17629690597757]
- 0:-50.21070860242934
- 1:66.17629690597757
3: [-50.21270626122841, 66.17630584169892]
- 0:-50.21270626122841
- 1:66.17630584169892
4: [-50.212715260004, 66.17603828864178]
- 0:-50.212715260004
- 1:66.17603828864178
34: List (5 elements)
0: [-50.39424072074887, 66.0724221699981]
- 0:-50.39424072074887
- 1:66.0724221699981
1: [-50.39357631712579, 66.07242216685604]
- 0:-50.39357631712579
- 1:66.07242216685604
2: [-50.393571912724, 66.07268974163286]
- 0:-50.393571912724
- 1:66.07268974163286
3: [-50.394231803430756, 66.07269417845508]
- 0:-50.394231803430756
- 1:66.07269417845508
4: [-50.39424072074887, 66.0724221699981]
- 0:-50.39424072074887
- 1:66.0724221699981
35: List (5 elements)
0: [-50.31689766772247, 66.11382049285157]
- 0:-50.31689766772247
- 1:66.11382049285157
1: [-50.31690212343643, 66.11354849666925]
- 0:-50.31690212343643
- 1:66.11354849666925
2: [-50.31624211799902, 66.11354843083295]
- 0:-50.31624211799902
- 1:66.11354843083295
3: [-50.31623316810322, 66.11381597059777]
- 0:-50.31623316810322
- 1:66.11381597059777
4: [-50.31689766772247, 66.11382049285157]
- 0:-50.31689766772247
- 1:66.11382049285157
36: List (5 elements)
0: [-50.31624211799902, 66.11354843083295]
- 0:-50.31624211799902
- 1:66.11354843083295
1: [-50.31624658017788, 66.11327643500468]
- 0:-50.31624658017788
- 1:66.11327643500468
2: [-50.31491769722793, 66.11327202500286]
- 0:-50.31491769722793
- 1:66.11327202500286
3: [-50.314913320653666, 66.11353954427807]
- 0:-50.314913320653666
- 1:66.11353954427807
4: [-50.31624211799902, 66.11354843083295]
- 0:-50.31624211799902
- 1:66.11354843083295
37: List (5 elements)
0: [-50.31491769722793, 66.11327202500286]
- 0:-50.31491769722793
- 1:66.11327202500286
1: [-50.31492665980255, 66.11300448598239]
- 0:-50.31492665980255
- 1:66.11300448598239
2: [-50.314262346256534, 66.11300000500844]
- 0:-50.314262346256534
- 1:66.11300000500844
3: [-50.314253377297646, 66.11326754394096]
- 0:-50.314253377297646
- 1:66.11326754394096
4: [-50.31491769722793, 66.11327202500286]
- 0:-50.31491769722793
- 1:66.11327202500286
38: List (5 elements)
0: [-50.31229132147931, 66.11218402507315]
- 0:-50.31229132147931
- 1:66.11218402507315
1: [-50.31228691943198, 66.11245154295513]
- 0:-50.31228691943198
- 1:66.11245154295513
2: [-50.31294678136961, 66.11245598921441]
- 0:-50.31294678136961
- 1:66.11245598921441
3: [-50.31295576293925, 66.11218845131066]
- 0:-50.31295576293925
- 1:66.11218845131066
4: [-50.31229132147931, 66.11218402507315]
- 0:-50.31229132147931
- 1:66.11218402507315
39: List (5 elements)
0: [-50.37370214022614, 66.0720699147226]
- 0:-50.37370214022614
- 1:66.0720699147226
1: [-50.37303774852197, 66.07206991892716]
- 0:-50.37303774852197
- 1:66.07206991892716
2: [-50.37302871370227, 66.07233744851334]
- 0:-50.37302871370227
- 1:66.07233744851334
3: [-50.37369319044227, 66.07234197173209]
- 0:-50.37369319044227
- 1:66.07234197173209
4: [-50.37370214022614, 66.0720699147226]
- 0:-50.37370214022614
- 1:66.0720699147226
40: List (5 elements)
0: [-50.18185815862414, 66.162687771215]
- 0:-50.18185815862414
- 1:66.162687771215
1: [-50.183855959866534, 66.16270111896267]
- 0:-50.183855959866534
- 1:66.16270111896267
2: [-50.18386472742622, 66.16242913305092]
- 0:-50.18386472742622
- 1:66.16242913305092
3: [-50.18186714052794, 66.16242024950405]
- 0:-50.18186714052794
- 1:66.16242024950405
4: [-50.18185815862414, 66.162687771215]
- 0:-50.18185815862414
- 1:66.162687771215
41: List (5 elements)
0: [-50.18185815862414, 66.162687771215]
- 0:-50.18185815862414
- 1:66.162687771215
1: [-50.18052933021649, 66.16268327872915]
- 0:-50.18052933021649
- 1:66.16268327872915
2: [-50.18052050362267, 66.16295085238346]
- 0:-50.18052050362267
- 1:66.16295085238346
3: [-50.18185365190576, 66.1629597551784]
- 0:-50.18185365190576
- 1:66.1629597551784
4: [-50.18185815862414, 66.162687771215]
- 0:-50.18185815862414
- 1:66.162687771215
42: List (5 elements)
0: [-50.34604674593358, 66.06469015024597]
- 0:-50.34604674593358
- 1:66.06469015024597
1: [-50.345386885071754, 66.06468564156684]
- 0:-50.345386885071754
- 1:66.06468564156684
2: [-50.34537780408514, 66.06495762176446]
- 0:-50.34537780408514
- 1:66.06495762176446
3: [-50.346042342987786, 66.06495763371029]
- 0:-50.346042342987786
- 1:66.06495763371029
4: [-50.34604674593358, 66.06469015024597]
- 0:-50.34604674593358
- 1:66.06469015024597
43: List (5 elements)
0: [-50.18641980002204, 66.14494942996072]
- 0:-50.18641980002204
- 1:66.14494942996072
1: [-50.18708420952965, 66.14495392130173]
- 0:-50.18708420952965
- 1:66.14495392130173
2: [-50.1870930931899, 66.14468188912348]
- 0:-50.1870930931899
- 1:66.14468188912348
3: [-50.186428739086445, 66.14468192644608]
- 0:-50.186428739086445
- 1:66.14468192644608
4: [-50.18641980002204, 66.14494942996072]
- 0:-50.18641980002204
- 1:66.14494942996072
44: List (5 elements)
0: [-50.18641980002204, 66.14494942996072]
- 0:-50.18641980002204
- 1:66.14494942996072
1: [-50.18575555821155, 66.14494498691042]
- 0:-50.18575555821155
- 1:66.14494498691042
2: [-50.18574646630261, 66.1452125555731]
- 0:-50.18574646630261
- 1:66.1452125555731
3: [-50.18641102896109, 66.14521698557704]
- 0:-50.18641102896109
- 1:66.14521698557704
4: [-50.18641980002204, 66.14494942996072]
- 0:-50.18641980002204
- 1:66.14494942996072
45: List (5 elements)
0: [-50.16954216498049, 66.15293571730805]
- 0:-50.16954216498049
- 1:66.15293571730805
1: [-50.168208871554526, 66.15292682925723]
- 0:-50.168208871554526
- 1:66.15292682925723
2: [-50.16820007224359, 66.15319432614886]
- 0:-50.16820007224359
- 1:66.15319432614886
3: [-50.16952878490584, 66.15320322902892]
- 0:-50.16952878490584
- 1:66.15320322902892
4: [-50.16954216498049, 66.15293571730805]
- 0:-50.16954216498049
- 1:66.15293571730805
46: List (5 elements)
0: [-50.34154307497021, 66.05955764638715]
- 0:-50.34154307497021
- 1:66.05955764638715
1: [-50.340878609454094, 66.05955320079504]
- 0:-50.340878609454094
- 1:66.05955320079504
2: [-50.34087422901834, 66.05982520536422]
- 0:-50.34087422901834
- 1:66.05982520536422
3: [-50.341534218416996, 66.05982519656317]
- 0:-50.341534218416996
- 1:66.05982519656317
4: [-50.34154307497021, 66.05955764638715]
- 0:-50.34154307497021
- 1:66.05955764638715
47: List (5 elements)
0: [-50.15939323792557, 66.13807347472797]
- 0:-50.15939323792557
- 1:66.13807347472797
1: [-50.158728892187035, 66.13807354740653]
- 0:-50.158728892187035
- 1:66.13807354740653
2: [-50.15871985436429, 66.13834109231814]
- 0:-50.15871985436429
- 1:66.13834109231814
3: [-50.15938425095003, 66.13834554817063]
- 0:-50.15938425095003
- 1:66.13834554817063
4: [-50.15939323792557, 66.13807347472797]
- 0:-50.15939323792557
- 1:66.13807347472797
48: List (5 elements)
0: [-50.15332891913179, 66.14046357640333]
- 0:-50.15332891913179
- 1:66.14046357640333
1: [-50.15332001943879, 66.14073558675454]
- 0:-50.15332001943879
- 1:66.14073558675454
2: [-50.15398428700165, 66.14073560808022]
- 0:-50.15398428700165
- 1:66.14073560808022
3: [-50.15399337023967, 66.14046806121682]
- 0:-50.15399337023967
- 1:66.14046806121682
4: [-50.15332891913179, 66.14046357640333]
- 0:-50.15332891913179
- 1:66.14046357640333
49: List (5 elements)
0: [-50.25363637600142, 66.07476765561083]
- 0:-50.25363637600142
- 1:66.07476765561083
1: [-50.25362747194694, 66.0750352360355]
- 0:-50.25362747194694
- 1:66.0750352360355
2: [-50.254291801522704, 66.07503964366897]
- 0:-50.254291801522704
- 1:66.07503964366897
3: [-50.2543008669568, 66.07477211486896]
- 0:-50.2543008669568
- 1:66.07477211486896
4: [-50.25363637600142, 66.07476765561083]
- 0:-50.25363637600142
- 1:66.07476765561083
50: List (5 elements)
0: [-50.256365261001015, 66.07208778836188]
- 0:-50.256365261001015
- 1:66.07208778836188
1: [-50.255705452765575, 66.07208773317745]
- 0:-50.255705452765575
- 1:66.07208773317745
2: [-50.25569640064558, 66.07235525926858]
- 0:-50.25569640064558
- 1:66.07235525926858
3: [-50.25636083265451, 66.07235970719326]
- 0:-50.25636083265451
- 1:66.07235970719326
4: [-50.256365261001015, 66.07208778836188]
- 0:-50.256365261001015
- 1:66.07208778836188
51: List (5 elements)
0: [-50.24864214312565, 66.06424421955148]
- 0:-50.24864214312565
- 1:66.06424421955148
1: [-50.247982199817635, 66.06424413781845]
- 0:-50.247982199817635
- 1:66.06424413781845
2: [-50.2479732408428, 66.06451170621766]
- 0:-50.2479732408428
- 1:66.06451170621766
3: [-50.248637805411995, 66.06451618082374]
- 0:-50.248637805411995
- 1:66.06451618082374
4: [-50.24864214312565, 66.06424421955148]
- 0:-50.24864214312565
- 1:66.06424421955148
52: List (5 elements)
0: [-50.24401372484685, 66.06395434785533]
- 0:-50.24401372484685
- 1:66.06395434785533
1: [-50.24467811139608, 66.0639587917591]
- 0:-50.24467811139608
- 1:66.0639587917591
2: [-50.24469147840469, 66.06341926434801]
- 0:-50.24469147840469
- 1:66.06341926434801
3: [-50.244031369542284, 66.0634148164076]
- 0:-50.244031369542284
- 1:66.0634148164076
4: [-50.24401372484685, 66.06395434785533]
- 0:-50.24401372484685
- 1:66.06395434785533
53: List (5 elements)
0: [-50.244031369542284, 66.0634148164076]
- 0:-50.244031369542284
- 1:66.0634148164076
1: [-50.24403578810885, 66.06314726715019]
- 0:-50.24403578810885
- 1:66.06314726715019
2: [-50.24337599867991, 66.06314280250064]
- 0:-50.24337599867991
- 1:66.06314280250064
3: [-50.24336703107337, 66.06341477954308]
- 0:-50.24336703107337
- 1:66.06341477954308
4: [-50.244031369542284, 66.0634148164076]
- 0:-50.244031369542284
- 1:66.0634148164076
54: List (5 elements)
0: [-50.16402616941665, 66.09826269770598]
- 0:-50.16402616941665
- 1:66.09826269770598
1: [-50.16336195864247, 66.09826265768498]
- 0:-50.16336195864247
- 1:66.09826265768498
2: [-50.16334398910778, 66.09879778085893]
- 0:-50.16334398910778
- 1:66.09879778085893
3: [-50.16400854993238, 66.0988022189487]
- 0:-50.16400854993238
- 1:66.0988022189487
4: [-50.16402616941665, 66.09826269770598]
- 0:-50.16402616941665
- 1:66.09826269770598
55: List (5 elements)
0: [-50.166064087820104, 66.09692938329712]
- 0:-50.166064087820104
- 1:66.09692938329712
1: [-50.16539957310457, 66.09692495642486]
- 0:-50.16539957310457
- 1:66.09692495642486
2: [-50.16539078837676, 66.097196921104]
- 0:-50.16539078837676
- 1:66.097196921104
3: [-50.16605513973878, 66.09719700202596]
- 0:-50.16605513973878
- 1:66.09719700202596
4: [-50.166064087820104, 66.09692938329712]
- 0:-50.166064087820104
- 1:66.09692938329712
56: List (5 elements)
0: [-50.13584025688089, 66.10752862947831]
- 0:-50.13584025688089
- 1:66.10752862947831
1: [-50.13716916283125, 66.10753759001162]
- 0:-50.13716916283125
- 1:66.10753759001162
2: [-50.13717792746755, 66.10727004172053]
- 0:-50.13717792746755
- 1:66.10727004172053
3: [-50.13584920204046, 66.10726113323658]
- 0:-50.13584920204046
- 1:66.10726113323658
4: [-50.13584025688089, 66.10752862947831]
- 0:-50.13584025688089
- 1:66.10752862947831
57: List (5 elements)
0: [-50.2316619164133, 66.05608853222509]
- 0:-50.2316619164133
- 1:66.05608853222509
1: [-50.22967314824554, 66.05607958686032]
- 0:-50.22967314824554
- 1:66.05607958686032
2: [-50.22966432663036, 66.05634713092195]
- 0:-50.22966432663036
- 1:66.05634713092195
3: [-50.23165294625909, 66.0563560248039]
- 0:-50.23165294625909
- 1:66.0563560248039
4: [-50.2316619164133, 66.05608853222509]
- 0:-50.2316619164133
- 1:66.05608853222509
58: List (5 elements)
0: [-50.12577612760083, 66.11070359154374]
- 0:-50.12577612760083
- 1:66.11070359154374
1: [-50.126436055343625, 66.11070802393732]
- 0:-50.126436055343625
- 1:66.11070802393732
2: [-50.126445051757536, 66.11043599753663]
- 0:-50.126445051757536
- 1:66.11043599753663
3: [-50.12578500147949, 66.11043604126468]
- 0:-50.12578500147949
- 1:66.11043604126468
4: [-50.12577612760083, 66.11070359154374]
- 0:-50.12577612760083
- 1:66.11070359154374
59: List (5 elements)
0: [-50.23376203829476, 66.05232946115119]
- 0:-50.23376203829476
- 1:66.05232946115119
1: [-50.23309777448704, 66.05232502580066]
- 0:-50.23309777448704
- 1:66.05232502580066
2: [-50.233088873571084, 66.05259704142516]
- 0:-50.233088873571084
- 1:66.05259704142516
3: [-50.23375325562404, 66.05259700166957]
- 0:-50.23375325562404
- 1:66.05259700166957
4: [-50.23376203829476, 66.05232946115119]
- 0:-50.23376203829476
- 1:66.05232946115119
60: List (5 elements)
0: [-50.12242732535274, 66.111492837855]
- 0:-50.12242732535274
- 1:66.111492837855
1: [-50.12109839895889, 66.1114838879443]
- 0:-50.12109839895889
- 1:66.1114838879443
2: [-50.12108948011963, 66.1117514387664]
- 0:-50.12108948011963
- 1:66.1117514387664
3: [-50.12241841928012, 66.11176038884999]
- 0:-50.12241841928012
- 1:66.11176038884999
4: [-50.12242732535274, 66.111492837855]
- 0:-50.12242732535274
- 1:66.111492837855
61: List (5 elements)
0: [-50.16038302296207, 66.08801566908127]
- 0:-50.16038302296207
- 1:66.08801566908127
1: [-50.16104764295726, 66.08802010828121]
- 0:-50.16104764295726
- 1:66.08802010828121
2: [-50.16105649349179, 66.08775256491572]
- 0:-50.16105649349179
- 1:66.08775256491572
3: [-50.16039219370931, 66.08774811273322]
- 0:-50.16039219370931
- 1:66.08774811273322
4: [-50.16038302296207, 66.08801566908127]
- 0:-50.16038302296207
- 1:66.08801566908127
62: List (5 elements)
0: [-50.15970987565671, 66.08828316754646]
- 0:-50.15970987565671
- 1:66.08828316754646
1: [-50.16037416597975, 66.08828321264613]
- 0:-50.16037416597975
- 1:66.08828321264613
2: [-50.16038302296207, 66.08801566908127]
- 0:-50.16038302296207
- 1:66.08801566908127
3: [-50.15972329935598, 66.08801119892418]
- 0:-50.15972329935598
- 1:66.08801119892418
4: [-50.15970987565671, 66.08828316754646]
- 0:-50.15970987565671
- 1:66.08828316754646
63: List (5 elements)
0: [-50.16174773913709, 66.0869454853968]
- 0:-50.16174773913709
- 1:66.0869454853968
1: [-50.161083291391286, 66.0869409851734]
- 0:-50.161083291391286
- 1:66.0869409851734
2: [-50.1610743177097, 66.08721300335698]
- 0:-50.1610743177097
- 1:66.08721300335698
3: [-50.161738771939426, 66.08721750366811]
- 0:-50.161738771939426
- 1:66.08721750366811
4: [-50.16174773913709, 66.0869454853968]
- 0:-50.16174773913709
- 1:66.0869454853968
64: List (5 elements)
0: [-50.10053298237005, 66.11109596787968]
- 0:-50.10053298237005
- 1:66.11109596787968
1: [-50.09920425410669, 66.11108707057369]
- 0:-50.09920425410669
- 1:66.11108707057369
2: [-50.09919530582924, 66.11135908135007]
- 0:-50.09919530582924
- 1:66.11135908135007
3: [-50.10052404706923, 66.11136797883017]
- 0:-50.10052404706923
- 1:66.11136797883017
4: [-50.10053298237005, 66.11109596787968]
- 0:-50.10053298237005
- 1:66.11109596787968
65: List (7 elements)
0: [-50.4885195673179, 66.19684002409805]
- 0:-50.4885195673179
- 1:66.19684002409805
1: [-50.48853289597902, 66.19630490066042]
- 0:-50.48853289597902
- 1:66.19630490066042
2: [-50.4871996554565, 66.19630044548977]
- 0:-50.4871996554565
- 1:66.19630044548977
3: [-50.48719504722138, 66.19656803338265]
- 0:-50.48719504722138
- 1:66.19656803338265
4: [-50.487859497070914, 66.19657250809865]
- 0:-50.487859497070914
- 1:66.19657250809865
5: [-50.48785504114539, 66.19684003101622]
- 0:-50.48785504114539
- 1:66.19684003101622
6: [-50.4885195673179, 66.19684002409805]
- 0:-50.4885195673179
- 1:66.19684002409805
66: List (7 elements)
0: [-50.42320251714728, 66.19849880141244]
- 0:-50.42320251714728
- 1:66.19849880141244
1: [-50.42320705662101, 66.19827581653195]
- 0:-50.42320705662101
- 1:66.19827581653195
2: [-50.423153579400086, 66.19833384522875]
- 0:-50.423153579400086
- 1:66.19833384522875
3: [-50.423113416229796, 66.19839176433604]
- 0:-50.423113416229796
- 1:66.19839176433604
4: [-50.423086693526486, 66.19844532928339]
- 0:-50.423086693526486
- 1:66.19844532928339
5: [-50.423064401255935, 66.19849881879082]
- 0:-50.423064401255935
- 1:66.19849881879082
6: [-50.42320251714728, 66.19849880141244]
- 0:-50.42320251714728
- 1:66.19849880141244
67: List (7 elements)
0: [-50.31874813128633, 66.19322816456868]
- 0:-50.31874813128633
- 1:66.19322816456868
1: [-50.31808364543132, 66.19322367616188]
- 0:-50.31808364543132
- 1:66.19322367616188
2: [-50.31807476728526, 66.19349571312199]
- 0:-50.31807476728526
- 1:66.19349571312199
3: [-50.31741044311211, 66.19349127275964]
- 0:-50.31741044311211
- 1:66.19349127275964
4: [-50.3174014877422, 66.19375878041205]
- 0:-50.3174014877422
- 1:66.19375878041205
5: [-50.31873477007293, 66.19376775446291]
- 0:-50.31873477007293
- 1:66.19376775446291
6: [-50.31874813128633, 66.19322816456868]
- 0:-50.31874813128633
- 1:66.19322816456868
68: List (7 elements)
0: [-50.302383230399116, 66.18292761499244]
- 0:-50.302383230399116
- 1:66.18292761499244
1: [-50.30171440329876, 66.18292317759808]
- 0:-50.30171440329876
- 1:66.18292317759808
2: [-50.301723342068776, 66.18265563161009]
- 0:-50.301723342068776
- 1:66.18265563161009
3: [-50.300390027938015, 66.1826511527983]
- 0:-50.300390027938015
- 1:66.1826511527983
4: [-50.300376722288995, 66.18318622527515]
- 0:-50.300376722288995
- 1:66.18318622527515
5: [-50.30237429800677, 66.18319516134848]
- 0:-50.30237429800677
- 1:66.18319516134848
6: [-50.302383230399116, 66.18292761499244]
- 0:-50.302383230399116
- 1:66.18292761499244
69: List (7 elements)
0: [-50.249583065629956, 66.1896786926029]
- 0:-50.249583065629956
- 1:66.1896786926029
1: [-50.248254206873185, 66.18967427477334]
- 0:-50.248254206873185
- 1:66.18967427477334
2: [-50.24825868718065, 66.18940222985849]
- 0:-50.24825868718065
- 1:66.18940222985849
3: [-50.24759416073071, 66.1893977835347]
- 0:-50.24759416073071
- 1:66.1893977835347
4: [-50.24757639097239, 66.18993730077425]
- 0:-50.24757639097239
- 1:66.18993730077425
5: [-50.24957410812024, 66.18994627782813]
- 0:-50.24957410812024
- 1:66.18994627782813
6: [-50.249583065629956, 66.1896786926029]
- 0:-50.249583065629956
- 1:66.1896786926029
70: List (7 elements)
0: [-50.38603607441538, 66.1103423859758]
- 0:-50.38603607441538
- 1:66.1103423859758
1: [-50.386040483745774, 66.11007036023311]
- 0:-50.386040483745774
- 1:66.11007036023311
2: [-50.38471156798214, 66.11006594169815]
- 0:-50.38471156798214
- 1:66.11006594169815
3: [-50.38472048789796, 66.10979837025594]
- 0:-50.38472048789796
- 1:66.10979837025594
4: [-50.38405623632358, 66.10979391071909]
- 0:-50.38405623632358
- 1:66.10979391071909
5: [-50.38404271304629, 66.11033345607886]
- 0:-50.38404271304629
- 1:66.11033345607886
6: [-50.38603607441538, 66.1103423859758]
- 0:-50.38603607441538
- 1:66.1103423859758
71: List (7 elements)
0: [-50.221998998817384, 66.17716202930913]
- 0:-50.221998998817384
- 1:66.17716202930913
1: [-50.221330170456525, 66.17715757880966]
- 0:-50.221330170456525
- 1:66.17715757880966
2: [-50.22133908610784, 66.17689002378648]
- 0:-50.22133908610784
- 1:66.17689002378648
3: [-50.22067469264218, 66.17688550150558]
- 0:-50.22067469264218
- 1:66.17688550150558
4: [-50.22065673489009, 66.17742508905624]
- 0:-50.22065673489009
- 1:66.17742508905624
5: [-50.22199008954047, 66.1774295847002]
- 0:-50.22199008954047
- 1:66.1774295847002
6: [-50.221998998817384, 66.17716202930913]
- 0:-50.221998998817384
- 1:66.17716202930913
72: List (7 elements)
0: [-50.10053298237005, 66.11109596787968]
- 0:-50.10053298237005
- 1:66.11109596787968
1: [-50.10252180971898, 66.11110934502831]
- 0:-50.10252180971898
- 1:66.11110934502831
2: [-50.102544095553576, 66.11056978725003]
- 0:-50.102544095553576
- 1:66.11056978725003
3: [-50.10187973492241, 66.11056529275443]
- 0:-50.10187973492241
- 1:66.11056529275443
4: [-50.10187079914463, 66.11083289214467]
- 0:-50.10187079914463
- 1:66.11083289214467
5: [-50.10054209870948, 66.11082842029869]
- 0:-50.10054209870948
- 1:66.11082842029869
6: [-50.10053298237005, 66.11109596787968]
- 0:-50.10053298237005
- 1:66.11109596787968
73: List (8 elements)
0: [-50.404920212552035, 66.20004166749302]
- 0:-50.404920212552035
- 1:66.20004166749302
1: [-50.404510116082136, 66.20004164902096]
- 0:-50.404510116082136
- 1:66.20004164902096
2: [-50.404505656131384, 66.20030919195935]
- 0:-50.404505656131384
- 1:66.20030919195935
3: [-50.40480436695568, 66.20031363879885]
- 0:-50.40480436695568
- 1:66.20031363879885
4: [-50.40482211690573, 66.20024227687536]
- 0:-50.40482211690573
- 1:66.20024227687536
5: [-50.40484892011198, 66.20017093367537]
- 0:-50.40484892011198
- 1:66.20017093367537
6: [-50.40488469269837, 66.20010408729881]
- 0:-50.40488469269837
- 1:66.20010408729881
7: [-50.404920212552035, 66.20004166749302]
- 0:-50.404920212552035
- 1:66.20004166749302
74: List (9 elements)
0: [-50.35092499656557, 66.18529093146361]
- 0:-50.35092499656557
- 1:66.18529093146361
1: [-50.34959169469865, 66.18528644351942]
- 0:-50.34959169469865
- 1:66.18528644351942
2: [-50.349600655235534, 66.18501892722396]
- 0:-50.349600655235534
- 1:66.18501892722396
3: [-50.34760292832532, 66.18501004303131]
- 0:-50.34760292832532
- 1:66.18501004303131
4: [-50.34759394853576, 66.18527755906699]
- 0:-50.34759394853576
- 1:66.18527755906699
5: [-50.34826301089323, 66.18528203695553]
- 0:-50.34826301089323
- 1:66.18528203695553
6: [-50.34825403748414, 66.18554955335955]
- 0:-50.34825403748414
- 1:66.18554955335955
7: [-50.35091612483982, 66.18556297758391]
- 0:-50.35091612483982
- 1:66.18556297758391
8: [-50.35092499656557, 66.18529093146361]
- 0:-50.35092499656557
- 1:66.18529093146361
75: List (9 elements)
0: [-50.28504176964712, 66.18392645861725]
- 0:-50.28504176964712
- 1:66.18392645861725
1: [-50.2843773571101, 66.18392197468847]
- 0:-50.2843773571101
- 1:66.18392197468847
2: [-50.2843863165463, 66.18365449490047]
- 0:-50.2843863165463
- 1:66.18365449490047
3: [-50.28238856283213, 66.18364557032446]
- 0:-50.28238856283213
- 1:66.18364557032446
4: [-50.28237975261606, 66.18391310155444]
- 0:-50.28237975261606
- 1:66.18391310155444
5: [-50.28304399794914, 66.18391754437977]
- 0:-50.28304399794914
- 1:66.18391754437977
6: [-50.28303067329439, 66.18445260243067]
- 0:-50.28303067329439
- 1:66.18445260243067
7: [-50.28502833714687, 66.18446158219028]
- 0:-50.28502833714687
- 1:66.18446158219028
8: [-50.28504176964712, 66.18392645861725]
- 0:-50.28504176964712
- 1:66.18392645861725
76: List (9 elements)
0: [-50.43200491527162, 66.10298042788355]
- 0:-50.43200491527162
- 1:66.10298042788355
1: [-50.43134491866442, 66.10297592534052]
- 0:-50.43134491866442
- 1:66.10297592534052
2: [-50.43134928955646, 66.10270841772741]
- 0:-50.43134928955646
- 1:66.10270841772741
3: [-50.430020542746746, 66.10270396499544]
- 0:-50.430020542746746
- 1:66.10270396499544
4: [-50.43001615909695, 66.10297147248474]
- 0:-50.43001615909695
- 1:66.10297147248474
5: [-50.43068042635556, 66.10297597150945]
- 0:-50.43068042635556
- 1:66.10297597150945
6: [-50.430671465556216, 66.10324350363678]
- 0:-50.430671465556216
- 1:66.10324350363678
7: [-50.43200023697849, 66.10324794959833]
- 0:-50.43200023697849
- 1:66.10324794959833
8: [-50.43200491527162, 66.10298042788355]
- 0:-50.43200491527162
- 1:66.10298042788355
77: List (9 elements)
0: [-50.22802766902226, 66.17584655175213]
- 0:-50.22802766902226
- 1:66.17584655175213
1: [-50.22803668857169, 66.17557904905298]
- 0:-50.22803668857169
- 1:66.17557904905298
2: [-50.22670782723709, 66.17557013744609]
- 0:-50.22670782723709
- 1:66.17557013744609
3: [-50.22671224077015, 66.17530253516043]
- 0:-50.22671224077015
- 1:66.17530253516043
4: [-50.22538355903735, 66.17529366135187]
- 0:-50.22538355903735
- 1:66.17529366135187
5: [-50.22537456941791, 66.17556569256779]
- 0:-50.22537456941791
- 1:66.17556569256779
6: [-50.226038872315456, 66.1755656605644]
- 0:-50.226038872315456
- 1:66.1755656605644
7: [-50.226030035574134, 66.17583762714631]
- 0:-50.226030035574134
- 1:66.17583762714631
8: [-50.22802766902226, 66.17584655175213]
- 0:-50.22802766902226
- 1:66.17584655175213
78: List (9 elements)
0: [-50.19693891792882, 66.16976435660354]
- 0:-50.19693891792882
- 1:66.16976435660354
1: [-50.196269985142045, 66.16976431551927]
- 0:-50.196269985142045
- 1:66.16976431551927
2: [-50.196278945390944, 66.16949230735018]
- 0:-50.196278945390944
- 1:66.16949230735018
3: [-50.195614439326285, 66.16948789989938]
- 0:-50.195614439326285
- 1:66.16948789989938
4: [-50.19559225272923, 66.17029943218827]
- 0:-50.19559225272923
- 1:66.17029943218827
5: [-50.19625660275123, 66.17029949258945]
- 0:-50.19625660275123
- 1:66.17029949258945
6: [-50.19626559205581, 66.17003189610125]
- 0:-50.19626559205581
- 1:66.17003189610125
7: [-50.19692996415923, 66.17003636514653]
- 0:-50.19692996415923
- 1:66.17003636514653
8: [-50.19693891792882, 66.16976435660354]
- 0:-50.19693891792882
- 1:66.16976435660354
79: List (9 elements)
0: [-50.18386472742622, 66.16242913305092]
- 0:-50.18386472742622
- 1:66.16242913305092
1: [-50.18519373366173, 66.16243805398187]
- 0:-50.18519373366173
- 1:66.16243805398187
2: [-50.185202515298485, 66.16217048029662]
- 0:-50.185202515298485
- 1:66.16217048029662
3: [-50.18586682687784, 66.16217052984085]
- 0:-50.18586682687784
- 1:66.16217052984085
4: [-50.18587591669813, 66.16190294322334]
- 0:-50.18587591669813
- 1:66.16190294322334
5: [-50.18454693701327, 66.16189402969546]
- 0:-50.18454693701327
- 1:66.16189402969546
6: [-50.18453817609055, 66.16216601511672]
- 0:-50.18453817609055
- 1:66.16216601511672
7: [-50.18387369003091, 66.16216161136455]
- 0:-50.18387369003091
- 1:66.16216161136455
8: [-50.18386472742622, 66.16242913305092]
- 0:-50.18386472742622
- 1:66.16242913305092
80: List (9 elements)
0: [-50.207025382057346, 66.12379098267668]
- 0:-50.207025382057346
- 1:66.12379098267668
1: [-50.20636089355533, 66.12379103822325]
- 0:-50.20636089355533
- 1:66.12379103822325
2: [-50.206369904488966, 66.12351901333192]
- 0:-50.206369904488966
- 1:66.12351901333192
3: [-50.201723496372374, 66.12349673732247]
- 0:-50.201723496372374
- 1:66.12349673732247
4: [-50.2017145567789, 66.12376428519336]
- 0:-50.2017145567789
- 1:66.12376428519336
5: [-50.20237893213512, 66.12376873077008]
- 0:-50.20237893213512
- 1:66.12376873077008
6: [-50.2023699988585, 66.12403627901162]
- 0:-50.2023699988585
- 1:66.12403627901162
7: [-50.20702081986396, 66.12406305685924]
- 0:-50.20702081986396
- 1:66.12406305685924
8: [-50.207025382057346, 66.12379098267668]
- 0:-50.207025382057346
- 1:66.12379098267668
81: List (9 elements)
0: [-50.23243780731899, 66.05232499331007]
- 0:-50.23243780731899
- 1:66.05232499331007
1: [-50.23111354080695, 66.05231610119975]
- 0:-50.23111354080695
- 1:66.05231610119975
2: [-50.23110445297044, 66.05258806482895]
- 0:-50.23110445297044
- 1:66.05258806482895
3: [-50.23044018105873, 66.05258361527586]
- 0:-50.23044018105873
- 1:66.05258361527586
4: [-50.23043122076609, 66.05285122064336]
- 0:-50.23043122076609
- 1:66.05285122064336
5: [-50.23109549904713, 66.05285567028395]
- 0:-50.23109549904713
- 1:66.05285567028395
6: [-50.23108669085173, 66.05312321104188]
- 0:-50.23108669085173
- 1:66.05312321104188
7: [-50.23241099566076, 66.05313210367645]
- 0:-50.23241099566076
- 1:66.05313210367645
8: [-50.23243780731899, 66.05232499331007]
- 0:-50.23243780731899
- 1:66.05232499331007
82: List (9 elements)
0: [-50.11175231788321, 66.11304459471809]
- 0:-50.11175231788321
- 1:66.11304459471809
1: [-50.11440540044013, 66.11306247229219]
- 0:-50.11440540044013
- 1:66.11306247229219
2: [-50.11441434646488, 66.11279039293139]
- 0:-50.11441434646488
- 1:66.11279039293139
3: [-50.113749941368354, 66.11278596125995]
- 0:-50.113749941368354
- 1:66.11278596125995
4: [-50.11375893065813, 66.11251841023793]
- 0:-50.11375893065813
- 1:66.11251841023793
5: [-50.11309880468017, 66.11251397545152]
- 0:-50.11309880468017
- 1:66.11251397545152
6: [-50.11308555128669, 66.11278593724809]
- 0:-50.11308555128669
- 1:66.11278593724809
7: [-50.111761012192176, 66.1127770566131]
- 0:-50.111761012192176
- 1:66.1127770566131
8: [-50.11175231788321, 66.11304459471809]
- 0:-50.11175231788321
- 1:66.11304459471809
83: List (11 elements)
0: [-50.46996518681785, 66.19220253708028]
- 0:-50.46996518681785
- 1:66.19220253708028
1: [-50.46796757771915, 66.19219808643595]
- 0:-50.46796757771915
- 1:66.19219808643595
2: [-50.46797198533749, 66.19192610598195]
- 0:-50.46797198533749
- 1:66.19192610598195
3: [-50.46597439085509, 66.1919216236758]
- 0:-50.46597439085509
- 1:66.1919216236758
4: [-50.465965464568306, 66.1924611717278]
- 0:-50.465965464568306
- 1:66.1924611717278
5: [-50.46862744148087, 66.19247011370544]
- 0:-50.46862744148087
- 1:66.19247011370544
6: [-50.468622968060046, 66.19273768202122]
- 0:-50.468622968060046
- 1:66.19273768202122
7: [-50.46928731766567, 66.19274213786332]
- 0:-50.46928731766567
- 1:66.19274213786332
8: [-50.469291858127896, 66.19247009141111]
- 0:-50.469291858127896
- 1:66.19247009141111
9: [-50.469960652887565, 66.19247458330918]
- 0:-50.469960652887565
- 1:66.19247458330918
10: [-50.46996518681785, 66.19220253708028]
- 0:-50.46996518681785
- 1:66.19220253708028
84: List (11 elements)
0: [-50.34163674866707, 66.18390858848457]
- 0:-50.34163674866707
- 1:66.18390858848457
1: [-50.340972334233584, 66.18390417124951]
- 0:-50.340972334233584
- 1:66.18390417124951
2: [-50.34098120936698, 66.18363660586584]
- 0:-50.34098120936698
- 1:66.18363660586584
3: [-50.33898358336034, 66.18362770155935]
- 0:-50.33898358336034
- 1:66.18362770155935
4: [-50.33897007730859, 66.18416282475417]
- 0:-50.33897007730859
- 1:66.18416282475417
5: [-50.339634499430254, 66.18416725264981]
- 0:-50.339634499430254
- 1:66.18416725264981
6: [-50.339625611356276, 66.1844348184231]
- 0:-50.339625611356276
- 1:66.1844348184231
7: [-50.340958918613964, 66.184443708036]
- 0:-50.340958918613964
- 1:66.184443708036
8: [-50.34095004332544, 66.18471127426466]
- 0:-50.34095004332544
- 1:66.18471127426466
9: [-50.34161892849945, 66.18471573593506]
- 0:-50.34161892849945
- 1:66.18471573593506
10: [-50.34163674866707, 66.18390858848457]
- 0:-50.34163674866707
- 1:66.18390858848457
85: List (11 elements)
0: [-50.188332750412535, 66.16837757232447]
- 0:-50.188332750412535
- 1:66.16837757232447
1: [-50.18699949837403, 66.16836867199909]
- 0:-50.18699949837403
- 1:66.16836867199909
2: [-50.18700843044437, 66.16810114365792]
- 0:-50.18700843044437
- 1:66.16810114365792
3: [-50.18567961746089, 66.1680921622434]
- 0:-50.18567961746089
- 1:66.1680921622434
4: [-50.18567072157269, 66.16836421941157]
- 0:-50.18567072157269
- 1:66.16836421941157
5: [-50.1850019534914, 66.16835975788814]
- 0:-50.1850019534914
- 1:66.16835975788814
6: [-50.184988500244, 66.16889486464659]
- 0:-50.184988500244
- 1:66.16889486464659
7: [-50.18565283163441, 66.1688992765991]
- 0:-50.18565283163441
- 1:66.1688992765991
8: [-50.18566177663856, 66.16863174786485]
- 0:-50.18566177663856
- 1:66.16863174786485
9: [-50.18832383110986, 66.16864510112067]
- 0:-50.18832383110986
- 1:66.16864510112067
10: [-50.188332750412535, 66.16837757232447]
- 0:-50.188332750412535
- 1:66.16837757232447
86: List (11 elements)
0: [-50.35843419812136, 66.07281456858595]
- 0:-50.35843419812136
- 1:66.07281456858595
1: [-50.357109752880355, 66.07281016019505]
- 0:-50.357109752880355
- 1:66.07281016019505
2: [-50.35711419346864, 66.07254260216132]
- 0:-50.35711419346864
- 1:66.07254260216132
3: [-50.356454300826016, 66.07253808572199]
- 0:-50.356454300826016
- 1:66.07253808572199
4: [-50.35644549627368, 66.07281012748557]
- 0:-50.35644549627368
- 1:66.07281012748557
5: [-50.35578101771529, 66.07280562903254]
- 0:-50.35578101771529
- 1:66.07280562903254
6: [-50.355776564403136, 66.07307318722985]
- 0:-50.355776564403136
- 1:66.07307318722985
7: [-50.35644088142501, 66.07307763417208]
- 0:-50.35644088142501
- 1:66.07307763417208
8: [-50.356432023241105, 66.07334526588373]
- 0:-50.356432023241105
- 1:66.07334526588373
9: [-50.35842081710718, 66.07335411806308]
- 0:-50.35842081710718
- 1:66.07335411806308
10: [-50.35843419812136, 66.07281456858595]
- 0:-50.35843419812136
- 1:66.07281456858595
87: List (13 elements)
0: [-50.35360945736223, 66.18449722764548]
- 0:-50.35360945736223
- 1:66.18449722764548
1: [-50.35227614423182, 66.18448835591664]
- 0:-50.35227614423182
- 1:66.18448835591664
2: [-50.352285056538456, 66.18422072335756]
- 0:-50.352285056538456
- 1:66.18422072335756
3: [-50.35095166211553, 66.18421631535458]
- 0:-50.35095166211553
- 1:66.18421631535458
4: [-50.350960702181624, 66.18394432227673]
- 0:-50.350960702181624
- 1:66.18394432227673
5: [-50.34962746497623, 66.18393983509748]
- 0:-50.34962746497623
- 1:66.18393983509748
6: [-50.349613902775616, 66.18447938736276]
- 0:-50.349613902775616
- 1:66.18447938736276
7: [-50.350278346865274, 66.18448387560882]
- 0:-50.350278346865274
- 1:66.18448387560882
8: [-50.35027399038584, 66.18475137015935]
- 0:-50.35027399038584
- 1:66.18475137015935
9: [-50.35227171464765, 66.18476032840077]
- 0:-50.35227171464765
- 1:66.18476032840077
10: [-50.352262779833005, 66.18502784475913]
- 0:-50.352262779833005
- 1:66.18502784475913
11: [-50.353596064834036, 66.18503230419437]
- 0:-50.353596064834036
- 1:66.18503230419437
12: [-50.35360945736223, 66.18449722764548]
- 0:-50.35360945736223
- 1:66.18449722764548
88: List (13 elements)
0: [-50.36507808615899, 66.07230625157362]
- 0:-50.36507808615899
- 1:66.07230625157362
1: [-50.363749388300356, 66.07230180543846]
- 0:-50.363749388300356
- 1:66.07230180543846
2: [-50.36375828955212, 66.07202981488182]
- 0:-50.36375828955212
- 1:66.07202981488182
3: [-50.362433868082505, 66.07202534653527]
- 0:-50.362433868082505
- 1:66.07202534653527
4: [-50.36243840335866, 66.07175772372594]
- 0:-50.36243840335866
- 1:66.07175772372594
5: [-50.358460868158005, 66.07173994888385]
- 0:-50.358460868158005
- 1:66.07173994888385
6: [-50.358456440296926, 66.0720075061747]
- 0:-50.358456440296926
- 1:66.0720075061747
7: [-50.35779189053989, 66.07200749431091]
- 0:-50.35779189053989
- 1:66.07200749431091
8: [-50.357783022911555, 66.07227500832876]
- 0:-50.357783022911555
- 1:66.07227500832876
9: [-50.35844748732571, 66.07227949603707]
- 0:-50.35844748732571
- 1:66.07227949603707
10: [-50.35844305946216, 66.07254705390704]
- 0:-50.35844305946216
- 1:66.07254705390704
11: [-50.36506928845896, 66.072573766821]
- 0:-50.36506928845896
- 1:66.072573766821
12: [-50.36507808615899, 66.07230625157362]
- 0:-50.36507808615899
- 1:66.07230625157362
89: List (13 elements)
0: [-50.16121710497478, 66.14319703643451]
- 0:-50.16121710497478
- 1:66.14319703643451
1: [-50.160552617046186, 66.14319700137216]
- 0:-50.160552617046186
- 1:66.14319700137216
2: [-50.160561613867785, 66.142925039326]
- 0:-50.160561613867785
- 1:66.142925039326
3: [-50.1598971318527, 66.14292500081476]
- 0:-50.1598971318527
- 1:66.14292500081476
4: [-50.159906135100115, 66.14265303914353]
- 0:-50.159906135100115
- 1:66.14265303914353
5: [-50.15857715952398, 66.14264853994159]
- 0:-50.15857715952398
- 1:66.14264853994159
6: [-50.15858617569407, 66.14237657873309]
- 0:-50.15858617569407
- 1:66.14237657873309
7: [-50.15725737921019, 66.14237211743436]
- 0:-50.15725737921019
- 1:66.14237211743436
8: [-50.15723056080716, 66.14317916484617]
- 0:-50.15723056080716
- 1:66.14317916484617
9: [-50.15789505122987, 66.14317921756339]
- 0:-50.15789505122987
- 1:66.14317921756339
10: [-50.15788602835184, 66.14345117955065]
- 0:-50.15788602835184
- 1:66.14345117955065
11: [-50.16120811457928, 66.14346899885554]
- 0:-50.16120811457928
- 1:66.14346899885554
12: [-50.16121710497478, 66.14319703643451]
- 0:-50.16121710497478
- 1:66.14319703643451
90: List (15 elements)
0: [-50.39158756317778, 66.07241329203795]
- 0:-50.39158756317778
- 1:66.07241329203795
1: [-50.39092750915085, 66.07240878974187]
- 0:-50.39092750915085
- 1:66.07240878974187
2: [-50.39093210694069, 66.0721412670329]
- 0:-50.39093210694069
- 1:66.0721412670329
3: [-50.3896078263238, 66.07213678859594]
- 0:-50.3896078263238
- 1:66.07213678859594
4: [-50.389612210102115, 66.07186480414107]
- 0:-50.389612210102115
- 1:66.07186480414107
5: [-50.38895224868652, 66.07186481881108]
- 0:-50.38895224868652
- 1:66.07186481881108
6: [-50.388943366556134, 66.07213235018042]
- 0:-50.388943366556134
- 1:66.07213235018042
7: [-50.38828348513563, 66.07212788546836]
- 0:-50.38828348513563
- 1:66.07212788546836
8: [-50.3882745096754, 66.07239989284847]
- 0:-50.3882745096754
- 1:66.07239989284847
9: [-50.386950066834956, 66.07239545129556]
- 0:-50.386950066834956
- 1:66.07239545129556
10: [-50.38693669755008, 66.07293055742427]
- 0:-50.38693669755008
- 1:66.07293055742427
11: [-50.38958981073722, 66.07294389372227]
- 0:-50.38958981073722
- 1:66.07294389372227
12: [-50.38959433999101, 66.07267184321005]
- 0:-50.38959433999101
- 1:66.07267184321005
13: [-50.391582971735694, 66.07268081509905]
- 0:-50.391582971735694
- 1:66.07268081509905
14: [-50.39158756317778, 66.07241329203795]
- 0:-50.39158756317778
- 1:66.07241329203795
91: List (17 elements)
0: [-50.50093364128389, 66.14170765219033]
- 0:-50.50093364128389
- 1:66.14170765219033
1: [-50.50093813041649, 66.14144012084681]
- 0:-50.50093813041649
- 1:66.14144012084681
2: [-50.500273727706315, 66.14143566295783]
- 0:-50.500273727706315
- 1:66.14143566295783
3: [-50.500278223251314, 66.14116813196266]
- 0:-50.500278223251314
- 1:66.14116813196266
4: [-50.49894936049917, 66.14116368293976]
- 0:-50.49894936049917
- 1:66.14116368293976
5: [-50.498953769174555, 66.140891623747]
- 0:-50.498953769174555
- 1:66.140891623747
6: [-50.496296162700816, 66.14088721220362]
- 0:-50.496296162700816
- 1:66.14088721220362
7: [-50.496300765940795, 66.14061520495592]
- 0:-50.496300765940795
- 1:66.14061520495592
8: [-50.49497177718836, 66.14061077914775]
- 0:-50.49497177718836
- 1:66.14061077914775
9: [-50.494967230476306, 66.14087830906753]
- 0:-50.494967230476306
- 1:66.14087830906753
10: [-50.49563176958191, 66.14088272974159]
- 0:-50.49563176958191
- 1:66.14088272974159
11: [-50.49562739783259, 66.14115031141536]
- 0:-50.49562739783259
- 1:66.14115031141536
12: [-50.4969560970947, 66.14115474432894]
- 0:-50.4969560970947
- 1:66.14115474432894
13: [-50.496951668948775, 66.14142680362254]
- 0:-50.496951668948775
- 1:66.14142680362254
14: [-50.49894485217308, 66.141431213809]
- 0:-50.49894485217308
- 1:66.141431213809
15: [-50.49894034386827, 66.14169874496129]
- 0:-50.49894034386827
- 1:66.14169874496129
16: [-50.50093364128389, 66.14170765219033]
- 0:-50.50093364128389
- 1:66.14170765219033
92: List (17 elements)
0: [-50.21398154831798, 66.07080353952234]
- 0:-50.21398154831798
- 1:66.07080353952234
1: [-50.21464593045227, 66.07080797597402]
- 0:-50.21464593045227
- 1:66.07080797597402
2: [-50.214636965662244, 66.07107553404077]
- 0:-50.214636965662244
- 1:66.07107553404077
3: [-50.21662583127207, 66.07108441514583]
- 0:-50.21662583127207
- 1:66.07108441514583
4: [-50.216634631058284, 66.0708169217943]
- 0:-50.216634631058284
- 1:66.0708169217943
5: [-50.21795909390543, 66.07082135566573]
- 0:-50.21795909390543
- 1:66.07082135566573
6: [-50.217968026842485, 66.07055379745971]
- 0:-50.217968026842485
- 1:66.07055379745971
7: [-50.217303653192275, 66.07054937874298]
- 0:-50.217303653192275
- 1:66.07054937874298
8: [-50.21732133238672, 66.07000980109939]
- 0:-50.21732133238672
- 1:66.07000980109939
9: [-50.21665700265531, 66.07000978952382]
- 0:-50.21665700265531
- 1:66.07000978952382
10: [-50.21664805710844, 66.07027734698181]
- 0:-50.21664805710844
- 1:66.07027734698181
11: [-50.21399929174311, 66.07026396215058]
- 0:-50.21399929174311
- 1:66.07026396215058
12: [-50.214003850749975, 66.06999647316049]
- 0:-50.214003850749975
- 1:66.06999647316049
13: [-50.21334389940996, 66.0699919653078]
- 0:-50.21334389940996
- 1:66.0699919653078
14: [-50.213326143269896, 66.07053154192684]
- 0:-50.213326143269896
- 1:66.07053154192684
15: [-50.2139905194117, 66.07053598182969]
- 0:-50.2139905194117
- 1:66.07053598182969
16: [-50.21398154831798, 66.07080353952234]
- 0:-50.21398154831798
- 1:66.07080353952234
93: List (19 elements)
0: [-50.48646390876658, 66.1341227816809]
- 0:-50.48646390876658
- 1:66.1341227816809
1: [-50.48645952184228, 66.13439476712193]
- 0:-50.48645952184228
- 1:66.13439476712193
2: [-50.48712366953337, 66.13439476881682]
- 0:-50.48712366953337
- 1:66.13439476881682
3: [-50.48711477163311, 66.1346623038677]
- 0:-50.48711477163311
- 1:66.1346623038677
4: [-50.487779168447595, 66.13466676530443]
- 0:-50.487779168447595
- 1:66.13466676530443
5: [-50.48777471965663, 66.13493433967548]
- 0:-50.48777471965663
- 1:66.13493433967548
6: [-50.488439122451716, 66.13493879764765]
- 0:-50.488439122451716
- 1:66.13493879764765
7: [-50.48843482563838, 66.13520630705959]
- 0:-50.48843482563838
- 1:66.13520630705959
8: [-50.48909923441227, 66.13521076156636]
- 0:-50.48909923441227
- 1:66.13521076156636
9: [-50.489094798447574, 66.13547833663436]
- 0:-50.489094798447574
- 1:66.13547833663436
10: [-50.48975913802314, 66.13547837588969]
- 0:-50.48975913802314
- 1:66.13547837588969
11: [-50.48976799719827, 66.13494322591676]
- 0:-50.48976799719827
- 1:66.13494322591676
12: [-50.48910359532958, 66.13493877500476]
- 0:-50.48910359532958
- 1:66.13493877500476
13: [-50.48910803134102, 66.13467120050855]
- 0:-50.48910803134102
- 1:66.13467120050855
14: [-50.48844363545245, 66.13466674613193]
- 0:-50.48844363545245
- 1:66.13466674613193
15: [-50.488452520567684, 66.13439921090861]
- 0:-50.488452520567684
- 1:66.13439921090861
16: [-50.4877880599555, 66.13439923016493]
- 0:-50.4877880599555
- 1:66.13439923016493
17: [-50.487792747949506, 66.13412723070567]
- 0:-50.487792747949506
- 1:66.13412723070567
18: [-50.48646390876658, 66.1341227816809]
- 0:-50.48646390876658
- 1:66.1341227816809
94: List (21 elements)
0: [-50.3031903082051, 66.17781744848003]
- 0:-50.3031903082051
- 1:66.17781744848003
1: [-50.30252145840718, 66.17781308126415]
- 0:-50.30252145840718
- 1:66.17781308126415
2: [-50.30253915257335, 66.17727794844026]
- 0:-50.30253915257335
- 1:66.17727794844026
3: [-50.301870461522874, 66.17727351273014]
- 0:-50.301870461522874
- 1:66.17727351273014
4: [-50.30187939917827, 66.17700597266278]
- 0:-50.30187939917827
- 1:66.17700597266278
5: [-50.30121482763526, 66.17700147574602]
- 0:-50.30121482763526
- 1:66.17700147574602
6: [-50.301223771625565, 66.17673393604663]
- 0:-50.301223771625565
- 1:66.17673393604663
7: [-50.30055509267486, 66.17672949339374]
- 0:-50.30055509267486
- 1:66.17672949339374
8: [-50.3005638745884, 66.17646190238833]
- 0:-50.3005638745884
- 1:66.17646190238833
9: [-50.299230495525556, 66.17645301398035]
- 0:-50.299230495525556
- 1:66.17645301398035
10: [-50.29922619643954, 66.17672506293367]
- 0:-50.29922619643954
- 1:66.17672506293367
11: [-50.298557347756294, 66.17672055793685]
- 0:-50.298557347756294
- 1:66.17672055793685
12: [-50.298552828457574, 66.17698814300718]
- 0:-50.298552828457574
- 1:66.17698814300718
13: [-50.2992172332044, 66.17699260237445]
- 0:-50.2992172332044
- 1:66.17699260237445
14: [-50.299203948602255, 66.17753207514056]
- 0:-50.299203948602255
- 1:66.17753207514056
15: [-50.30053273718706, 66.17753657115982]
- 0:-50.30053273718706
- 1:66.17753657115982
16: [-50.30052378659427, 66.17780411161738]
- 0:-50.30052378659427
- 1:66.17780411161738
17: [-50.30119265987891, 66.17780860627323]
- 0:-50.30119265987891
- 1:66.17780860627323
18: [-50.30118371566255, 66.17807614709926]
- 0:-50.30118371566255
- 1:66.17807614709926
19: [-50.30318138323525, 66.17808498956437]
- 0:-50.30318138323525
- 1:66.17808498956437
20: [-50.3031903082051, 66.17781744848003]
- 0:-50.3031903082051
- 1:66.17781744848003
95: List (23 elements)
0: [-50.487378084947096, 66.12174430304667]
- 0:-50.487378084947096
- 1:66.12174430304667
1: [-50.48604903956035, 66.12173982958765]
- 0:-50.48604903956035
- 1:66.12173982958765
2: [-50.48605367655153, 66.12147232080844]
- 0:-50.48605367655153
- 1:66.12147232080844
3: [-50.48538911083699, 66.12146781471537]
- 0:-50.48538911083699
- 1:66.12146781471537
4: [-50.485398026422466, 66.12120029389085]
- 0:-50.485398026422466
- 1:66.12120029389085
5: [-50.48406931751577, 66.12119578564976]
- 0:-50.48406931751577
- 1:66.12119578564976
6: [-50.484073659746535, 66.1209282915152]
- 0:-50.484073659746535
- 1:66.1209282915152
7: [-50.48340927388609, 66.12092382639484]
- 0:-50.48340927388609
- 1:66.12092382639484
8: [-50.483413768028704, 66.12065626731055]
- 0:-50.483413768028704
- 1:66.12065626731055
9: [-50.48142055536498, 66.12064732777789]
- 0:-50.48142055536498
- 1:66.12064732777789
10: [-50.481411770915294, 66.12118690880148]
- 0:-50.481411770915294
- 1:66.12118690880148
11: [-50.48207616460078, 66.12119138458125]
- 0:-50.48207616460078
- 1:66.12119138458125
12: [-50.48206271018334, 66.12172646479176]
- 0:-50.48206271018334
- 1:66.12172646479176
13: [-50.48272711623544, 66.12173093719447]
- 0:-50.48272711623544
- 1:66.12173093719447
14: [-50.48271818923121, 66.12227046936225]
- 0:-50.48271818923121
- 1:66.12227046936225
15: [-50.481389279175986, 66.1222659976123]
- 0:-50.481389279175986
- 1:66.1222659976123
16: [-50.481375980311476, 66.12280113137896]
- 0:-50.481375980311476
- 1:66.12280113137896
17: [-50.48336917880169, 66.12281002116404]
- 0:-50.48336917880169
- 1:66.12281002116404
18: [-50.48336468474879, 66.12307758253598]
- 0:-50.48336468474879
- 1:66.12307758253598
19: [-50.48668669496356, 66.12309093581896]
- 0:-50.48668669496356
- 1:66.12309093581896
20: [-50.48670017524328, 66.12228389146571]
- 0:-50.48670017524328
- 1:66.12228389146571
21: [-50.48736893416112, 66.12228384998183]
- 0:-50.48736893416112
- 1:66.12228384998183
22: [-50.487378084947096, 66.12174430304667]
- 0:-50.487378084947096
- 1:66.12174430304667
96: List (23 elements)
0: [-50.410980161655715, 66.0937500910838]
- 0:-50.410980161655715
- 1:66.0937500910838
1: [-50.4096559527832, 66.09374559629009]
- 0:-50.4096559527832
- 1:66.09374559629009
2: [-50.40964246092537, 66.09428519149743]
- 0:-50.40964246092537
- 1:66.09428519149743
3: [-50.40897809356064, 66.09428071231531]
- 0:-50.40897809356064
- 1:66.09428071231531
4: [-50.408973590538004, 66.09455273664919]
- 0:-50.408973590538004
- 1:66.09455273664919
5: [-50.40698481946464, 66.09454379571332]
- 0:-50.40698481946464
- 1:66.09454379571332
6: [-50.40699821714329, 66.09400426572908]
- 0:-50.40699821714329
- 1:66.09400426572908
7: [-50.406333854454154, 66.09399977251869]
- 0:-50.406333854454154
- 1:66.09399977251869
8: [-50.40634718095224, 66.09346472006843]
- 0:-50.40634718095224
- 1:66.09346472006843
9: [-50.4010364487794, 66.09344241760166]
- 0:-50.4010364487794
- 1:66.09344241760166
10: [-50.40099189453194, 66.09532858956936]
- 0:-50.40099189453194
- 1:66.09532858956936
11: [-50.404973735923086, 66.09534197724271]
- 0:-50.404973735923086
- 1:66.09534197724271
12: [-50.40497819362024, 66.09507442866126]
- 0:-50.40497819362024
- 1:66.09507442866126
13: [-50.406971505548995, 66.09507885060994]
- 0:-50.406971505548995
- 1:66.09507885060994
14: [-50.40697594413239, 66.09481130213042]
- 0:-50.40697594413239
- 1:66.09481130213042
15: [-50.4076403256673, 66.09481579204797]
- 0:-50.4076403256673
- 1:66.09481579204797
16: [-50.40763589346216, 66.095083340592]
- 0:-50.40763589346216
- 1:66.095083340592
17: [-50.40829584416683, 66.09508778530893]
- 0:-50.40829584416683
- 1:66.09508778530893
18: [-50.408304790440006, 66.09481580218451]
- 0:-50.408304790440006
- 1:66.09481580218451
19: [-50.41162225089822, 66.0948291354492]
- 0:-50.41162225089822
- 1:66.0948291354492
20: [-50.41162681303031, 66.09456163832623]
- 0:-50.41162681303031
- 1:66.09456163832623
21: [-50.410962440594695, 66.0945571696614]
- 0:-50.410962440594695
- 1:66.0945571696614
22: [-50.410980161655715, 66.0937500910838]
- 0:-50.410980161655715
- 1:66.0937500910838
97: List (25 elements)
0: [-50.32755933071476, 66.18761409971795]
- 0:-50.32755933071476
- 1:66.18761409971795
1: [-50.32689043731128, 66.18761409192578]
- 0:-50.32689043731128
- 1:66.18761409192578
2: [-50.32689939809199, 66.18734211178007]
- 0:-50.32689939809199
- 1:66.18734211178007
3: [-50.326234962547396, 66.18734214524478]
- 0:-50.326234962547396
- 1:66.18734214524478
4: [-50.326239477898866, 66.18707012072741]
- 0:-50.326239477898866
- 1:66.18707012072741
5: [-50.32357732919345, 66.18706116760063]
- 0:-50.32357732919345
- 1:66.18706116760063
6: [-50.32356845510717, 66.1873287860492]
- 0:-50.32356845510717
- 1:66.1873287860492
7: [-50.32157073492118, 66.18731988757753]
- 0:-50.32157073492118
- 1:66.18731988757753
8: [-50.321579579295786, 66.18704785676792]
- 0:-50.321579579295786
- 1:66.18704785676792
9: [-50.31958187452141, 66.18703892669697]
- 0:-50.31958187452141
- 1:66.18703892669697
10: [-50.31957301056955, 66.1873109572472]
- 0:-50.31957301056955
- 1:66.1873109572472
11: [-50.318908666835625, 66.18730647410538]
- 0:-50.318908666835625
- 1:66.18730647410538
12: [-50.31888177833692, 66.18838557838214]
- 0:-50.31888177833692
- 1:66.18838557838214
13: [-50.32287292861516, 66.18840338529914]
- 0:-50.32287292861516
- 1:66.18840338529914
14: [-50.32288176014135, 66.18813135317045]
- 0:-50.32288176014135
- 1:66.18813135317045
15: [-50.324215029648386, 66.18813584108769]
- 0:-50.324215029648386
- 1:66.18813584108769
16: [-50.32422835781301, 66.18760079134131]
- 0:-50.32422835781301
- 1:66.18760079134131
17: [-50.32489270461485, 66.18760524631348]
- 0:-50.32489270461485
- 1:66.18760524631348
18: [-50.32488827294921, 66.18787279351884]
- 0:-50.32488827294921
- 1:66.18787279351884
19: [-50.32555262576151, 66.18787724503196]
- 0:-50.32555262576151
- 1:66.18787724503196
20: [-50.325543748468306, 66.18814474781138]
- 0:-50.325543748468306
- 1:66.18814474781138
21: [-50.3268770141986, 66.1881492073969]
- 0:-50.3268770141986
- 1:66.1881492073969
22: [-50.326885878642834, 66.18788170444704]
- 0:-50.326885878642834
- 1:66.18788170444704
23: [-50.32755039873978, 66.18788619700804]
- 0:-50.32755039873978
- 1:66.18788619700804
24: [-50.32755933071476, 66.18761409971795]
- 0:-50.32755933071476
- 1:66.18761409971795
98: List (33 elements)
0: [-50.39851700480356, 66.11577352417105]
- 0:-50.39851700480356
- 1:66.11577352417105
1: [-50.39785703889743, 66.11576906248573]
- 0:-50.39785703889743
- 1:66.11576906248573
2: [-50.397865935713135, 66.11523398845243]
- 0:-50.397865935713135
- 1:66.11523398845243
3: [-50.39720598209531, 66.1152295234099]
- 0:-50.39720598209531
- 1:66.1152295234099
4: [-50.39721036402726, 66.11496201948218]
- 0:-50.39721036402726
- 1:66.11496201948218
5: [-50.396546144558855, 66.11495756038062]
- 0:-50.396546144558855
- 1:66.11495756038062
6: [-50.39655495034338, 66.11468998224414]
- 0:-50.39655495034338
- 1:66.11468998224414
7: [-50.39589059116563, 66.11468558489351]
- 0:-50.39589059116563
- 1:66.11468558489351
8: [-50.395895131554695, 66.11441801646927]
- 0:-50.395895131554695
- 1:66.11441801646927
9: [-50.3952306101332, 66.11441356411824]
- 0:-50.3952306101332
- 1:66.11441356411824
10: [-50.39523942860704, 66.11414598672542]
- 0:-50.39523942860704
- 1:66.11414598672542
11: [-50.394575227092176, 66.1141415172701]
- 0:-50.394575227092176
- 1:66.1141415172701
12: [-50.39457963454896, 66.11387401473726]
- 0:-50.39457963454896
- 1:66.11387401473726
13: [-50.39391512509979, 66.1138695554722]
- 0:-50.39391512509979
- 1:66.1138695554722
14: [-50.39392412447956, 66.11360203035801]
- 0:-50.39392412447956
- 1:66.11360203035801
15: [-50.39126656345237, 66.11359308412445]
- 0:-50.39126656345237
- 1:66.11359308412445
16: [-50.391253099164615, 66.11412811111434]
- 0:-50.391253099164615
- 1:66.11412811111434
17: [-50.39191747110259, 66.11413264976683]
- 0:-50.39191747110259
- 1:66.11413264976683
18: [-50.39191303813941, 66.11440015233694]
- 0:-50.39191303813941
- 1:66.11440015233694
19: [-50.392577561766444, 66.11440462233169]
- 0:-50.392577561766444
- 1:66.11440462233169
20: [-50.39256854950243, 66.11467214813075]
- 0:-50.39256854950243
- 1:66.11467214813075
21: [-50.39389729440923, 66.11468109135247]
- 0:-50.39389729440923
- 1:66.11468109135247
22: [-50.39389288059043, 66.11494859468456]
- 0:-50.39389288059043
- 1:66.11494859468456
23: [-50.394552915829806, 66.11494860060064]
- 0:-50.394552915829806
- 1:66.11494860060064
24: [-50.39454827689449, 66.11522064605781]
- 0:-50.39454827689449
- 1:66.11522064605781
25: [-50.39587713050766, 66.11522509180057]
- 0:-50.39587713050766
- 1:66.11522509180057
26: [-50.395868318249605, 66.11549267042247]
- 0:-50.395868318249605
- 1:66.11549267042247
27: [-50.39653269668916, 66.1154970680143]
- 0:-50.39653269668916
- 1:66.1154970680143
28: [-50.39651941696562, 66.11603662833605]
- 0:-50.39651941696562
- 1:66.11603662833605
29: [-50.397183747528224, 66.11603661113634]
- 0:-50.397183747528224
- 1:66.11603661113634
30: [-50.39717921989601, 66.11630418140258]
- 0:-50.39717921989601
- 1:66.11630418140258
31: [-50.39850803561654, 66.11631307608602]
- 0:-50.39850803561654
- 1:66.11631307608602
32: [-50.39851700480356, 66.11577352417105]
- 0:-50.39851700480356
- 1:66.11577352417105
99: List (41 elements)
0: [-50.287668155202915, 66.18528201953195]
- 0:-50.287668155202915
- 1:66.18528201953195
1: [-50.285006059701644, 66.18527313007647]
- 0:-50.285006059701644
- 1:66.18527313007647
2: [-50.28501494769878, 66.18500111944999]
- 0:-50.28501494769878
- 1:66.18500111944999
3: [-50.28434612290628, 66.18500111832776]
- 0:-50.28434612290628
- 1:66.18500111832776
4: [-50.28435501738963, 66.18472910807427]
- 0:-50.28435501738963
- 1:66.18472910807427
5: [-50.28169292133298, 66.18471573594663]
- 0:-50.28169292133298
- 1:66.18471573594663
6: [-50.28169745492967, 66.18444820933509]
- 0:-50.28169745492967
- 1:66.18444820933509
7: [-50.27969980621926, 66.18443929322626]
- 0:-50.27969980621926
- 1:66.18443929322626
8: [-50.279708788569344, 66.18417169670195]
- 0:-50.279708788569344
- 1:66.18417169670195
9: [-50.28104185060292, 66.18417617596518]
- 0:-50.28104185060292
- 1:66.18417617596518
10: [-50.28105531748375, 66.18363664130543]
- 0:-50.28105531748375
- 1:66.18363664130543
11: [-50.27972656441376, 66.18363215702787]
- 0:-50.27972656441376
- 1:66.18363215702787
12: [-50.27971772854676, 66.1838996879149]
- 0:-50.27971772854676
- 1:66.1838996879149
13: [-50.278384362785815, 66.18389520799973]
- 0:-50.278384362785815
- 1:66.18389520799973
14: [-50.278379965622186, 66.18416278543955]
- 0:-50.278379965622186
- 1:66.18416278543955
15: [-50.27704658504139, 66.18415829120637]
- 0:-50.27704658504139
- 1:66.18415829120637
16: [-50.2770375770312, 66.1844258873841]
- 0:-50.2770375770312
- 1:66.1844258873841
17: [-50.27637331510843, 66.18442141262594]
- 0:-50.27637331510843
- 1:66.18442141262594
18: [-50.27636434240386, 66.18469342155068]
- 0:-50.27636434240386
- 1:66.18469342155068
19: [-50.27569992722816, 66.1846890082498]
- 0:-50.27569992722816
- 1:66.1846890082498
20: [-50.27569105263541, 66.1849565397488]
- 0:-50.27569105263541
- 1:66.1849565397488
21: [-50.275026672238454, 66.18495653539541]
- 0:-50.275026672238454
- 1:66.18495653539541
22: [-50.27500880524952, 66.18549607670369]
- 0:-50.27500880524952
- 1:66.18549607670369
23: [-50.27567779676673, 66.18549606269465]
- 0:-50.27567779676673
- 1:66.18549606269465
24: [-50.27566881732551, 66.18576807267975]
- 0:-50.27566881732551
- 1:66.18576807267975
25: [-50.27633321654145, 66.185768073733]
- 0:-50.27633321654145
- 1:66.185768073733
26: [-50.276328841835834, 66.18604006553919]
- 0:-50.276328841835834
- 1:66.18604006553919
27: [-50.2769932469593, 66.18604006312646]
- 0:-50.2769932469593
- 1:66.18604006312646
28: [-50.276984280445824, 66.18631207385764]
- 0:-50.276984280445824
- 1:66.18631207385764
29: [-50.27964631121889, 66.18632096593181]
- 0:-50.27964631121889
- 1:66.18632096593181
30: [-50.279641822721985, 66.18659302369583]
- 0:-50.279641822721985
- 1:66.18659302369583
31: [-50.2836371110751, 66.18661084113397]
- 0:-50.2836371110751
- 1:66.18661084113397
32: [-50.283628313105, 66.18687837563257]
- 0:-50.283628313105
- 1:66.18687837563257
33: [-50.286290295431456, 66.1868917212605]
- 0:-50.286290295431456
- 1:66.1868917212605
34: [-50.28629923623775, 66.18662423811564]
- 0:-50.28629923623775
- 1:66.18662423811564
35: [-50.28496600014027, 66.18661528475526]
- 0:-50.28496600014027
- 1:66.18661528475526
36: [-50.284974785238646, 66.18634775036796]
- 0:-50.284974785238646
- 1:66.18634775036796
37: [-50.28431048324608, 66.1863433174201]
- 0:-50.28431048324608
- 1:66.1863433174201
38: [-50.284314991266506, 66.18607578886427]
- 0:-50.284314991266506
- 1:66.18607578886427
39: [-50.28764591164137, 66.1860891583421]
- 0:-50.28764591164137
- 1:66.1860891583421
40: [-50.287668155202915, 66.18528201953195]
- 0:-50.287668155202915
- 1:66.18528201953195
100: List (47 elements)
0: [-50.20353399107205, 66.15042077648867]
- 0:-50.20353399107205
- 1:66.15042077648867
1: [-50.202869609383924, 66.15041630676616]
- 0:-50.202869609383924
- 1:66.15041630676616
2: [-50.20289621348738, 66.14960923177901]
- 0:-50.20289621348738
- 1:66.14960923177901
3: [-50.20223173409684, 66.1496092356618]
- 0:-50.20223173409684
- 1:66.1496092356618
4: [-50.20224078374063, 66.14933718342436]
- 0:-50.20224078374063
- 1:66.14933718342436
5: [-50.20090752839449, 66.1493327715122]
- 0:-50.20090752839449
- 1:66.1493327715122
6: [-50.20091644464463, 66.1490607847101]
- 0:-50.20091644464463
- 1:66.1490607847101
7: [-50.200252093517705, 66.14905630128459]
- 0:-50.200252093517705
- 1:66.14905630128459
8: [-50.20026985131674, 66.14852121746046]
- 0:-50.20026985131674
- 1:66.14852121746046
9: [-50.201598644341416, 66.14852570358384]
- 0:-50.201598644341416
- 1:66.14852570358384
10: [-50.20160758353396, 66.14825812944049]
- 0:-50.20160758353396
- 1:66.14825812944049
11: [-50.200943252066615, 66.14825364980472]
- 0:-50.200943252066615
- 1:66.14825364980472
12: [-50.20095205122096, 66.14798614100184]
- 0:-50.20095205122096
- 1:66.14798614100184
13: [-50.196296762323335, 66.14795930777653]
- 0:-50.196296762323335
- 1:66.14795930777653
14: [-50.196287968921645, 66.14823134462418]
- 0:-50.196287968921645
- 1:66.14823134462418
15: [-50.19562348785914, 66.1482269017004]
- 0:-50.19562348785914
- 1:66.1482269017004
16: [-50.195610115621704, 66.14876644498197]
- 0:-50.195610115621704
- 1:66.14876644498197
17: [-50.196274412657395, 66.14876642436754]
- 0:-50.196274412657395
- 1:66.14876642436754
18: [-50.196256628546344, 66.14930603638881]
- 0:-50.196256628546344
- 1:66.14930603638881
19: [-50.19559226818629, 66.14930152817489]
- 0:-50.19559226818629
- 1:66.14930152817489
20: [-50.195601118748606, 66.14903401891992]
- 0:-50.195601118748606
- 1:66.14903401891992
21: [-50.19426783867941, 66.14902512442254]
- 0:-50.19426783867941
- 1:66.14902512442254
22: [-50.194259003780346, 66.14929704539361]
- 0:-50.194259003780346
- 1:66.14929704539361
23: [-50.192265674999355, 66.14928813692191]
- 0:-50.192265674999355
- 1:66.14928813692191
24: [-50.192247931380685, 66.14982327220459]
- 0:-50.192247931380685
- 1:66.14982327220459
25: [-50.19158340937921, 66.14981880758114]
- 0:-50.19158340937921
- 1:66.14981880758114
26: [-50.19154334103621, 66.15116541342624]
- 0:-50.19154334103621
- 1:66.15116541342624
27: [-50.192207748818916, 66.15116994342252]
- 0:-50.192207748818916
- 1:66.15116994342252
28: [-50.19219886574542, 66.15143745452025]
- 0:-50.19219886574542
- 1:66.15143745452025
29: [-50.19286325782608, 66.1514418642999]
- 0:-50.19286325782608
- 1:66.1514418642999
30: [-50.19285423467543, 66.1517094407286]
- 0:-50.19285423467543
- 1:66.1517094407286
31: [-50.194847617688296, 66.151722817743]
- 0:-50.194847617688296
- 1:66.151722817743
32: [-50.19485659305374, 66.15145082912464]
- 0:-50.19485659305374
- 1:66.15145082912464
33: [-50.196185395341736, 66.15145973369948]
- 0:-50.196185395341736
- 1:66.15145973369948
34: [-50.19619424005929, 66.15119222208745]
- 0:-50.19619424005929
- 1:66.15119222208745
35: [-50.196863041150266, 66.15119224798906]
- 0:-50.196863041150266
- 1:66.15119224798906
36: [-50.19686757910536, 66.15092462230552]
- 0:-50.19686757910536
- 1:66.15092462230552
37: [-50.19886531456564, 66.15093357232657]
- 0:-50.19886531456564
- 1:66.15093357232657
38: [-50.19885637837948, 66.15120556088849]
- 0:-50.19885637837948
- 1:66.15120556088849
39: [-50.2001851336968, 66.15121001097249]
- 0:-50.2001851336968
- 1:66.15121001097249
40: [-50.20019393994906, 66.15094249913338]
- 0:-50.20019393994906
- 1:66.15094249913338
41: [-50.20085848251919, 66.15094691817436]
- 0:-50.20085848251919
- 1:66.15094691817436
42: [-50.2008761988622, 66.1504074182848]
- 0:-50.2008761988622
- 1:66.1504074182848
43: [-50.201540728159145, 66.15041183362212]
- 0:-50.201540728159145
- 1:66.15041183362212
44: [-50.20153178845543, 66.15067941003736]
- 0:-50.20153178845543
- 1:66.15067941003736
45: [-50.2035249024161, 66.15068830136214]
- 0:-50.2035249024161
- 1:66.15068830136214
46: [-50.20353399107205, 66.15042077648867]
- 0:-50.20353399107205
- 1:66.15042077648867
101: List (49 elements)
0: [-50.15939323792557, 66.13807347472797]
- 0:-50.15939323792557
- 1:66.13807347472797
1: [-50.16072203855999, 66.13808249244023]
- 0:-50.16072203855999
- 1:66.13808249244023
2: [-50.16071316631901, 66.13834997268738]
- 0:-50.16071316631901
- 1:66.13834997268738
3: [-50.16204195666743, 66.13835885967794]
- 0:-50.16204195666743
- 1:66.13835885967794
4: [-50.16203311871557, 66.13862645715375]
- 0:-50.16203311871557
- 1:66.13862645715375
5: [-50.162697519720716, 66.13863089543985]
- 0:-50.162697519720716
- 1:66.13863089543985
6: [-50.16267071204599, 66.13943799782045]
- 0:-50.16267071204599
- 1:66.13943799782045
7: [-50.163335131954135, 66.139442432837]
- 0:-50.163335131954135
- 1:66.139442432837
8: [-50.163317190099136, 66.13998205547085]
- 0:-50.163317190099136
- 1:66.13998205547085
9: [-50.16398174530836, 66.13998201049894]
- 0:-50.16398174530836
- 1:66.13998201049894
10: [-50.16397263532382, 66.14025403472417]
- 0:-50.16397263532382
- 1:66.14025403472417
11: [-50.165965925575996, 66.14026289707111]
- 0:-50.165965925575996
- 1:66.14026289707111
12: [-50.165957003022214, 66.1405349736941]
- 0:-50.165957003022214
- 1:66.1405349736941
13: [-50.166621422682326, 66.14053497968835]
- 0:-50.166621422682326
- 1:66.14053497968835
14: [-50.16663038438916, 66.14026743146981]
- 0:-50.16663038438916
- 1:66.14026743146981
15: [-50.16729482122742, 66.14027184556456]
- 0:-50.16729482122742
- 1:66.14027184556456
16: [-50.167303752319356, 66.13999988583251]
- 0:-50.167303752319356
- 1:66.13999988583251
17: [-50.16796818228637, 66.14000429630951]
- 0:-50.16796818228637
- 1:66.14000429630951
18: [-50.1679591112855, 66.14027632105929]
- 0:-50.1679591112855
- 1:66.14027632105929
19: [-50.16995241546617, 66.14028523662891]
- 0:-50.16995241546617
- 1:66.14028523662891
20: [-50.16997025019114, 66.1397457284747]
- 0:-50.16997025019114
- 1:66.1397457284747
21: [-50.1693056842998, 66.13974568854061]
- 0:-50.1693056842998
- 1:66.13974568854061
22: [-50.16932367803079, 66.13920611676902]
- 0:-50.16932367803079
- 1:66.13920611676902
23: [-50.16799483616607, 66.13919719015333]
- 0:-50.16799483616607
- 1:66.13919719015333
24: [-50.16800378474183, 66.13892964318433]
- 0:-50.16800378474183
- 1:66.13892964318433
25: [-50.16733938044246, 66.1389252330541]
- 0:-50.16733938044246
- 1:66.1389252330541
26: [-50.16734833533778, 66.13865768645465]
- 0:-50.16734833533778
- 1:66.13865768645465
27: [-50.16668376905208, 66.13865322103688]
- 0:-50.16668376905208
- 1:66.13865322103688
28: [-50.166692730268316, 66.13838567480713]
- 0:-50.166692730268316
- 1:66.13838567480713
29: [-50.16536392376013, 66.13837672046839]
- 0:-50.16536392376013
- 1:66.13837672046839
30: [-50.1653728976853, 66.13810917469533]
- 0:-50.1653728976853
- 1:66.13810917469533
31: [-50.16337956869243, 66.13809584028188]
- 0:-50.16337956869243
- 1:66.13809584028188
32: [-50.163388561716964, 66.1378282950526]
- 0:-50.163388561716964
- 1:66.1378282950526
33: [-50.16205977704666, 66.13781930575765]
- 0:-50.16205977704666
- 1:66.13781930575765
34: [-50.16206863637323, 66.13755182590822]
- 0:-50.16206863637323
- 1:66.13755182590822
35: [-50.160739884571534, 66.13754293943798]
- 0:-50.160739884571534
- 1:66.13754293943798
36: [-50.16074873502929, 66.13727534327103]
- 0:-50.16074873502929
- 1:66.13727534327103
37: [-50.15941999451661, 66.13726644285279]
- 0:-50.15941999451661
- 1:66.13726644285279
38: [-50.15942885768623, 66.13699884714143]
- 0:-50.15942885768623
- 1:66.13699884714143
39: [-50.15876449326134, 66.13699439172345]
- 0:-50.15876449326134
- 1:66.13699439172345
40: [-50.15877338431867, 66.1367269131544]
- 0:-50.15877338431867
- 1:66.1367269131544
41: [-50.157444667127166, 66.13671799190112]
- 0:-50.157444667127166
- 1:66.13671799190112
42: [-50.157426757108965, 66.13725754232132]
- 0:-50.157426757108965
- 1:66.13725754232132
43: [-50.158091128775176, 66.1372620048872]
- 0:-50.158091128775176
- 1:66.1372620048872
44: [-50.158082231190555, 66.1375294839402]
- 0:-50.158082231190555
- 1:66.1375294839402
45: [-50.1587466088724, 66.13753394306242]
- 0:-50.1587466088724
- 1:66.13753394306242
46: [-50.15873773917329, 66.13780153925808]
- 0:-50.15873773917329
- 1:66.13780153925808
47: [-50.15940212287344, 66.13780599493647]
- 0:-50.15940212287344
- 1:66.13780599493647
48: [-50.15939323792557, 66.13807347472797]
- 0:-50.15939323792557
- 1:66.13807347472797
102: List (61 elements)
0: [-50.33066733405256, 66.12033964262257]
- 0:-50.33066733405256
- 1:66.12033964262257
1: [-50.32933843000686, 66.1203352538013]
- 0:-50.32933843000686
- 1:66.1203352538013
2: [-50.32934734971648, 66.12006322889073]
- 0:-50.32934734971648
- 1:66.12006322889073
3: [-50.3286829282114, 66.12006323499233]
- 0:-50.3286829282114
- 1:66.12006323499233
4: [-50.328691854348605, 66.11979121045864]
- 0:-50.328691854348605
- 1:66.11979121045864
5: [-50.32802743873259, 66.11979121311037]
- 0:-50.32802743873259
- 1:66.11979121311037
6: [-50.328018602555744, 66.12005876099366]
- 0:-50.328018602555744
- 1:66.12005876099366
7: [-50.327354276509276, 66.12005428346373]
- 0:-50.327354276509276
- 1:66.12005428346373
8: [-50.32736311907242, 66.1197867356678]
- 0:-50.32736311907242
- 1:66.1197867356678
9: [-50.32536991496783, 66.1197778238217]
- 0:-50.32536991496783
- 1:66.1197778238217
10: [-50.325392177875706, 66.11897077840258]
- 0:-50.325392177875706
- 1:66.11897077840258
11: [-50.326056625450384, 66.11897520108842]
- 0:-50.326056625450384
- 1:66.11897520108842
12: [-50.32604777026899, 66.11924274785802]
- 0:-50.32604777026899
- 1:66.11924274785802
13: [-50.328040934463694, 66.1192516486585]
- 0:-50.328040934463694
- 1:66.1192516486585
14: [-50.32803209837682, 66.11951919596913]
- 0:-50.32803209837682
- 1:66.11951919596913
15: [-50.32869641115652, 66.11952366981473]
- 0:-50.32869641115652
- 1:66.11952366981473
16: [-50.32870524085734, 66.1192561224168]
- 0:-50.32870524085734
- 1:66.1192561224168
17: [-50.329369643099284, 66.11925611608925]
- 0:-50.329369643099284
- 1:66.11925611608925
18: [-50.329374193517744, 66.11898857595439]
- 0:-50.329374193517744
- 1:66.11898857595439
19: [-50.32870989400455, 66.11898410579298]
- 0:-50.32870989400455
- 1:66.11898410579298
20: [-50.32871872361566, 66.11871655896778]
- 0:-50.32871872361566
- 1:66.11871655896778
21: [-50.328054284208626, 66.11871215047728]
- 0:-50.328054284208626
- 1:66.11871215047728
22: [-50.32806326602886, 66.1184445389084]
- 0:-50.32806326602886
- 1:66.1184445389084
23: [-50.32739883261637, 66.11844012697333]
- 0:-50.32739883261637
- 1:66.11844012697333
24: [-50.32740323401418, 66.11817253626062]
- 0:-50.32740323401418
- 1:66.11817253626062
25: [-50.326738806592395, 66.11816812085662]
- 0:-50.326738806592395
- 1:66.11816812085662
26: [-50.32674765520987, 66.11790057514521]
- 0:-50.32674765520987
- 1:66.11790057514521
27: [-50.326083379670564, 66.11789609118378]
- 0:-50.326083379670564
- 1:66.11789609118378
28: [-50.32606984559232, 66.11843565230089]
- 0:-50.32606984559232
- 1:66.11843565230089
29: [-50.3240767350218, 66.11842672041126]
- 0:-50.3240767350218
- 1:66.11842672041126
30: [-50.324085609208325, 66.1181591747558]
- 0:-50.324085609208325
- 1:66.1181591747558
31: [-50.32209236774028, 66.11815027644008]
- 0:-50.32209236774028
- 1:66.11815027644008
32: [-50.32210135843234, 66.11787825480825]
- 0:-50.32210135843234
- 1:66.11787825480825
33: [-50.32143698243329, 66.11787822266447]
- 0:-50.32143698243329
- 1:66.11787822266447
34: [-50.321419183035985, 66.11841331300062]
- 0:-50.321419183035985
- 1:66.11841331300062
35: [-50.32208347439384, 66.11841782183768]
- 0:-50.32208347439384
- 1:66.11841782183768
36: [-50.32207916784569, 66.1186853472309]
- 0:-50.32207916784569
- 1:66.1186853472309
37: [-50.32274346519664, 66.11868985260007]
- 0:-50.32274346519664
- 1:66.11868985260007
38: [-50.32273457814718, 66.11895739865332]
- 0:-50.32273457814718
- 1:66.11895739865332
39: [-50.321405726857876, 66.11895292585145]
- 0:-50.321405726857876
- 1:66.11895292585145
40: [-50.32140141392584, 66.11922045175518]
- 0:-50.32140141392584
- 1:66.11922045175518
41: [-50.32206555640598, 66.11922490917625]
- 0:-50.32206555640598
- 1:66.11922490917625
42: [-50.32205666287835, 66.11949245571462]
- 0:-50.32205666287835
- 1:66.11949245571462
43: [-50.32272112539656, 66.11949689621649]
- 0:-50.32272112539656
- 1:66.11949689621649
44: [-50.32269895339556, 66.12030399404897]
- 0:-50.32269895339556
- 1:66.12030399404897
45: [-50.32402772106821, 66.12030851858903]
- 0:-50.32402772106821
- 1:66.12030851858903
46: [-50.324018895292895, 66.12058047798422]
- 0:-50.324018895292895
- 1:66.12058047798422
47: [-50.32468316522329, 66.12058044512685]
- 0:-50.32468316522329
- 1:66.12058044512685
48: [-50.32467878716938, 66.1208524496276]
- 0:-50.32467878716938
- 1:66.1208524496276
49: [-50.325343231133154, 66.12085246492582]
- 0:-50.325343231133154
- 1:66.12085246492582
50: [-50.325334272348094, 66.12112449018595]
- 0:-50.325334272348094
- 1:66.12112449018595
51: [-50.327991852976965, 66.12113335280878]
- 0:-50.327991852976965
- 1:66.12113335280878
52: [-50.32798292010125, 66.12140537870663]
- 0:-50.32798292010125
- 1:66.12140537870663
53: [-50.32931173154143, 66.12140984736494]
- 0:-50.32931173154143
- 1:66.12140984736494
54: [-50.329302907830474, 66.12167739713037]
- 0:-50.329302907830474
- 1:66.12167739713037
55: [-50.330631634024044, 66.12168632842811]
- 0:-50.330631634024044
- 1:66.12168632842811
56: [-50.33064054098908, 66.12141430189298]
- 0:-50.33064054098908
- 1:66.12141430189298
57: [-50.32997608844683, 66.1214143146923]
- 0:-50.32997608844683
- 1:66.1214143146923
58: [-50.32998954591783, 66.12087474633456]
- 0:-50.32998954591783
- 1:66.12087474633456
59: [-50.330653889554355, 66.12087920997763]
- 0:-50.330653889554355
- 1:66.12087920997763
60: [-50.33066733405256, 66.12033964262257]
- 0:-50.33066733405256
- 1:66.12033964262257
103: List (63 elements)
0: [-50.3237156337406, 66.18194662954755]
- 0:-50.3237156337406
- 1:66.18194662954755
1: [-50.323046655513075, 66.18194213780889]
- 0:-50.323046655513075
- 1:66.18194213780889
2: [-50.32305555731522, 66.1816746418533]
- 0:-50.32305555731522
- 1:66.1816746418533
3: [-50.32239118239008, 66.18167012638308]
- 0:-50.32239118239008
- 1:66.18167012638308
4: [-50.32239563954519, 66.18140258592]
- 0:-50.32239563954519
- 1:66.18140258592
5: [-50.32173129292037, 66.18139818375883]
- 0:-50.32173129292037
- 1:66.18139818375883
6: [-50.32174018514585, 66.18113057176991]
- 0:-50.32174018514585
- 1:66.18113057176991
7: [-50.31974259130382, 66.18112166030302]
- 0:-50.31974259130382
- 1:66.18112166030302
8: [-50.31974707409059, 66.18085412065304]
- 0:-50.31974707409059
- 1:66.18085412065304
9: [-50.319082570086195, 66.1808496528731]
- 0:-50.319082570086195
- 1:66.1808496528731
10: [-50.31909151015609, 66.1805821585599]
- 0:-50.31909151015609
- 1:66.1805821585599
11: [-50.3117697095469, 66.18054649163376]
- 0:-50.3117697095469
- 1:66.18054649163376
12: [-50.31176069893699, 66.1808139849936]
- 0:-50.31176069893699
- 1:66.1808139849936
13: [-50.30842974557787, 66.18080058688875]
- 0:-50.30842974557787
- 1:66.18080058688875
14: [-50.3084476155891, 66.18026113715355]
- 0:-50.3084476155891
- 1:66.18026113715355
15: [-50.30778333256853, 66.18026107366441]
- 0:-50.30778333256853
- 1:66.18026107366441
16: [-50.307787715500424, 66.17998907183694]
- 0:-50.307787715500424
- 1:66.17998907183694
17: [-50.305125474966246, 66.1799801728176]
- 0:-50.305125474966246
- 1:66.1799801728176
18: [-50.30513448103167, 66.17970815191326]
- 0:-50.30513448103167
- 1:66.17970815191326
19: [-50.301803509292085, 66.17969476020902]
- 0:-50.301803509292085
- 1:66.17969476020902
20: [-50.3017990219329, 66.17996234870037]
- 0:-50.3017990219329
- 1:66.17996234870037
21: [-50.299801362406, 66.17995341827131]
- 0:-50.299801362406
- 1:66.17995341827131
22: [-50.29977024252229, 66.18103251394642]
- 0:-50.29977024252229
- 1:66.18103251394642
23: [-50.300439025583856, 66.18103696143879]
- 0:-50.300439025583856
- 1:66.18103696143879
24: [-50.30042112300259, 66.18157204997215]
- 0:-50.30042112300259
- 1:66.18157204997215
25: [-50.30109008704216, 66.18157654574472]
- 0:-50.30109008704216
- 1:66.18157654574472
26: [-50.301081142095896, 66.18184409051972]
- 0:-50.301081142095896
- 1:66.18184409051972
27: [-50.30240986483983, 66.18185299377697]
- 0:-50.30240986483983
- 1:66.18185299377697
28: [-50.30240553009553, 66.18212051949448]
- 0:-50.30240553009553
- 1:66.18212051949448
29: [-50.30306990838974, 66.1821250242866]
- 0:-50.30306990838974
- 1:66.1821250242866
30: [-50.30305665421078, 66.18266009622705]
- 0:-50.30305665421078
- 1:66.18266009622705
31: [-50.30438541302797, 66.18266897876849]
- 0:-50.30438541302797
- 1:66.18266897876849
32: [-50.30438095121863, 66.18293657061915]
- 0:-50.30438095121863
- 1:66.18293657061915
33: [-50.30837178285303, 66.18295440601135]
- 0:-50.30837178285303
- 1:66.18295440601135
34: [-50.30836733727197, 66.18322188174446]
- 0:-50.30836733727197
- 1:66.18322188174446
35: [-50.309696137273555, 66.18323082487997]
- 0:-50.309696137273555
- 1:66.18323082487997
36: [-50.30970509831956, 66.18295879992596]
- 0:-50.30970509831956
- 1:66.18295879992596
37: [-50.31103388375089, 66.18296772878895]
- 0:-50.31103388375089
- 1:66.18296772878895
38: [-50.31102948604869, 66.18323532154376]
- 0:-50.31102948604869
- 1:66.18323532154376
39: [-50.311693884582795, 66.18323978075284]
- 0:-50.311693884582795
- 1:66.18323978075284
40: [-50.31168487342254, 66.18350727693301]
- 0:-50.31168487342254
- 1:66.18350727693301
41: [-50.31235372933412, 66.18351177794038]
- 0:-50.31235372933412
- 1:66.18351177794038
42: [-50.31236721769085, 66.18297221113497]
- 0:-50.31236721769085
- 1:66.18297221113497
43: [-50.315029329968105, 66.18298556576295]
- 0:-50.315029329968105
- 1:66.18298556576295
44: [-50.3150248022383, 66.18325310723283]
- 0:-50.3150248022383
- 1:66.18325310723283
45: [-50.31835130120402, 66.18326653364737]
- 0:-50.31835130120402
- 1:66.18326653364737
46: [-50.31837345145368, 66.18245941822424]
- 0:-50.31837345145368
- 1:66.18245941822424
47: [-50.31637592252712, 66.18245050412783]
- 0:-50.31637592252712
- 1:66.18245050412783
48: [-50.316384720050344, 66.18218295681592]
- 0:-50.316384720050344
- 1:66.18218295681592
49: [-50.315715899142496, 66.182178477537]
- 0:-50.315715899142496
- 1:66.182178477537
50: [-50.31573377363656, 66.18163895794702]
- 0:-50.31573377363656
- 1:66.18163895794702
51: [-50.31773156053417, 66.18164786847026]
- 0:-50.31773156053417
- 1:66.18164786847026
52: [-50.31773589405621, 66.1813802767937]
- 0:-50.31773589405621
- 1:66.1813802767937
53: [-50.31906916301474, 66.18138480410222]
- 0:-50.31906916301474
- 1:66.18138480410222
54: [-50.31906029359083, 66.18165682854965]
- 0:-50.31906029359083
- 1:66.18165682854965
55: [-50.319729197031705, 66.18165681224544]
- 0:-50.319729197031705
- 1:66.18165681224544
56: [-50.319720165580065, 66.18192878541596]
- 0:-50.319720165580065
- 1:66.18192878541596
57: [-50.32038464617015, 66.18192883744533]
- 0:-50.32038464617015
- 1:66.18192883744533
58: [-50.32038021851256, 66.1822007908168]
- 0:-50.32038021851256
- 1:66.1822007908168
59: [-50.32237329103619, 66.18220971282618]
- 0:-50.32237329103619
- 1:66.18220971282618
60: [-50.32236883385272, 66.18247725413619]
- 0:-50.32236883385272
- 1:66.18247725413619
61: [-50.3236977681676, 66.18248621690866]
- 0:-50.3236977681676
- 1:66.18248621690866
62: [-50.3237156337406, 66.18194662954755]
- 0:-50.3237156337406
- 1:66.18194662954755
104: List (77 elements)
0: [-50.31229132147931, 66.11218402507315]
- 0:-50.31229132147931
- 1:66.11218402507315
1: [-50.31230922811495, 66.11164442226028]
- 0:-50.31230922811495
- 1:66.11164442226028
2: [-50.310980416453546, 66.11163997083236]
- 0:-50.310980416453546
- 1:66.11163997083236
3: [-50.31097141586528, 66.11190750790368]
- 0:-50.31097141586528
- 1:66.11190750790368
4: [-50.31030702619178, 66.11190748245285]
- 0:-50.31030702619178
- 1:66.11190748245285
5: [-50.31031598659216, 66.11163553417022]
- 0:-50.31031598659216
- 1:66.11163553417022
6: [-50.30898717205859, 66.11163106153921]
- 0:-50.30898717205859
- 1:66.11163106153921
7: [-50.30899602366557, 66.11136347336402]
- 0:-50.30899602366557
- 1:66.11136347336402
8: [-50.309660401561565, 66.11136350571677]
- 0:-50.309660401561565
- 1:66.11136350571677
9: [-50.309664974976656, 66.11109592413753]
- 0:-50.309664974976656
- 1:66.11109592413753
10: [-50.30900499691109, 66.11109152583626]
- 0:-50.30900499691109
- 1:66.11109152583626
11: [-50.30901838177364, 66.11055194601425]
- 0:-50.30901838177364
- 1:66.11055194601425
12: [-50.308353876740235, 66.11055197544343]
- 0:-50.308353876740235
- 1:66.11055197544343
13: [-50.308362834153655, 66.11027991213857]
- 0:-50.308362834153655
- 1:66.11027991213857
14: [-50.30504094688571, 66.11026656417368]
- 0:-50.30504094688571
- 1:66.11026656417368
15: [-50.30502748488151, 66.1108061425262]
- 0:-50.30502748488151
- 1:66.1108061425262
16: [-50.306356244475275, 66.11081054031204]
- 0:-50.306356244475275
- 1:66.11081054031204
17: [-50.306347267494466, 66.11108260393948]
- 0:-50.306347267494466
- 1:66.11108260393948
18: [-50.30568284746013, 66.11107814271672]
- 0:-50.30568284746013
- 1:66.11107814271672
19: [-50.30564735688962, 66.11242476278147]
- 0:-50.30564735688962
- 1:66.11242476278147
20: [-50.30631159504096, 66.1124247614372]
- 0:-50.30631159504096
- 1:66.1124247614372
21: [-50.3063027636554, 66.11269676172165]
- 0:-50.3063027636554
- 1:66.11269676172165
22: [-50.30763163343142, 66.11270126321273]
- 0:-50.30763163343142
- 1:66.11270126321273
23: [-50.30760933547711, 66.11350832062689]
- 0:-50.30760933547711
- 1:66.11350832062689
24: [-50.30827366610059, 66.11351283705751]
- 0:-50.30827366610059
- 1:66.11351283705751
25: [-50.30826478553818, 66.11378031069533]
- 0:-50.30826478553818
- 1:66.11378031069533
26: [-50.30959370373475, 66.11378479161912]
- 0:-50.30959370373475
- 1:66.11378479161912
27: [-50.309584590527095, 66.11405680723146]
- 0:-50.309584590527095
- 1:66.11405680723146
28: [-50.310913519725304, 66.11406127419235]
- 0:-50.310913519725304
- 1:66.11406127419235
29: [-50.31090910488114, 66.11432879395466]
- 0:-50.31090910488114
- 1:66.11432879395466
30: [-50.31356229784172, 66.1143421821307]
- 0:-50.31356229784172
- 1:66.1143421821307
31: [-50.31355322345026, 66.11461419885131]
- 0:-50.31355322345026
- 1:66.11461419885131
32: [-50.31554652432717, 66.11462310167]
- 0:-50.31554652432717
- 1:66.11462310167
33: [-50.31553756782014, 66.11489064249304]
- 0:-50.31553756782014
- 1:66.11489064249304
34: [-50.316201925485366, 66.11489511696993]
- 0:-50.316201925485366
- 1:66.11489511696993
35: [-50.31619756162206, 66.1151626380897]
- 0:-50.31619756162206
- 1:66.1151626380897
36: [-50.316861925278815, 66.11516710909777]
- 0:-50.316861925278815
- 1:66.11516710909777
37: [-50.31684403755584, 66.11570219251605]
- 0:-50.31684403755584
- 1:66.11570219251605
38: [-50.31817295734866, 66.11571117592288]
- 0:-50.31817295734866
- 1:66.11571117592288
39: [-50.31816402615886, 66.11597871823356]
- 0:-50.31816402615886
- 1:66.11597871823356
40: [-50.3194928868923, 66.11598315956827]
- 0:-50.3194928868923
- 1:66.11598315956827
41: [-50.31948828893942, 66.11625510698829]
- 0:-50.31948828893942
- 1:66.11625510698829
42: [-50.32015262801619, 66.11625514928018]
- 0:-50.32015262801619
- 1:66.11625514928018
43: [-50.32015726764727, 66.11598761317576]
- 0:-50.32015726764727
- 1:66.11598761317576
44: [-50.32082164801098, 66.11599206325086]
- 0:-50.32082164801098
- 1:66.11599206325086
45: [-50.32081718287786, 66.11625965105326]
- 0:-50.32081718287786
- 1:66.11625965105326
46: [-50.321477128655765, 66.11626405282179]
- 0:-50.321477128655765
- 1:66.11626405282179
47: [-50.32147266988232, 66.11653164097268]
- 0:-50.32147266988232
- 1:66.11653164097268
48: [-50.32280155149383, 66.11653604726877]
- 0:-50.32280155149383
- 1:66.11653604726877
49: [-50.32281473816725, 66.11600098090402]
- 0:-50.32281473816725
- 1:66.11600098090402
50: [-50.32215035908393, 66.11599654142647]
- 0:-50.32215035908393
- 1:66.11599654142647
51: [-50.32215481147035, 66.11572895378575]
- 0:-50.32215481147035
- 1:66.11572895378575
52: [-50.321495024760075, 66.11572449057063]
- 0:-50.321495024760075
- 1:66.11572449057063
53: [-50.321499337616196, 66.11545696838468]
- 0:-50.321499337616196
- 1:66.11545696838468
54: [-50.32017502126432, 66.11544800021636]
- 0:-50.32017502126432
- 1:66.11544800021636
55: [-50.320201907840506, 66.11437338445711]
- 0:-50.320201907840506
- 1:66.11437338445711
56: [-50.31953741971707, 66.11436899643377]
- 0:-50.31953741971707
- 1:66.11436899643377
57: [-50.31954616971977, 66.11410140403241]
- 0:-50.31954616971977
- 1:66.11410140403241
58: [-50.318881833477455, 66.11409694745925]
- 0:-50.318881833477455
- 1:66.11409694745925
59: [-50.318886317698414, 66.11382936213626]
- 0:-50.318886317698414
- 1:66.11382936213626
60: [-50.31689766772247, 66.11382049285157]
- 0:-50.31689766772247
- 1:66.11382049285157
61: [-50.31688426842816, 66.11436002975451]
- 0:-50.31688426842816
- 1:66.11436002975451
62: [-50.31555543334344, 66.11435114978579]
- 0:-50.31555543334344
- 1:66.11435114978579
63: [-50.31555994945899, 66.11408356448926]
- 0:-50.31555994945899
- 1:66.11408356448926
64: [-50.314231026887356, 66.11407914695404]
- 0:-50.314231026887356
- 1:66.11407914695404
65: [-50.314239926604, 66.11380707908586]
- 0:-50.314239926604
- 1:66.11380707908586
66: [-50.31357566270682, 66.11380712241224]
- 0:-50.31357566270682
- 1:66.11380712241224
67: [-50.3135844229502, 66.11353512001763]
- 0:-50.3135844229502
- 1:66.11353512001763
68: [-50.31291999685211, 66.11353510825094]
- 0:-50.31291999685211
- 1:66.11353510825094
69: [-50.31292907750675, 66.11326309277999]
- 0:-50.31292907750675
- 1:66.11326309277999
70: [-50.312264610404796, 66.11325866623898]
- 0:-50.312264610404796
- 1:66.11325866623898
71: [-50.312269158378676, 66.11299108240316]
- 0:-50.312269158378676
- 1:66.11299108240316
72: [-50.31094472255106, 66.11298667537676]
- 0:-50.31094472255106
- 1:66.11298667537676
73: [-50.310949068505415, 66.11271462899035]
- 0:-50.310949068505415
- 1:66.11271462899035
74: [-50.31028924553989, 66.11271458345333]
- 0:-50.31028924553989
- 1:66.11271458345333
75: [-50.3103026271999, 66.11217511660216]
- 0:-50.3103026271999
- 1:66.11217511660216
76: [-50.31229132147931, 66.11218402507315]
- 0:-50.31229132147931
- 1:66.11218402507315
105: List (89 elements)
0: [-50.37239559824775, 66.0712583654968]
- 0:-50.37239559824775
- 1:66.0712583654968
1: [-50.371731314246986, 66.07125388708542]
- 0:-50.371731314246986
- 1:66.07125388708542
2: [-50.37174004813493, 66.07098637242876]
- 0:-50.37174004813493
- 1:66.07098637242876
3: [-50.37107577011081, 66.07098189056767]
- 0:-50.37107577011081
- 1:66.07098189056767
4: [-50.37108007720379, 66.07071433325787]
- 0:-50.37108007720379
- 1:66.07071433325787
5: [-50.36975587590891, 66.07070987787797]
- 0:-50.36975587590891
- 1:66.07070987787797
6: [-50.369764628791756, 66.07044236405106]
- 0:-50.369764628791756
- 1:66.07044236405106
7: [-50.3691003622186, 66.07043787175272]
- 0:-50.3691003622186
- 1:66.07043787175272
8: [-50.36910912141156, 66.07017035829958]
- 0:-50.36910912141156
- 1:66.07017035829958
9: [-50.36778045428524, 66.0701614284174]
- 0:-50.36778045428524
- 1:66.0701614284174
10: [-50.367793878471275, 66.06962634598626]
- 0:-50.367793878471275
- 1:66.06962634598626
11: [-50.36713389487077, 66.06962183492286]
- 0:-50.36713389487077
- 1:66.06962183492286
12: [-50.36713840798913, 66.06935433098576]
- 0:-50.36713840798913
- 1:66.06935433098576
13: [-50.36581395118385, 66.06934984773116]
- 0:-50.36581395118385
- 1:66.06934984773116
14: [-50.365818399664946, 66.06907781692807]
- 0:-50.365818399664946
- 1:66.06907781692807
15: [-50.365158504799844, 66.06907782277217]
- 0:-50.365158504799844
- 1:66.06907782277217
16: [-50.3651717568277, 66.06853828111696]
- 0:-50.3651717568277
- 1:66.06853828111696
17: [-50.36450738655418, 66.06853382979506]
- 0:-50.36450738655418
- 1:66.06853382979506
18: [-50.36451192510228, 66.06826632726556]
- 0:-50.36451192510228
- 1:66.06826632726556
19: [-50.363851971197214, 66.06826179904209]
- 0:-50.363851971197214
- 1:66.06826179904209
20: [-50.36385651609074, 66.06799429686454]
- 0:-50.36385651609074
- 1:66.06799429686454
21: [-50.360543380812246, 66.0679808917193]
- 0:-50.360543380812246
- 1:66.0679808917193
22: [-50.36053882649437, 66.06824851029259]
- 0:-50.36053882649437
- 1:66.06824851029259
23: [-50.35987451365679, 66.0682484448871]
- 0:-50.35987451365679
- 1:66.0682484448871
24: [-50.359883453023194, 66.06797645924989]
- 0:-50.359883453023194
- 1:66.06797645924989
25: [-50.35723025590853, 66.06796751527695]
- 0:-50.35723025590853
- 1:66.06796751527695
26: [-50.35723922108557, 66.0676955302815]
- 0:-50.35723922108557
- 1:66.0676955302815
27: [-50.35591484881305, 66.06769105908381]
- 0:-50.35591484881305
- 1:66.06769105908381
28: [-50.35591930204831, 66.06742350666524]
- 0:-50.35591930204831
- 1:66.06742350666524
29: [-50.35393044329122, 66.06741457916928]
- 0:-50.35393044329122
- 1:66.06741457916928
30: [-50.353939348233546, 66.06714707085841]
- 0:-50.353939348233546
- 1:66.06714707085841
31: [-50.34863748899828, 66.0671247412155]
- 0:-50.34863748899828
- 1:66.0671247412155
32: [-50.34864195987442, 66.06685277953919]
- 0:-50.34864195987442
- 1:66.06685277953919
33: [-50.34532881927989, 66.0668393862805]
- 0:-50.34532881927989
- 1:66.0668393862805
34: [-50.34533780676857, 66.06657187966783]
- 0:-50.34533780676857
- 1:66.06657187966783
35: [-50.344673322754794, 66.06656738811529]
- 0:-50.344673322754794
- 1:66.06656738811529
36: [-50.34468214869985, 66.06629983028851]
- 0:-50.34468214869985
- 1:66.06629983028851
37: [-50.3426935329651, 66.06629089237782]
- 0:-50.3426935329651
- 1:66.06629089237782
38: [-50.34269806196197, 66.06601893215333]
- 0:-50.34269806196197
- 1:66.06601893215333
39: [-50.3393848727655, 66.06600556340798]
- 0:-50.3393848727655
- 1:66.06600556340798
40: [-50.33938031147882, 66.06627752331627]
- 0:-50.33938031147882
- 1:66.06627752331627
41: [-50.33805602132945, 66.06627309628784]
- 0:-50.33805602132945
- 1:66.06627309628784
42: [-50.33804713181618, 66.06654065325941]
- 0:-50.33804713181618
- 1:66.06654065325941
43: [-50.337387075659706, 66.06653616708587]
- 0:-50.337387075659706
- 1:66.06653616708587
44: [-50.33739170679013, 66.06626861758123]
- 0:-50.33739170679013
- 1:66.06626861758123
45: [-50.336727246260224, 66.06626420044941]
- 0:-50.336727246260224
- 1:66.06626420044941
46: [-50.33671375684963, 66.06680371748641]
- 0:-50.33671375684963
- 1:66.06680371748641
47: [-50.337378230230485, 66.06680813477153]
- 0:-50.337378230230485
- 1:66.06680813477153
48: [-50.33736933425329, 66.06707569223411]
- 0:-50.33736933425329
- 1:66.06707569223411
49: [-50.338033668014326, 66.06708017118191]
- 0:-50.338033668014326
- 1:66.06708017118191
50: [-50.33802477834461, 66.06734772901908]
- 0:-50.33802477834461
- 1:66.06734772901908
51: [-50.33868926368423, 66.0673521394012]
- 0:-50.33868926368423
- 1:66.0673521394012
52: [-50.33868038032365, 66.06761969761286]
- 0:-50.33868038032365
- 1:66.06761969761286
53: [-50.33934472604375, 66.06762416965918]
- 0:-50.33934472604375
- 1:66.06762416965918
54: [-50.339335848991205, 66.06789172824536]
- 0:-50.339335848991205
- 1:66.06789172824536
55: [-50.34000020069149, 66.06789619684128]
- 0:-50.34000020069149
- 1:66.06789619684128
56: [-50.33999574053493, 66.06816368321776]
- 0:-50.33999574053493
- 1:66.06816368321776
57: [-50.34065568762763, 66.0681682209473]
- 0:-50.34065568762763
- 1:66.0681682209473
58: [-50.3406512338169, 66.06843570767516]
- 0:-50.3406512338169
- 1:66.06843570767516
59: [-50.341975644491875, 66.06844022446843]
- 0:-50.341975644491875
- 1:66.06844022446843
60: [-50.34196669836577, 66.06871225993083]
- 0:-50.34196669836577
- 1:66.06871225993083
61: [-50.34329109770812, 66.06871664611984]
- 0:-50.34329109770812
- 1:66.06871664611984
62: [-50.343286523691134, 66.0689841987944]
- 0:-50.343286523691134
- 1:66.0689841987944
63: [-50.343950898413475, 66.06898864651112]
- 0:-50.343950898413475
- 1:66.06898864651112
64: [-50.34395541452262, 66.06871668322]
- 0:-50.34395541452262
- 1:66.06871668322
65: [-50.34461978237354, 66.06872112733328]
- 0:-50.34461978237354
- 1:66.06872112733328
66: [-50.34461095601089, 66.068988687757]
- 0:-50.34461095601089
- 1:66.068988687757
67: [-50.34659975927948, 66.06899759626404]
- 0:-50.34659975927948
- 1:66.06899759626404
68: [-50.346595269008745, 66.06926956010238]
- 0:-50.346595269008745
- 1:66.06926956010238
69: [-50.3479195637819, 66.0692740791347]
- 0:-50.3479195637819
- 1:66.0692740791347
70: [-50.3479106012459, 66.0695415889779]
- 0:-50.3479106012459
- 1:66.0695415889779
71: [-50.348575153617865, 66.06954606373245]
- 0:-50.348575153617865
- 1:66.06954606373245
72: [-50.34856619739003, 66.06981357395038]
- 0:-50.34856619739003
- 1:66.06981357395038
73: [-50.357185544030294, 66.06984927917759]
- 0:-50.357185544030294
- 1:66.06984927917759
74: [-50.35717657849565, 66.07012126652073]
- 0:-50.35717657849565
- 1:66.07012126652073
75: [-50.359829812580976, 66.07013016129135]
- 0:-50.359829812580976
- 1:66.07013016129135
76: [-50.35982104075877, 66.07040220084599]
- 0:-50.35982104075877
- 1:66.07040220084599
77: [-50.36180973025796, 66.07040663868841]
- 0:-50.36180973025796
- 1:66.07040663868841
78: [-50.361796268230755, 66.07094624881616]
- 0:-50.361796268230755
- 1:66.07094624881616
79: [-50.36312063956768, 66.07095072362596]
- 0:-50.36312063956768
- 1:66.07095072362596
80: [-50.36310718071594, 66.0714902185066]
- 0:-50.36310718071594
- 1:66.0714902185066
81: [-50.36443615448787, 66.0714946576686]
- 0:-50.36443615448787
- 1:66.0714946576686
82: [-50.36444052512768, 66.07122710039633]
- 0:-50.36444052512768
- 1:66.07122710039633
83: [-50.36510490466124, 66.07122714187695]
- 0:-50.36510490466124
- 1:66.07122714187695
84: [-50.36509601648075, 66.07149913172644]
- 0:-50.36509601648075
- 1:66.07149913172644
85: [-50.3670847025051, 66.07150807838816]
- 0:-50.3670847025051
- 1:66.07150807838816
86: [-50.36707592399509, 66.07177559302747]
- 0:-50.36707592399509
- 1:66.07177559302747
87: [-50.372382173354936, 66.07179792820368]
- 0:-50.372382173354936
- 1:66.07179792820368
88: [-50.37239559824775, 66.0712583654968]
- 0:-50.37239559824775
- 1:66.0712583654968
106: List (145 elements)
0: [-50.21504731231239, 66.12221695457369]
- 0:-50.21504731231239
- 1:66.12221695457369
1: [-50.2143828467127, 66.12221693623255]
- 0:-50.2143828467127
- 1:66.12221693623255
2: [-50.214400765190206, 66.12167741631859]
- 0:-50.214400765190206
- 1:66.12167741631859
3: [-50.21307194164104, 66.12166848155215]
- 0:-50.21307194164104
- 1:66.12166848155215
4: [-50.2130807722035, 66.12140093450972]
- 0:-50.2130807722035
- 1:66.12140093450972
5: [-50.21241629315016, 66.12139649440384]
- 0:-50.21241629315016
- 1:66.12139649440384
6: [-50.212425444194636, 66.12112893453202]
- 0:-50.212425444194636
- 1:66.12112893453202
7: [-50.21109649772409, 66.12112004389736]
- 0:-50.21109649772409
- 1:66.12112004389736
8: [-50.211109923044454, 66.12058495476573]
- 0:-50.211109923044454
- 1:66.12058495476573
9: [-50.210450049952954, 66.12058048811237]
- 0:-50.210450049952954
- 1:66.12058048811237
10: [-50.210463289048604, 66.12004093709972]
- 0:-50.210463289048604
- 1:66.12004093709972
11: [-50.20979884051494, 66.12003648327484]
- 0:-50.20979884051494
- 1:66.12003648327484
12: [-50.20980784883459, 66.11976887339833]
- 0:-50.20980784883459
- 1:66.11976887339833
13: [-50.21113658655762, 66.11977784231696]
- 0:-50.21113658655762
- 1:66.11977784231696
14: [-50.21112773720342, 66.1200453873916]
- 0:-50.21112773720342
- 1:66.1200453873916
15: [-50.21179218497914, 66.1200498341505]
- 0:-50.21179218497914
- 1:66.1200498341505
16: [-50.211818828817584, 66.11924272316757]
- 0:-50.211818828817584
- 1:66.11924272316757
17: [-50.211154400306434, 66.11923827666978]
- 0:-50.211154400306434
- 1:66.11923827666978
18: [-50.211163364699374, 66.11896625610682]
- 0:-50.211163364699374
- 1:66.11896625610682
19: [-50.21049914109211, 66.11896626931261]
- 0:-50.21049914109211
- 1:66.11896626931261
20: [-50.21050779776895, 66.11869426232109]
- 0:-50.21050779776895
- 1:66.11869426232109
21: [-50.21117238173318, 66.11869876395723]
- 0:-50.21117238173318
- 1:66.11869876395723
22: [-50.21119019493076, 66.11815920061929]
- 0:-50.21119019493076
- 1:66.11815920061929
23: [-50.2105258226311, 66.11815916229199]
- 0:-50.2105258226311
- 1:66.11815916229199
24: [-50.21053020573925, 66.11788715916877]
- 0:-50.21053020573925
- 1:66.11788715916877
25: [-50.205883773211475, 66.11786484953792]
- 0:-50.205883773211475
- 1:66.11786484953792
26: [-50.20587487325408, 66.11813239192647]
- 0:-50.20587487325408
- 1:66.11813239192647
27: [-50.20454611176256, 66.1181279606108]
- 0:-50.20454611176256
- 1:66.1181279606108
28: [-50.20453719896677, 66.11839550311427]
- 0:-50.20453719896677
- 1:66.11839550311427
29: [-50.20254844971804, 66.11838661440075]
- 0:-50.20254844971804
- 1:66.11838661440075
30: [-50.202539517740625, 66.11865415693256]
- 0:-50.202539517740625
- 1:66.11865415693256
31: [-50.20121072598007, 66.11864968999387]
- 0:-50.20121072598007
- 1:66.11864968999387
32: [-50.20120178116302, 66.11891723264023]
- 0:-50.20120178116302
- 1:66.11891723264023
33: [-50.197884148795026, 66.11889937685375]
- 0:-50.197884148795026
- 1:66.11889937685375
34: [-50.197875339957, 66.11916697115142]
- 0:-50.197875339957
- 1:66.11916697115142
35: [-50.19654651621791, 66.11916245445715]
- 0:-50.19654651621791
- 1:66.11916245445715
36: [-50.196555359535544, 66.11889497708644]
- 0:-50.196555359535544
- 1:66.11889497708644
37: [-50.19589092821171, 66.11889044946531]
- 0:-50.19589092821171
- 1:66.11889044946531
38: [-50.195899895542226, 66.11861849615407]
- 0:-50.195899895542226
- 1:66.11861849615407
39: [-50.19390669040402, 66.11860953722578]
- 0:-50.19390669040402
- 1:66.11860953722578
40: [-50.19391570534495, 66.11834199581294]
- 0:-50.19391570534495
- 1:66.11834199581294
41: [-50.19325113906598, 66.11833751919032]
- 0:-50.19325113906598
- 1:66.11833751919032
42: [-50.1932601603223, 66.11806997814885]
- 0:-50.1932601603223
- 1:66.11806997814885
43: [-50.19060244842319, 66.11805660342431]
- 0:-50.19060244842319
- 1:66.11805660342431
44: [-50.19061146746573, 66.11778465167761]
- 0:-50.19061146746573
- 1:66.11778465167761
45: [-50.18530068431212, 66.11775783481407]
- 0:-50.18530068431212
- 1:66.11775783481407
46: [-50.18529175445533, 66.11802542634467]
- 0:-50.18529175445533
- 1:66.11802542634467
47: [-50.18396284031202, 66.11802095781768]
- 0:-50.18396284031202
- 1:66.11802095781768
48: [-50.18395404386355, 66.11828848451896]
- 0:-50.18395404386355
- 1:66.11828848451896
49: [-50.182625115024614, 66.11828400168795]
- 0:-50.182625115024614
- 1:66.11828400168795
50: [-50.18261179171072, 66.1188191703267]
- 0:-50.18261179171072
- 1:66.1188191703267
51: [-50.18194737376994, 66.11881468532059]
- 0:-50.18194737376994
- 1:66.11881468532059
52: [-50.1819384380658, 66.11908668891407]
- 0:-50.1819384380658
- 1:66.11908668891407
53: [-50.18060975598371, 66.11907775994872]
- 0:-50.18060975598371
- 1:66.11907775994872
54: [-50.1806008072284, 66.11934976366052]
- 0:-50.1806008072284
- 1:66.11934976366052
55: [-50.179936375182024, 66.11934526788116]
- 0:-50.179936375182024
- 1:66.11934526788116
56: [-50.17992739385951, 66.11961286043912]
- 0:-50.17992739385951
- 1:66.11961286043912
57: [-50.17859868377814, 66.11960390993066]
- 0:-50.17859868377814
- 1:66.11960390993066
58: [-50.17858072117269, 66.1201435069178]
- 0:-50.17858072117269
- 1:66.1201435069178
59: [-50.17791626874057, 66.12013900027799]
- 0:-50.17791626874057
- 1:66.12013900027799
60: [-50.17791188187041, 66.12041098981133]
- 0:-50.17791188187041
- 1:66.12041098981133
61: [-50.178571752662606, 66.12041551153084]
- 0:-50.178571752662606
- 1:66.12041551153084
62: [-50.178562904561964, 66.12068304012122]
- 0:-50.178562904561964
- 1:66.12068304012122
63: [-50.17790288114965, 66.12067858325345]
- 0:-50.17790288114965
- 1:66.12067858325345
64: [-50.17789402663769, 66.12094611204176]
- 0:-50.17789402663769
- 1:66.12094611204176
65: [-50.176565297151, 66.12094166765857]
- 0:-50.176565297151
- 1:66.12094166765857
66: [-50.17655642980123, 66.12120919656253]
- 0:-50.17655642980123
- 1:66.12120919656253
67: [-50.17722074082282, 66.12121365876608]
- 0:-50.17722074082282
- 1:66.12121365876608
68: [-50.17721187978878, 66.12148118804032]
- 0:-50.17721187978878
- 1:66.12148118804032
69: [-50.17854068139275, 66.12149015385006]
- 0:-50.17854068139275
- 1:66.12149015385006
70: [-50.178531665143566, 66.12175763175668]
- 0:-50.178531665143566
- 1:66.12175763175668
71: [-50.18118482112131, 66.12177106010728]
- 0:-50.18118482112131
- 1:66.12177106010728
72: [-50.181175878161554, 66.12204306680705]
- 0:-50.181175878161554
- 1:66.12204306680705
73: [-50.18250482066361, 66.12204751427616]
- 0:-50.18250482066361
- 1:66.12204751427616
74: [-50.18251363079576, 66.12177998374887]
- 0:-50.18251363079576
- 1:66.12177998374887
75: [-50.18583570541859, 66.12179784554134]
- 0:-50.18583570541859
- 1:66.12179784554134
76: [-50.185826759283096, 66.12206532468005]
- 0:-50.185826759283096
- 1:66.12206532468005
77: [-50.18781992188152, 66.12207872177743]
- 0:-50.18781992188152
- 1:66.12207872177743
78: [-50.18782896785199, 66.12180676602489]
- 0:-50.18782896785199
- 1:66.12180676602489
79: [-50.18716450962138, 66.12180671972767]
- 0:-50.18716450962138
- 1:66.12180671972767
80: [-50.1871733940818, 66.12153471253902]
- 0:-50.1871733940818
- 1:66.12153471253902
81: [-50.185844629819165, 66.12153024992448]
- 0:-50.185844629819165
- 1:66.12153024992448
82: [-50.18587139731336, 66.1207231701556]
- 0:-50.18587139731336
- 1:66.1207231701556
83: [-50.186535662932116, 66.12072317137685]
- 0:-50.186535662932116
- 1:66.12072317137685
84: [-50.18652677218513, 66.12099517760772]
- 0:-50.18652677218513
- 1:66.12099517760772
85: [-50.18718676972309, 66.12099517757531]
- 0:-50.18718676972309
- 1:66.12099517757531
86: [-50.187200123052335, 66.12072763226224]
- 0:-50.187200123052335
- 1:66.12072763226224
87: [-50.187860140931605, 66.12073204002228]
- 0:-50.187860140931605
- 1:66.12073204002228
88: [-50.18785123585691, 66.12099963503799]
- 0:-50.18785123585691
- 1:66.12099963503799
89: [-50.188515701614605, 66.12100408896754]
- 0:-50.188515701614605
- 1:66.12100408896754
90: [-50.188524454049784, 66.12073655881531]
- 0:-50.188524454049784
- 1:66.12073655881531
91: [-50.19051780221683, 66.12074548776108]
- 0:-50.19051780221683
- 1:66.12074548776108
92: [-50.1905087547576, 66.12101303131085]
- 0:-50.1905087547576
- 1:66.12101303131085
93: [-50.18984431781927, 66.12101299937012]
- 0:-50.18984431781927
- 1:66.12101299937012
94: [-50.189835578086644, 66.12128052997801]
- 0:-50.189835578086644
- 1:66.12128052997801
95: [-50.189171106695454, 66.12127608302711]
- 0:-50.189171106695454
- 1:66.12127608302711
96: [-50.18915776958296, 66.12181561901522]
- 0:-50.18915776958296
- 1:66.12181561901522
97: [-50.190482121767374, 66.12182011373191]
- 0:-50.190482121767374
- 1:66.12182011373191
98: [-50.190491001501535, 66.12155251751778]
- 0:-50.190491001501535
- 1:66.12155251751778
99: [-50.19115533227571, 66.12155702244345]
- 0:-50.19115533227571
- 1:66.12155702244345
100: [-50.19116434569415, 66.12128506683752]
- 0:-50.19116434569415
- 1:66.12128506683752
101: [-50.192493117692145, 66.12129388420234]
- 0:-50.192493117692145
- 1:66.12129388420234
102: [-50.192484257187814, 66.12156148038774]
- 0:-50.192484257187814
- 1:66.12156148038774
103: [-50.193148732975445, 66.12156590976066]
- 0:-50.193148732975445
- 1:66.12156590976066
104: [-50.1931395927154, 66.12183793087485]
- 0:-50.1931395927154
- 1:66.12183793087485
105: [-50.19446852782064, 66.12184236779032]
- 0:-50.19446852782064
- 1:66.12184236779032
106: [-50.194459686340764, 66.12210996480296]
- 0:-50.194459686340764
- 1:66.12210996480296
107: [-50.19512402752735, 66.12211444870935]
- 0:-50.19512402752735
- 1:66.12211444870935
108: [-50.19511505284716, 66.12238640570816]
- 0:-50.19511505284716
- 1:66.12238640570816
109: [-50.197772703424526, 66.1223997650254]
- 0:-50.197772703424526
- 1:66.1223997650254
110: [-50.19778165213932, 66.12212780768034]
- 0:-50.19778165213932
- 1:66.12212780768034
111: [-50.19910588811706, 66.1221366874473]
- 0:-50.19910588811706
- 1:66.1221366874473
112: [-50.19911485288284, 66.1218691416322]
- 0:-50.19911485288284
- 1:66.1218691416322
113: [-50.19977930201037, 66.12186912437586]
- 0:-50.19977930201037
- 1:66.12186912437586
114: [-50.19978826031985, 66.12160157876212]
- 0:-50.19978826031985
- 1:66.12160157876212
115: [-50.20045258551182, 66.12160603426172]
- 0:-50.20045258551182
- 1:66.12160603426172
116: [-50.2004438015415, 66.12187363175765]
- 0:-50.2004438015415
- 1:66.12187363175765
117: [-50.20110813274255, 66.12187808381194]
- 0:-50.20110813274255
- 1:66.12187808381194
118: [-50.2010991871357, 66.12214562988366]
- 0:-50.2010991871357
- 1:66.12214562988366
119: [-50.20176352434459, 66.12215007849342]
- 0:-50.20176352434459
- 1:66.12215007849342
120: [-50.201754585053656, 66.12241762493589]
- 0:-50.201754585053656
- 1:66.12241762493589
121: [-50.20308343907025, 66.12242656352643]
- 0:-50.20308343907025
- 1:66.12242656352643
122: [-50.20309236558828, 66.1221590169099]
- 0:-50.20309236558828
- 1:66.1221590169099
123: [-50.20375681808998, 66.12215897853586]
- 0:-50.20375681808998
- 1:66.12215897853586
124: [-50.20376573815237, 66.12189143212088]
- 0:-50.20376573815237
- 1:66.12189143212088
125: [-50.20310140856911, 66.12188699419488]
- 0:-50.20310140856911
- 1:66.12188699419488
126: [-50.20311906361401, 66.1213474391936]
- 0:-50.20311906361401
- 1:66.1213474391936
127: [-50.20245477611201, 66.12134740931413]
- 0:-50.20245477611201
- 1:66.12134740931413
128: [-50.202481544202534, 66.12054036260577]
- 0:-50.202481544202534
- 1:66.12054036260577
129: [-50.2038058360749, 66.12054483249432]
- 0:-50.2038058360749
- 1:66.12054483249432
130: [-50.20379694610587, 66.1208167888765]
- 0:-50.20379694610587
- 1:66.1208167888765
131: [-50.204461219770344, 66.12081681154999]
- 0:-50.204461219770344
- 1:66.12081681154999
132: [-50.2044567780757, 66.12108881731083]
- 0:-50.2044567780757
- 1:66.12108881731083
133: [-50.20578126078587, 66.121093318201]
- 0:-50.20578126078587
- 1:66.121093318201
134: [-50.20575886248236, 66.12190036508143]
- 0:-50.20575886248236
- 1:66.12190036508143
135: [-50.20974087753129, 66.12192266677226]
- 0:-50.20974087753129
- 1:66.12192266677226
136: [-50.20973201490135, 66.1221902139586]
- 0:-50.20973201490135
- 1:66.1221902139586
137: [-50.21106070023191, 66.12219913261877]
- 0:-50.21106070023191
- 1:66.12219913261877
138: [-50.21104758860459, 66.12273421198215]
- 0:-50.21104758860459
- 1:66.12273421198215
139: [-50.21237170967125, 66.12274313306942]
- 0:-50.21237170967125
- 1:66.12274313306942
140: [-50.21238071487048, 66.12247563674849]
- 0:-50.21238071487048
- 1:66.12247563674849
141: [-50.21304516663982, 66.12247554901406]
- 0:-50.21304516663982
- 1:66.12247554901406
142: [-50.21303622087288, 66.12274757361145]
- 0:-50.21303622087288
- 1:66.12274757361145
143: [-50.21502940643634, 66.12275647580688]
- 0:-50.21502940643634
- 1:66.12275647580688
144: [-50.21504731231239, 66.12221695457369]
- 0:-50.21504731231239
- 1:66.12221695457369
properties: Object (7 properties)
- area_km2:2243.480807755364
- cenlat:65.9947675
- cenlon:-51.078755016115394
- o1region:05
- o2region:05-01
- rgi_id:RGI2000-v7.0-C-05-09193
- utm_zone:22
# Add to map
Map = geemap.Map()
visParams = {'bands': ['SR_B4', 'SR_B3', 'SR_B2']}
Map.addLayer(image, visParams, 'True Colour')
Map.addLayer(outline, {'color': 'red'})
Map.centerObject(outline, 11)
Map
Intersect raster with polygon#
We can now refine our analysis by only counting pixels within the outline of the ice cap.
# Define size of Landsat pixel
scale = 30
pixel_area_m2 = scale * scale
start = time.time()
pixel_count = ndsi_threshold.reduceRegion(reducer=ee.Reducer.count(), geometry=outline,
scale=scale, maxPixels=1e9)
end = time.time()
print(f"Execution time: {end - start:.4f} seconds")
Execution time: 0.0003 seconds
start = time.time()
# Extract and print the result
number = pixel_count.getInfo()
# Convert to km2
total_area_km2 = number['NDSI'] * pixel_area_m2 / 1000000
print(f'Total area of ice cap: {total_area_km2} km2')
end = time.time()
print(f"Execution time: {end - start:.4f} seconds")
Total area of ice cap: 181.7676 km2
Execution time: 0.2850 seconds
Deferred execution#
We might be wondering why the first task (i.e. counting all the pixels within the polygon) was executed almost instantly. But the second task (i.e. simply returning the pixel_count value using getInfo) took orders of magnitude longer. The reason is because Earth Engine uses a parallel processing system to carry out computation across a large number of machines. To enable such processing, Earth Engine takes advantage of lazy evaluation (also known as deferred execution).
When we write Python code using Earth Engine functions, we are not performing immediate computations on our local machines. Instead, we are building a computation graph which is a set of instructions that describe the operations we want to perform on data stored on Google’s servers.
The execution of the code only occurs when we use specific methods that require the server to respond to our local Python environment. Common trigger methods include:
getInfo(): Returns the result to the clientexport(): Returns a file to Google Drive or Cloud StorageaddLayer(): Returns data tiles for visualization
Important
The general advice with Earth Engine is to use trigger methods as few times as possible. If we do use the, we should be precise with what we want to return.
Scaling up#
If we wanted to track the area of the ice cap through time, we might be tempted to iterate over every image in our ImageCollectionusing a for loop. Don’t do that! It would involve calling .getInfo for each image add would be very slow.
Instead, we should define a function, and apply it to every image in the collection remotely using the map() function.
Here’s an example of generate an ImageCollection containing the least cloudy image between Jul 1 and Aug 31 for each year between 2015 and 2025.
# Define the years of interest
start_year = 2015
end_year = 2025
years = ee.List.sequence(start_year, end_year)
def get_least_cloudy_annual_image(year):
# Convert year number to date objects for filtering
start = ee.Date.fromYMD(year, 7, 31)
end = ee.Date.fromYMD(year, 8, 31)
# Load the Landsat 8 Collection 2 Tier 1 TOA image collection
collection = (
ee.ImageCollection('LANDSAT/LC08/C02/T1_L2')
.filterBounds(region)
.filterDate(start, end)
.sort('CLOUD_COVER')
)
# Get the first image from the sorted collection
least_cloudy = ee.Image(collection.first())
return least_cloudy
# Map the function over the list of years to produce ImageCollection
image_collection = ee.ImageCollection(years.map(get_least_cloudy_annual_image))
image_collection
ImageCollection (11 elements)
- type:ImageCollection
bands: []
features: List (11 elements)
0: Image LANDSAT/LC08/C02/T1_L2/LC08_006014_20150802 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_006014_20150802
- version:1629845071900339
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
1: "SR_B2", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
2: "SR_B3", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
3: "SR_B4", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
4: "SR_B5", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
5: "SR_B6", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
6: "SR_B7", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8271x8341 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
8: "ST_B10", unsigned int16, EPSG:32622, 8271x8341 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
9: "ST_ATRAN", signed int16, EPSG:32622, 8271x8341 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
10: "ST_CDIST", signed int16, EPSG:32622, 8271x8341 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
11: "ST_DRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
12: "ST_EMIS", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
13: "ST_EMSD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
14: "ST_QA", signed int16, EPSG:32622, 8271x8341 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
15: "ST_TRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
16: "ST_URAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 456585, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456585
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.5.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.3.0
- CLOUD_COVER:0.64
- CLOUD_COVER_LAND:0.64
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2015-08-02
- DATE_PRODUCT_GENERATED:1602796328000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0148216
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:1.762
- GEOMETRIC_RMSE_MODEL_X:1.268
- GEOMETRIC_RMSE_MODEL_Y:1.223
- GEOMETRIC_RMSE_VERIFY:1.425
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1421
- GROUND_CONTROL_POINTS_VERIFY:225
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2020-10-15T20:46:58Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_006014_20150802_20201015_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- L1_REQUEST_ID:L2
- LANDSAT_PRODUCT_ID:LC08_L2SP_006014_20150802_20201015_02_T1
- LANDSAT_SCENE_ID:LC80060142015214LGN01
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8341
- REFLECTIVE_SAMPLES:8271
- REQUEST_ID:L2
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:42:53.0819520Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:167.08583754
- SUN_ELEVATION:41.67947415
- TARGET_WRS_PATH:6
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8341
- THERMAL_SAMPLES:8271
- TIRS_SSM_MODEL:ACTUAL
- TIRS_SSM_POSITION_STATUS:NOMINAL
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:6
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:835428369
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-48.38592041340607, 64.48705538677919]
- 0:-48.38592041340607
- 1:64.48705538677919
1: [-48.22223740125094, 64.4574888237847]
- 0:-48.22223740125094
- 1:64.4574888237847
2: [-48.15923116870458, 64.52234976418417]
- 0:-48.15923116870458
- 1:64.52234976418417
3: [-47.998583839770674, 64.68633047295192]
- 0:-47.998583839770674
- 1:64.68633047295192
4: [-47.572731162002455, 65.11138210878197]
- 0:-47.572731162002455
- 1:65.11138210878197
5: [-47.483096921049096, 65.19904914916057]
- 0:-47.483096921049096
- 1:65.19904914916057
6: [-47.35345856910966, 65.32479049144625]
- 0:-47.35345856910966
- 1:65.32479049144625
7: [-47.263829241246384, 65.41100497431583]
- 0:-47.263829241246384
- 1:65.41100497431583
8: [-47.16053409353097, 65.50970263667094]
- 0:-47.16053409353097
- 1:65.50970263667094
9: [-47.076648053827846, 65.58930347352276]
- 0:-47.076648053827846
- 1:65.58930347352276
10: [-46.92914904965386, 65.72804365276664]
- 0:-46.92914904965386
- 1:65.72804365276664
11: [-46.79400012393057, 65.8538012254459]
- 0:-46.79400012393057
- 1:65.8538012254459
12: [-46.64963904812172, 65.98675766661287]
- 0:-46.64963904812172
- 1:65.98675766661287
13: [-46.55581327535515, 66.07245884171972]
- 0:-46.55581327535515
- 1:66.07245884171972
14: [-46.58387371775332, 66.07753907964516]
- 0:-46.58387371775332
- 1:66.07753907964516
15: [-46.90939589252815, 66.13578080017501]
- 0:-46.90939589252815
- 1:66.13578080017501
16: [-49.827273057179475, 66.6166415447587]
- 0:-49.827273057179475
- 1:66.6166415447587
17: [-50.44154419704585, 66.70875411576543]
- 0:-50.44154419704585
- 1:66.70875411576543
18: [-51.85011797433139, 65.1230353547181]
- 0:-51.85011797433139
- 1:65.1230353547181
19: [-51.898676353934135, 65.06442449145082]
- 0:-51.898676353934135
- 1:65.06442449145082
20: [-48.38592041340607, 64.48705538677919]
- 0:-48.38592041340607
- 1:64.48705538677919
- system:index:LC08_006014_20150802
- system:time_end:1438526573081
- system:time_start:1438526573081
1: Image LANDSAT/LC08/C02/T1_L2/LC08_006014_20160820 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_006014_20160820
- version:1629845077078417
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
1: "SR_B2", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
2: "SR_B3", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
3: "SR_B4", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
4: "SR_B5", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
5: "SR_B6", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
6: "SR_B7", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8281x8341 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
8: "ST_B10", unsigned int16, EPSG:32622, 8281x8341 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
9: "ST_ATRAN", signed int16, EPSG:32622, 8281x8341 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
10: "ST_CDIST", signed int16, EPSG:32622, 8281x8341 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
11: "ST_DRAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
12: "ST_EMIS", signed int16, EPSG:32622, 8281x8341 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
13: "ST_EMSD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
14: "ST_QA", signed int16, EPSG:32622, 8281x8341 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
15: "ST_TRAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
16: "ST_URAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8281x8341 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8281x8341 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 455985, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455985
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.5.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.3.0
- CLOUD_COVER:0.67
- CLOUD_COVER_LAND:0.65
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2016-08-20
- DATE_PRODUCT_GENERATED:1599378257000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0116778
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:2.701
- GEOMETRIC_RMSE_MODEL_X:1.927
- GEOMETRIC_RMSE_MODEL_Y:1.893
- GEOMETRIC_RMSE_VERIFY:1.693
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1401
- GROUND_CONTROL_POINTS_VERIFY:216
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2020-09-06T07:17:56Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_006014_20160820_20200906_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- L1_REQUEST_ID:L2
- LANDSAT_PRODUCT_ID:LC08_L2SP_006014_20160820_20200906_02_T1
- LANDSAT_SCENE_ID:LC80060142016233LGN01
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8341
- REFLECTIVE_SAMPLES:8281
- REQUEST_ID:L2
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:43:22.3891890Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:168.80440095
- SUN_ELEVATION:36.20679314
- TARGET_WRS_PATH:6
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8341
- THERMAL_SAMPLES:8281
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:6
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:856842119
system:footprint: LinearRing (22 vertices)
- type:LinearRing
coordinates: List (22 elements)
0: [-46.6542587669957, 65.9790680924008]
- 0:-46.6542587669957
- 1:65.9790680924008
1: [-46.594525992577125, 66.03373037650853]
- 0:-46.594525992577125
- 1:66.03373037650853
2: [-46.55432752059211, 66.07042791218932]
- 0:-46.55432752059211
- 1:66.07042791218932
3: [-46.59293310889192, 66.07741651672484]
- 0:-46.59293310889192
- 1:66.07741651672484
4: [-47.28467558253009, 66.19997606370266]
- 0:-47.28467558253009
- 1:66.19997606370266
5: [-49.30511844650804, 66.5340738386338]
- 0:-49.30511844650804
- 1:66.5340738386338
6: [-50.43881845468298, 66.70649647888175]
- 0:-50.43881845468298
- 1:66.70649647888175
7: [-50.440024178109475, 66.70629106079753]
- 0:-50.440024178109475
- 1:66.70629106079753
8: [-50.49546291938387, 66.64776768650832]
- 0:-50.49546291938387
- 1:66.64776768650832
9: [-51.8487455217406, 65.12008193923367]
- 0:-51.8487455217406
- 1:65.12008193923367
10: [-51.89665871963497, 65.06226074377193]
- 0:-51.89665871963497
- 1:65.06226074377193
11: [-48.22027699051838, 64.45536762649505]
- 0:-48.22027699051838
- 1:64.45536762649505
12: [-47.99593452661534, 64.684988258601]
- 0:-47.99593452661534
- 1:64.684988258601
13: [-47.75147101808613, 64.93078512692793]
- 0:-47.75147101808613
- 1:64.93078512692793
14: [-47.56964674721543, 65.11050295757198]
- 0:-47.56964674721543
- 1:65.11050295757198
15: [-47.477053283241396, 65.20106350416334]
- 0:-47.477053283241396
- 1:65.20106350416334
16: [-47.34788742288224, 65.32636722947035]
- 0:-47.34788742288224
- 1:65.32636722947035
17: [-47.27343725123515, 65.39803478032522]
- 0:-47.27343725123515
- 1:65.39803478032522
18: [-47.15005288842316, 65.5159739211485]
- 0:-47.15005288842316
- 1:65.5159739211485
19: [-46.970121974239845, 65.68602261537825]
- 0:-46.970121974239845
- 1:65.68602261537825
20: [-46.79002327171668, 65.85396156556821]
- 0:-46.79002327171668
- 1:65.85396156556821
21: [-46.6542587669957, 65.9790680924008]
- 0:-46.6542587669957
- 1:65.9790680924008
- system:index:LC08_006014_20160820
- system:time_end:1471704202389
- system:time_start:1471704202389
2: Image LANDSAT/LC08/C02/T1_L2/LC08_007013_20170814 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_007013_20170814
- version:1629847886583088
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
1: "SR_B2", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
2: "SR_B3", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
3: "SR_B4", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
4: "SR_B5", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
5: "SR_B6", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
6: "SR_B7", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8351x8411 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
8: "ST_B10", unsigned int16, EPSG:32622, 8351x8411 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
9: "ST_ATRAN", signed int16, EPSG:32622, 8351x8411 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
10: "ST_CDIST", signed int16, EPSG:32622, 8351x8411 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
11: "ST_DRAD", signed int16, EPSG:32622, 8351x8411 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
12: "ST_EMIS", signed int16, EPSG:32622, 8351x8411 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
13: "ST_EMSD", signed int16, EPSG:32622, 8351x8411 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
14: "ST_QA", signed int16, EPSG:32622, 8351x8411 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
15: "ST_TRAD", signed int16, EPSG:32622, 8351x8411 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
16: "ST_URAD", signed int16, EPSG:32622, 8351x8411 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8351x8411 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8351x8411 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 442485, 0, -30, 7551015]
- 0:30
- 1:0
- 2:442485
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.5.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.3.0
- CLOUD_COVER:1.17
- CLOUD_COVER_LAND:1.18
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2017-08-14
- DATE_PRODUCT_GENERATED:1599118841000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.012887
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:2.212
- GEOMETRIC_RMSE_MODEL_X:1.769
- GEOMETRIC_RMSE_MODEL_Y:1.328
- GEOMETRIC_RMSE_VERIFY:1.791
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1306
- GROUND_CONTROL_POINTS_VERIFY:322
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2020-09-03T07:27:09Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_007013_20170814_20200903_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- L1_REQUEST_ID:L2
- LANDSAT_PRODUCT_ID:LC08_L2SP_007013_20170814_20200903_02_T1
- LANDSAT_SCENE_ID:LC80070132017226LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8411
- REFLECTIVE_SAMPLES:8351
- REQUEST_ID:L2
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:49:05.4485589Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:169.88647294
- SUN_ELEVATION:36.9447138
- TARGET_WRS_PATH:7
- TARGET_WRS_ROW:13
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8411
- THERMAL_SAMPLES:8351
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:7
- WRS_ROW:13
- WRS_TYPE:2
- system:asset_size:892030754
system:footprint: LinearRing (20 vertices)
- type:LinearRing
coordinates: List (20 elements)
0: [-48.404075358853405, 65.7994219617527]
- 0:-48.404075358853405
- 1:65.7994219617527
1: [-48.35946206346606, 65.84082920939193]
- 0:-48.35946206346606
- 1:65.84082920939193
2: [-48.2955177258149, 65.89998433919119]
- 0:-48.2955177258149
- 1:65.89998433919119
3: [-48.088741458837056, 66.08948242821985]
- 0:-48.088741458837056
- 1:66.08948242821985
4: [-47.98690140877473, 66.1817427561058]
- 0:-47.98690140877473
- 1:66.1817427561058
5: [-47.82454613017905, 66.32748565328144]
- 0:-47.82454613017905
- 1:66.32748565328144
6: [-47.51749084688755, 66.59819582940992]
- 0:-47.51749084688755
- 1:66.59819582940992
7: [-47.319536147125106, 66.76945428921206]
- 0:-47.319536147125106
- 1:66.76945428921206
8: [-47.112180152956284, 66.94638018651162]
- 0:-47.112180152956284
- 1:66.94638018651162
9: [-46.937185197579076, 67.0937499041329]
- 0:-46.937185197579076
- 1:67.0937499041329
10: [-46.73307156411381, 67.26319491553525]
- 0:-46.73307156411381
- 1:67.26319491553525
11: [-46.61928349354857, 67.35656889723813]
- 0:-46.61928349354857
- 1:67.35656889723813
12: [-46.566625158518455, 67.39954772581424]
- 0:-46.566625158518455
- 1:67.39954772581424
13: [-47.91062169330067, 67.63528353212477]
- 0:-47.91062169330067
- 1:67.63528353212477
14: [-50.64103225993164, 68.06717092983607]
- 0:-50.64103225993164
- 1:68.06717092983607
15: [-50.64791044046999, 68.0612640542032]
- 0:-50.64791044046999
- 1:68.0612640542032
16: [-50.66571693158621, 68.04506605657247]
- 0:-50.66571693158621
- 1:68.04506605657247
17: [-52.24230488808568, 66.44490403964335]
- 0:-52.24230488808568
- 1:66.44490403964335
18: [-52.25207982214784, 66.43365919259081]
- 0:-52.25207982214784
- 1:66.43365919259081
19: [-48.404075358853405, 65.7994219617527]
- 0:-48.404075358853405
- 1:65.7994219617527
- system:index:LC08_007013_20170814
- system:time_end:1502722145448
- system:time_start:1502722145448
3: Image LANDSAT/LC08/C02/T1_L2/LC08_006014_20180810 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_006014_20180810
- version:1629845086310917
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
1: "SR_B2", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
2: "SR_B3", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
3: "SR_B4", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
4: "SR_B5", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
5: "SR_B6", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
6: "SR_B7", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8271x8341 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
8: "ST_B10", unsigned int16, EPSG:32622, 8271x8341 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
9: "ST_ATRAN", signed int16, EPSG:32622, 8271x8341 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
10: "ST_CDIST", signed int16, EPSG:32622, 8271x8341 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
11: "ST_DRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
12: "ST_EMIS", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
13: "ST_EMSD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
14: "ST_QA", signed int16, EPSG:32622, 8271x8341 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
15: "ST_TRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
16: "ST_URAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 456885, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456885
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.5.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.3.0
- CLOUD_COVER:0.68
- CLOUD_COVER_LAND:0.66
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2018-08-10
- DATE_PRODUCT_GENERATED:1598838174000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0136724
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:2.158
- GEOMETRIC_RMSE_MODEL_X:1.539
- GEOMETRIC_RMSE_MODEL_Y:1.513
- GEOMETRIC_RMSE_VERIFY:1.872
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1398
- GROUND_CONTROL_POINTS_VERIFY:277
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2020-08-31T01:30:19Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_006014_20180810_20200831_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- L1_REQUEST_ID:L2
- LANDSAT_PRODUCT_ID:LC08_L2SP_006014_20180810_20200831_02_T1
- LANDSAT_SCENE_ID:LC80060142018222LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8341
- REFLECTIVE_SAMPLES:8271
- REQUEST_ID:L2
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:42:39.2468550Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:167.59256698
- SUN_ELEVATION:39.42519315
- TARGET_WRS_PATH:6
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8341
- THERMAL_SAMPLES:8271
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:6
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:846805409
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-49.047426826865085, 66.49580338640334]
- 0:-49.047426826865085
- 1:66.49580338640334
1: [-50.42137516890044, 66.7063610847956]
- 0:-50.42137516890044
- 1:66.7063610847956
2: [-50.42407356883724, 66.70637104505647]
- 0:-50.42407356883724
- 1:66.70637104505647
3: [-50.48401128187047, 66.64396324142953]
- 0:-50.48401128187047
- 1:66.64396324142953
4: [-51.88259593230221, 65.06257495634367]
- 0:-51.88259593230221
- 1:65.06257495634367
5: [-48.966106850189284, 64.59047945786172]
- 0:-48.966106850189284
- 1:64.59047945786172
6: [-48.20667670207088, 64.45522075017097]
- 0:-48.20667670207088
- 1:64.45522075017097
7: [-48.14665532010795, 64.51698775679696]
- 0:-48.14665532010795
- 1:64.51698775679696
8: [-47.94681180013912, 64.72059809463049]
- 0:-47.94681180013912
- 1:64.72059809463049
9: [-47.63070481535475, 65.03632754716875]
- 0:-47.63070481535475
- 1:65.03632754716875
10: [-47.47583179156975, 65.18816867503665]
- 0:-47.47583179156975
- 1:65.18816867503665
11: [-47.331766397965715, 65.32786940936545]
- 0:-47.331766397965715
- 1:65.32786940936545
12: [-47.21629897500111, 65.43875342101269]
- 0:-47.21629897500111
- 1:65.43875342101269
13: [-47.114589035874836, 65.5356719234229]
- 0:-47.114589035874836
- 1:65.5356719234229
14: [-46.88915412091926, 65.74784843892702]
- 0:-46.88915412091926
- 1:65.74784843892702
15: [-46.79039003114996, 65.83968085081692]
- 0:-46.79039003114996
- 1:65.83968085081692
16: [-46.645296693292345, 65.97342091974228]
- 0:-46.645296693292345
- 1:65.97342091974228
17: [-46.53944245603657, 66.07009583646561]
- 0:-46.53944245603657
- 1:66.07009583646561
18: [-46.56522329174556, 66.07476730132588]
- 0:-46.56522329174556
- 1:66.07476730132588
19: [-47.58552008437997, 66.2543286623112]
- 0:-47.58552008437997
- 1:66.2543286623112
20: [-49.047426826865085, 66.49580338640334]
- 0:-49.047426826865085
- 1:66.49580338640334
- system:index:LC08_006014_20180810
- system:time_end:1533912159246
- system:time_start:1533912159246
4: Image LANDSAT/LC08/C02/T1_L2/LC08_006014_20190829 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_006014_20190829
- version:1629845091227609
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
1: "SR_B2", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
2: "SR_B3", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
3: "SR_B4", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
4: "SR_B5", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
5: "SR_B6", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
6: "SR_B7", unsigned int16, EPSG:32622, 8271x8341 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8271x8341 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
8: "ST_B10", unsigned int16, EPSG:32622, 8271x8341 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
9: "ST_ATRAN", signed int16, EPSG:32622, 8271x8341 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
10: "ST_CDIST", signed int16, EPSG:32622, 8271x8341 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
11: "ST_DRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
12: "ST_EMIS", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
13: "ST_EMSD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
14: "ST_QA", signed int16, EPSG:32622, 8271x8341 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
15: "ST_TRAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
16: "ST_URAD", signed int16, EPSG:32622, 8271x8341 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8271x8341 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 456285, 0, -30, 7399515]
- 0:30
- 1:0
- 2:456285
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8271, 8341]
- 0:8271
- 1:8341
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.5.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.3.0
- CLOUD_COVER:0.3
- CLOUD_COVER_LAND:0.3
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2019-08-29
- DATE_PRODUCT_GENERATED:1598480148000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0100036
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:3.078
- GEOMETRIC_RMSE_MODEL_X:2.277
- GEOMETRIC_RMSE_MODEL_Y:2.072
- GEOMETRIC_RMSE_VERIFY:1.855
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1402
- GROUND_CONTROL_POINTS_VERIFY:225
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2020-08-26T22:01:34Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_006014_20190829_20200826_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- L1_REQUEST_ID:L2
- LANDSAT_PRODUCT_ID:LC08_L2SP_006014_20190829_20200826_02_T1
- LANDSAT_SCENE_ID:LC80060142019241LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1c
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8341
- REFLECTIVE_SAMPLES:8271
- REQUEST_ID:L2
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:43:27.3515329Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:169.77588491
- SUN_ELEVATION:33.41047218
- TARGET_WRS_PATH:6
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8341
- THERMAL_SAMPLES:8271
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:6
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:846351577
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-50.4281516553954, 66.70556343751173]
- 0:-50.4281516553954
- 1:66.70556343751173
1: [-50.43768722111253, 66.70685996957954]
- 0:-50.43768722111253
- 1:66.70685996957954
2: [-50.496195952367145, 66.64507871020766]
- 0:-50.496195952367145
- 1:66.64507871020766
3: [-51.84745044126016, 65.11955086443476]
- 0:-51.84745044126016
- 1:65.11955086443476
4: [-51.894697223110605, 65.06253822537823]
- 0:-51.894697223110605
- 1:65.06253822537823
5: [-50.079760416683854, 64.77768953259366]
- 0:-50.079760416683854
- 1:64.77768953259366
6: [-48.21842516172164, 64.45563623087483]
- 0:-48.21842516172164
- 1:64.45563623087483
7: [-47.98730403928386, 64.6921906851422]
- 0:-47.98730403928386
- 1:64.6921906851422
8: [-47.75312871968307, 64.92758769374083]
- 0:-47.75312871968307
- 1:64.92758769374083
9: [-47.576757523266274, 65.10198655437449]
- 0:-47.576757523266274
- 1:65.10198655437449
10: [-47.47360372587024, 65.20286900008409]
- 0:-47.47360372587024
- 1:65.20286900008409
11: [-47.26676800902808, 65.4029476384896]
- 0:-47.26676800902808
- 1:65.4029476384896
12: [-47.134430885118284, 65.52932410337066]
- 0:-47.134430885118284
- 1:65.52932410337066
13: [-46.91924558496792, 65.73218836799651]
- 0:-46.91924558496792
- 1:65.73218836799651
14: [-46.8166839840022, 65.82772942022224]
- 0:-46.8166839840022
- 1:65.82772942022224
15: [-46.703089900068385, 65.93271233591534]
- 0:-46.703089900068385
- 1:65.93271233591534
16: [-46.55265168549217, 66.07042875527311]
- 0:-46.55265168549217
- 1:66.07042875527311
17: [-46.553170034881475, 66.07092595674439]
- 0:-46.553170034881475
- 1:66.07092595674439
18: [-46.85587747777307, 66.12518679791948]
- 0:-46.85587747777307
- 1:66.12518679791948
19: [-48.927103454549865, 66.47486911911967]
- 0:-48.927103454549865
- 1:66.47486911911967
20: [-50.4281516553954, 66.70556343751173]
- 0:-50.4281516553954
- 1:66.70556343751173
- system:index:LC08_006014_20190829
- system:time_end:1567089807351
- system:time_start:1567089807351
5: Image LANDSAT/LC08/C02/T1_L2/LC08_007013_20200822 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_007013_20200822
- version:1629847899443182
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
1: "SR_B2", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
2: "SR_B3", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
3: "SR_B4", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
4: "SR_B5", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
5: "SR_B6", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
6: "SR_B7", unsigned int16, EPSG:32622, 8361x8411 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8361x8411 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
8: "ST_B10", unsigned int16, EPSG:32622, 8361x8411 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
9: "ST_ATRAN", signed int16, EPSG:32622, 8361x8411 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
10: "ST_CDIST", signed int16, EPSG:32622, 8361x8411 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
11: "ST_DRAD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
12: "ST_EMIS", signed int16, EPSG:32622, 8361x8411 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
13: "ST_EMSD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
14: "ST_QA", signed int16, EPSG:32622, 8361x8411 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
15: "ST_TRAD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
16: "ST_URAD", signed int16, EPSG:32622, 8361x8411 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8361x8411 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8361x8411 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 443085, 0, -30, 7551015]
- 0:30
- 1:0
- 2:443085
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8361, 8411]
- 0:8361
- 1:8411
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.5.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.3.0
- CLOUD_COVER:0.9
- CLOUD_COVER_LAND:0.91
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2020-08-22
- DATE_PRODUCT_GENERATED:1599303257000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0113411
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:2.969
- GEOMETRIC_RMSE_MODEL_X:2.123
- GEOMETRIC_RMSE_MODEL_Y:2.075
- GEOMETRIC_RMSE_VERIFY:2.241
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1288
- GROUND_CONTROL_POINTS_VERIFY:342
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2020-09-05T10:23:53Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_007013_20200822_20200905_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1
- L1_REQUEST_ID:P700e8n69n0qq_00011
- LANDSAT_PRODUCT_ID:LC08_L2SP_007013_20200822_20200905_02_T1
- LANDSAT_SCENE_ID:LC80070132020235LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_15.3.1
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8411
- REFLECTIVE_SAMPLES:8361
- REQUEST_ID:P700e8n69n0qq_00011
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:49:07.4720000Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:170.69340302
- SUN_ELEVATION:34.2942481
- TARGET_WRS_PATH:7
- TARGET_WRS_ROW:13
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8411
- THERMAL_SAMPLES:8361
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:7
- WRS_ROW:13
- WRS_TYPE:2
- system:asset_size:882180004
system:footprint: LinearRing (20 vertices)
- type:LinearRing
coordinates: List (20 elements)
0: [-48.35315533293517, 65.82858331902798]
- 0:-48.35315533293517
- 1:65.82858331902798
1: [-48.3000969763663, 65.87774592819949]
- 0:-48.3000969763663
- 1:65.87774592819949
2: [-48.13310271410581, 66.03124802172975]
- 0:-48.13310271410581
- 1:66.03124802172975
3: [-48.03646999396535, 66.11918498399159]
- 0:-48.03646999396535
- 1:66.11918498399159
4: [-47.95926292792881, 66.18901520891501]
- 0:-47.95926292792881
- 1:66.18901520891501
5: [-47.805895118041725, 66.32656479413082]
- 0:-47.805895118041725
- 1:66.32656479413082
6: [-47.46535712299147, 66.62628181019836]
- 0:-47.46535712299147
- 1:66.62628181019836
7: [-47.29937453731329, 66.76972936867935]
- 0:-47.29937453731329
- 1:66.76972936867935
8: [-47.196312233776425, 66.85794467873377]
- 0:-47.196312233776425
- 1:66.85794467873377
9: [-47.06776602564888, 66.967099720192]
- 0:-47.06776602564888
- 1:66.967099720192
10: [-46.85732251929292, 67.14365842657169]
- 0:-46.85732251929292
- 1:67.14365842657169
11: [-46.54747119945464, 67.39865250514104]
- 0:-46.54747119945464
- 1:67.39865250514104
12: [-50.621646985476616, 68.06651908416184]
- 0:-50.621646985476616
- 1:68.06651908416184
13: [-50.64886385934243, 68.04171035416006]
- 0:-50.64886385934243
- 1:68.04171035416006
14: [-50.69074920187275, 68.00214624194916]
- 0:-50.69074920187275
- 1:68.00214624194916
15: [-52.215615828304465, 66.45257741995272]
- 0:-52.215615828304465
- 1:66.45257741995272
16: [-52.23107018657942, 66.43274198757646]
- 0:-52.23107018657942
- 1:66.43274198757646
17: [-51.41586522669497, 66.30884106225683]
- 0:-51.41586522669497
- 1:66.30884106225683
18: [-48.38546594237236, 65.79860291104757]
- 0:-48.38546594237236
- 1:65.79860291104757
19: [-48.35315533293517, 65.82858331902798]
- 0:-48.35315533293517
- 1:65.82858331902798
- system:index:LC08_007013_20200822
- system:time_end:1598107747472
- system:time_start:1598107747472
6: Image LANDSAT/LC08/C02/T1_L2/LC08_008013_20210731 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_008013_20210731
- version:1629850680905725
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
1: "SR_B2", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
2: "SR_B3", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
3: "SR_B4", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
4: "SR_B5", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
5: "SR_B6", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
6: "SR_B7", unsigned int16, EPSG:32622, 8451x8501 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8451x8501 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
8: "ST_B10", unsigned int16, EPSG:32622, 8451x8501 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
9: "ST_ATRAN", signed int16, EPSG:32622, 8451x8501 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
10: "ST_CDIST", signed int16, EPSG:32622, 8451x8501 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
11: "ST_DRAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
12: "ST_EMIS", signed int16, EPSG:32622, 8451x8501 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
13: "ST_EMSD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
14: "ST_QA", signed int16, EPSG:32622, 8451x8501 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
15: "ST_TRAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
16: "ST_URAD", signed int16, EPSG:32622, 8451x8501 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8451x8501 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8451x8501 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 374085, 0, -30, 7551615]
- 0:30
- 1:0
- 2:374085
- 3:0
- 4:-30
- 5:7551615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8451, 8501]
- 0:8451
- 1:8501
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.5.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.3.0
- CLOUD_COVER:1.54
- CLOUD_COVER_LAND:1.62
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2021-07-31
- DATE_PRODUCT_GENERATED:1628625817000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0150433
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:2.618
- GEOMETRIC_RMSE_MODEL_X:2.043
- GEOMETRIC_RMSE_MODEL_Y:1.636
- GEOMETRIC_RMSE_VERIFY:1.548
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1556
- GROUND_CONTROL_POINTS_VERIFY:388
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2021-08-10T19:39:49Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_008013_20210731_20210810_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_15.5.0
- L1_REQUEST_ID:P700xsstxxg8f_00012
- LANDSAT_PRODUCT_ID:LC08_L2SP_008013_20210731_20210810_02_T1
- LANDSAT_SCENE_ID:LC80080132021212LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_15.5.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8501
- REFLECTIVE_SAMPLES:8451
- REQUEST_ID:P700xsstxxg8f_00012
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:55:16.7494280Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:168.97815657
- SUN_ELEVATION:40.83558619
- TARGET_WRS_PATH:8
- TARGET_WRS_ROW:13
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8501
- THERMAL_SAMPLES:8451
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:8
- WRS_ROW:13
- WRS_TYPE:2
- system:asset_size:981920057
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-51.92900642630253, 68.03118531483813]
- 0:-51.92900642630253
- 1:68.03118531483813
1: [-52.166720159907065, 68.06639241313367]
- 0:-52.166720159907065
- 1:68.06639241313367
2: [-52.171554674564376, 68.06695716167664]
- 0:-52.171554674564376
- 1:68.06695716167664
3: [-53.00151262260521, 67.25520948103645]
- 0:-53.00151262260521
- 1:67.25520948103645
4: [-53.78209953154427, 66.43442830298982]
- 0:-53.78209953154427
- 1:66.43442830298982
5: [-53.781986445177914, 66.43341202732734]
- 0:-53.781986445177914
- 1:66.43341202732734
6: [-52.572389029802125, 66.24760886141569]
- 0:-52.572389029802125
- 1:66.24760886141569
7: [-50.46585177102902, 65.89425703047878]
- 0:-50.46585177102902
- 1:65.89425703047878
8: [-49.93322625224752, 65.79871176167579]
- 0:-49.93322625224752
- 1:65.79871176167579
9: [-49.430868687126356, 66.2574775348343]
- 0:-49.430868687126356
- 1:66.2574775348343
10: [-49.28153862356425, 66.39050578321444]
- 0:-49.28153862356425
- 1:66.39050578321444
11: [-49.08573076551169, 66.56268801093378]
- 0:-49.08573076551169
- 1:66.56268801093378
12: [-49.05379581835441, 66.59056468423638]
- 0:-49.05379581835441
- 1:66.59056468423638
13: [-48.72143239896757, 66.87743915222163]
- 0:-48.72143239896757
- 1:66.87743915222163
14: [-48.4107940239225, 67.13927652758962]
- 0:-48.4107940239225
- 1:67.13927652758962
15: [-48.33226306893424, 67.20450458662326]
- 0:-48.33226306893424
- 1:67.20450458662326
16: [-48.112704164735966, 67.38492708974124]
- 0:-48.112704164735966
- 1:67.38492708974124
17: [-48.096068280708735, 67.39853508804129]
- 0:-48.096068280708735
- 1:67.39853508804129
18: [-48.09661547258351, 67.39907949692154]
- 0:-48.09661547258351
- 1:67.39907949692154
19: [-48.79704210321136, 67.52397491095951]
- 0:-48.79704210321136
- 1:67.52397491095951
20: [-51.92900642630253, 68.03118531483813]
- 0:-51.92900642630253
- 1:68.03118531483813
- system:index:LC08_008013_20210731
- system:time_end:1627743316749
- system:time_start:1627743316749
7: Image LANDSAT/LC08/C02/T1_L2/LC08_007013_20220828 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_007013_20220828
- version:1662832463478570.0
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
1: "SR_B2", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
2: "SR_B3", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
3: "SR_B4", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
4: "SR_B5", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
5: "SR_B6", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
6: "SR_B7", unsigned int16, EPSG:32622, 8351x8411 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8351x8411 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
8: "ST_B10", unsigned int16, EPSG:32622, 8351x8411 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
9: "ST_ATRAN", signed int16, EPSG:32622, 8351x8411 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
10: "ST_CDIST", signed int16, EPSG:32622, 8351x8411 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
11: "ST_DRAD", signed int16, EPSG:32622, 8351x8411 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
12: "ST_EMIS", signed int16, EPSG:32622, 8351x8411 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
13: "ST_EMSD", signed int16, EPSG:32622, 8351x8411 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
14: "ST_QA", signed int16, EPSG:32622, 8351x8411 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
15: "ST_TRAD", signed int16, EPSG:32622, 8351x8411 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
16: "ST_URAD", signed int16, EPSG:32622, 8351x8411 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8351x8411 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8351x8411 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 441585, 0, -30, 7551015]
- 0:30
- 1:0
- 2:441585
- 3:0
- 4:-30
- 5:7551015
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8351, 8411]
- 0:8351
- 1:8411
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.5.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.3.0
- CLOUD_COVER:0.52
- CLOUD_COVER_LAND:0.53
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2022-08-28
- DATE_PRODUCT_GENERATED:1662768269000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0101653
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:3.827
- GEOMETRIC_RMSE_MODEL_X:2.719
- GEOMETRIC_RMSE_MODEL_Y:2.693
- GEOMETRIC_RMSE_VERIFY:2.39
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1305
- GROUND_CONTROL_POINTS_VERIFY:317
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2022-09-09T23:41:59Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_007013_20220828_20220909_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.1.0
- L1_REQUEST_ID:1573810_00013
- LANDSAT_PRODUCT_ID:LC08_L2SP_007013_20220828_20220910_02_T1
- LANDSAT_SCENE_ID:LC80070132022240LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.1.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8411
- REFLECTIVE_SAMPLES:8351
- REQUEST_ID:1573810_00013
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:49:34.9047910Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:171.374497
- SUN_ELEVATION:32.41299135
- TARGET_WRS_PATH:7
- TARGET_WRS_ROW:13
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8411
- THERMAL_SAMPLES:8351
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:7
- WRS_ROW:13
- WRS_TYPE:2
- system:asset_size:882186423
system:footprint: LinearRing (20 vertices)
- type:LinearRing
coordinates: List (20 elements)
0: [-50.65484896325198, 68.06628845691678]
- 0:-50.65484896325198
- 1:68.06628845691678
1: [-50.6582033526416, 68.066295408304]
- 0:-50.6582033526416
- 1:68.066295408304
2: [-50.6652673482397, 68.06034675966154]
- 0:-50.6652673482397
- 1:68.06034675966154
3: [-50.70119799112396, 68.02665230592093]
- 0:-50.70119799112396
- 1:68.02665230592093
4: [-52.265208608277284, 66.43751375064737]
- 0:-52.265208608277284
- 1:66.43751375064737
5: [-52.26725523350892, 66.43293770964247]
- 0:-52.26725523350892
- 1:66.43293770964247
6: [-48.42084785874006, 65.79887153938735]
- 0:-48.42084785874006
- 1:65.79887153938735
7: [-48.3697204485585, 65.84629494096406]
- 0:-48.3697204485585
- 1:65.84629494096406
8: [-48.269333999384166, 65.93903201907418]
- 0:-48.269333999384166
- 1:65.93903201907418
9: [-48.00750318519718, 66.17770813377528]
- 0:-48.00750318519718
- 1:66.17770813377528
10: [-47.8865669272377, 66.28642393306863]
- 0:-47.8865669272377
- 1:66.28642393306863
11: [-47.5559193515048, 66.57863990489173]
- 0:-47.5559193515048
- 1:66.57863990489173
12: [-47.35825597091853, 66.74997951349826]
- 0:-47.35825597091853
- 1:66.74997951349826
13: [-47.25629686834482, 66.83743937285087]
- 0:-47.25629686834482
- 1:66.83743937285087
14: [-47.10430744514398, 66.9666270442404]
- 0:-47.10430744514398
- 1:66.9666270442404
15: [-46.95710439156512, 67.090482221911]
- 0:-46.95710439156512
- 1:67.090482221911
16: [-46.73911373147488, 67.27138505423578]
- 0:-46.73911373147488
- 1:67.27138505423578
17: [-46.58323465627118, 67.39899926518227]
- 0:-46.58323465627118
- 1:67.39899926518227
18: [-48.88137560491004, 67.79270908607964]
- 0:-48.88137560491004
- 1:67.79270908607964
19: [-50.65484896325198, 68.06628845691678]
- 0:-50.65484896325198
- 1:68.06628845691678
- system:index:LC08_007013_20220828
- system:time_end:1661698174904
- system:time_start:1661698174904
8: Image LANDSAT/LC08/C02/T1_L2/LC08_006014_20230808 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_006014_20230808
- version:1691973897543207
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
1: "SR_B2", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
2: "SR_B3", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
3: "SR_B4", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
4: "SR_B5", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
5: "SR_B6", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
6: "SR_B7", unsigned int16, EPSG:32622, 8281x8341 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8281x8341 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
8: "ST_B10", unsigned int16, EPSG:32622, 8281x8341 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
9: "ST_ATRAN", signed int16, EPSG:32622, 8281x8341 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
10: "ST_CDIST", signed int16, EPSG:32622, 8281x8341 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
11: "ST_DRAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
12: "ST_EMIS", signed int16, EPSG:32622, 8281x8341 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
13: "ST_EMSD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
14: "ST_QA", signed int16, EPSG:32622, 8281x8341 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
15: "ST_TRAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
16: "ST_URAD", signed int16, EPSG:32622, 8281x8341 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8281x8341 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8281x8341 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 455685, 0, -30, 7399515]
- 0:30
- 1:0
- 2:455685
- 3:0
- 4:-30
- 5:7399515
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8281, 8341]
- 0:8281
- 1:8341
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:0.95
- CLOUD_COVER_LAND:0.95
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:MODIS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:MODIS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 FP-IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:MODIS
- DATE_ACQUIRED:2023-08-08
- DATE_PRODUCT_GENERATED:1691834246000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0140334
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:3.62
- GEOMETRIC_RMSE_MODEL_X:2.817
- GEOMETRIC_RMSE_MODEL_Y:2.273
- GEOMETRIC_RMSE_VERIFY:1.66
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1304
- GROUND_CONTROL_POINTS_VERIFY:212
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2023-08-12T09:25:57Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_006014_20230808_20230812_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- L1_REQUEST_ID:1772732_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_006014_20230808_20230812_02_T1
- LANDSAT_SCENE_ID:LC80060142023220LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.3.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8341
- REFLECTIVE_SAMPLES:8281
- REQUEST_ID:1772732_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:Y
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:43:07.2581770Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:167.52826666
- SUN_ELEVATION:40.06254451
- TARGET_WRS_PATH:6
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8341
- THERMAL_SAMPLES:8281
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:6
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:867118685
system:footprint: LinearRing (21 vertices)
- type:LinearRing
coordinates: List (21 elements)
0: [-48.2268115644276, 64.45530249335354]
- 0:-48.2268115644276
- 1:64.45530249335354
1: [-48.22423345069429, 64.4552538382783]
- 0:-48.22423345069429
- 1:64.4552538382783
2: [-48.004262634438156, 64.68039803895826]
- 0:-48.004262634438156
- 1:64.68039803895826
3: [-47.64055585274287, 65.04422259745839]
- 0:-47.64055585274287
- 1:65.04422259745839
4: [-47.48096340386961, 65.20061609455293]
- 0:-47.48096340386961
- 1:65.20061609455293
5: [-47.35949191583952, 65.3184677325002]
- 0:-47.35949191583952
- 1:65.3184677325002
6: [-47.26917763120224, 65.4054163919882]
- 0:-47.26917763120224
- 1:65.4054163919882
7: [-47.15528815706832, 65.51421426165291]
- 0:-47.15528815706832
- 1:65.51421426165291
8: [-46.88924247265266, 65.76471931190018]
- 0:-46.88924247265266
- 1:65.76471931190018
9: [-46.81097298159302, 65.83743603318908]
- 0:-46.81097298159302
- 1:65.83743603318908
10: [-46.63284218859026, 66.00141246471563]
- 0:-46.63284218859026
- 1:66.00141246471563
11: [-46.55781322348657, 66.06990445747846]
- 0:-46.55781322348657
- 1:66.06990445747846
12: [-46.8910885237756, 66.1296329880831]
- 0:-46.8910885237756
- 1:66.1296329880831
13: [-49.71179798086683, 66.59635653213762]
- 0:-49.71179798086683
- 1:66.59635653213762
14: [-50.442681410709554, 66.70636539445907]
- 0:-50.442681410709554
- 1:66.70636539445907
15: [-50.500253794702424, 66.6456299940123]
- 0:-50.500253794702424
- 1:66.6456299940123
16: [-51.90054383431803, 65.0620988783855]
- 0:-51.90054383431803
- 1:65.0620988783855
17: [-51.88342292640871, 65.0595042390741]
- 0:-51.88342292640871
- 1:65.0595042390741
18: [-51.13809848374238, 64.94575999081995]
- 0:-51.13809848374238
- 1:64.94575999081995
19: [-48.95770316470722, 64.58551591040035]
- 0:-48.95770316470722
- 1:64.58551591040035
20: [-48.2268115644276, 64.45530249335354]
- 0:-48.2268115644276
- 1:64.45530249335354
- system:index:LC08_006014_20230808
- system:time_end:1691505787258
- system:time_start:1691505787258
9: Image LANDSAT/LC08/C02/T1_L2/LC08_007014_20240801 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_007014_20240801
- version:1723126084002347
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
1: "SR_B2", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
2: "SR_B3", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
3: "SR_B4", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
4: "SR_B5", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
5: "SR_B6", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
6: "SR_B7", unsigned int16, EPSG:32622, 8371x8431 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8371x8431 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
8: "ST_B10", unsigned int16, EPSG:32622, 8371x8431 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
9: "ST_ATRAN", signed int16, EPSG:32622, 8371x8431 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
10: "ST_CDIST", signed int16, EPSG:32622, 8371x8431 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
11: "ST_DRAD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
12: "ST_EMIS", signed int16, EPSG:32622, 8371x8431 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
13: "ST_EMSD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
14: "ST_QA", signed int16, EPSG:32622, 8371x8431 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
15: "ST_TRAD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
16: "ST_URAD", signed int16, EPSG:32622, 8371x8431 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8371x8431 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8371x8431 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 382785, 0, -30, 7399815]
- 0:30
- 1:0
- 2:382785
- 3:0
- 4:-30
- 5:7399815
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8371, 8431]
- 0:8371
- 1:8431
properties: Object (94 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:1.44
- CLOUD_COVER_LAND:1.59
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:VIIRS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:VIIRS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:VIIRS
- DATE_ACQUIRED:2024-08-01
- DATE_PRODUCT_GENERATED:1723070082000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0149204
- ELLIPSOID:WGS84
- GEOMETRIC_RMSE_MODEL:3.559
- GEOMETRIC_RMSE_MODEL_X:2.451
- GEOMETRIC_RMSE_MODEL_Y:2.58
- GEOMETRIC_RMSE_VERIFY:1.667
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1797
- GROUND_CONTROL_POINTS_VERIFY:303
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2024-08-07T21:49:15Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_007014_20240801_20240807_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.4.0
- L1_REQUEST_ID:1920592_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_007014_20240801_20240807_02_T1
- LANDSAT_SCENE_ID:LC80070142024214LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.4.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8431
- REFLECTIVE_SAMPLES:8371
- REQUEST_ID:1920592_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:49:03.1115919Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:167.03333137
- SUN_ELEVATION:41.72270651
- TARGET_WRS_PATH:7
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8431
- THERMAL_SAMPLES:8371
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:7
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:941309318
system:footprint: LinearRing (22 vertices)
- type:LinearRing
coordinates: List (22 elements)
0: [-51.992433651769446, 66.70564387803057]
- 0:-51.992433651769446
- 1:66.70564387803057
1: [-51.99459897605672, 66.70385886512587]
- 0:-51.99459897605672
- 1:66.70385886512587
2: [-51.999008615984245, 66.69959840524368]
- 0:-51.999008615984245
- 1:66.69959840524368
3: [-52.74903692858922, 65.88139437145253]
- 0:-52.74903692858922
- 1:65.88139437145253
4: [-53.451271210639476, 65.06179176307039]
- 0:-53.451271210639476
- 1:65.06179176307039
5: [-53.41832923668912, 65.0568413069168]
- 0:-53.41832923668912
- 1:65.0568413069168
6: [-52.650175987313034, 64.93938905461938]
- 0:-52.650175987313034
- 1:64.93938905461938
7: [-51.0694963795741, 64.68173403312223]
- 0:-51.0694963795741
- 1:64.68173403312223
8: [-49.78935410749239, 64.4568317716702]
- 0:-49.78935410749239
- 1:64.4568317716702
9: [-49.771991282004265, 64.45373108145769]
- 0:-49.771991282004265
- 1:64.45373108145769
10: [-49.742109636769435, 64.48408094471037]
- 0:-49.742109636769435
- 1:64.48408094471037
11: [-49.64973408954036, 64.57800618892017]
- 0:-49.64973408954036
- 1:64.57800618892017
12: [-49.621340103676445, 64.60682264861649]
- 0:-49.621340103676445
- 1:64.60682264861649
13: [-49.58966827422996, 64.6389555363404]
- 0:-49.58966827422996
- 1:64.6389555363404
14: [-48.52886265427014, 65.678561276576]
- 0:-48.52886265427014
- 1:65.678561276576
15: [-48.333035549866125, 65.86111108108572]
- 0:-48.333035549866125
- 1:65.86111108108572
16: [-48.26371930761786, 65.92507338423691]
- 0:-48.26371930761786
- 1:65.92507338423691
17: [-48.10645316101299, 66.06900707708132]
- 0:-48.10645316101299
- 1:66.06900707708132
18: [-48.9462056508626, 66.21771281752441]
- 0:-48.9462056508626
- 1:66.21771281752441
19: [-51.64776958712685, 66.6546684478065]
- 0:-51.64776958712685
- 1:66.6546684478065
20: [-51.98996541104686, 66.70565944624688]
- 0:-51.98996541104686
- 1:66.70565944624688
21: [-51.992433651769446, 66.70564387803057]
- 0:-51.992433651769446
- 1:66.70564387803057
- system:index:LC08_007014_20240801
- system:time_end:1722523743111
- system:time_start:1722523743111
10: Image LANDSAT/LC08/C02/T1_L2/LC08_008014_20250827 (19 bands)
- type:Image
- id:LANDSAT/LC08/C02/T1_L2/LC08_008014_20250827
- version:1756926746706366
bands: List (19 elements)
0: "SR_B1", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B1
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
1: "SR_B2", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B2
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
2: "SR_B3", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B3
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
3: "SR_B4", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B4
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
4: "SR_B5", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B5
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
5: "SR_B6", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B6
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
6: "SR_B7", unsigned int16, EPSG:32622, 8461x8511 px
- id:SR_B7
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
7: "SR_QA_AEROSOL", unsigned int8, EPSG:32622, 8461x8511 px
- id:SR_QA_AEROSOL
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int8
- type:PixelType
- max:255
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
8: "ST_B10", unsigned int16, EPSG:32622, 8461x8511 px
- id:ST_B10
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
9: "ST_ATRAN", signed int16, EPSG:32622, 8461x8511 px
- id:ST_ATRAN
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
10: "ST_CDIST", signed int16, EPSG:32622, 8461x8511 px
- id:ST_CDIST
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
11: "ST_DRAD", signed int16, EPSG:32622, 8461x8511 px
- id:ST_DRAD
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
12: "ST_EMIS", signed int16, EPSG:32622, 8461x8511 px
- id:ST_EMIS
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
13: "ST_EMSD", signed int16, EPSG:32622, 8461x8511 px
- id:ST_EMSD
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
14: "ST_QA", signed int16, EPSG:32622, 8461x8511 px
- id:ST_QA
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
15: "ST_TRAD", signed int16, EPSG:32622, 8461x8511 px
- id:ST_TRAD
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
16: "ST_URAD", signed int16, EPSG:32622, 8461x8511 px
- id:ST_URAD
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: signed int16
- type:PixelType
- max:32767
- min:-32768
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
17: "QA_PIXEL", unsigned int16, EPSG:32622, 8461x8511 px
- id:QA_PIXEL
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
18: "QA_RADSAT", unsigned int16, EPSG:32622, 8461x8511 px
- id:QA_RADSAT
- crs:EPSG:32622
crs_transform: [30, 0, 310485, 0, -30, 7401615]
- 0:30
- 1:0
- 2:310485
- 3:0
- 4:-30
- 5:7401615
data_type: unsigned int16
- type:PixelType
- max:65535
- min:0
- precision:int
dimensions: [8461, 8511]
- 0:8461
- 1:8511
properties: Object (95 properties)
- ALGORITHM_SOURCE_SURFACE_REFLECTANCE:LaSRC_1.6.0
- ALGORITHM_SOURCE_SURFACE_TEMPERATURE:st_1.5.0
- CLOUD_COVER:1.29
- CLOUD_COVER_LAND:2.06
- COLLECTION_CATEGORY:T1
- COLLECTION_NUMBER:2
- DATA_SOURCE_AIR_TEMPERATURE:VIIRS
- DATA_SOURCE_ELEVATION:GLS2000
- DATA_SOURCE_OZONE:VIIRS
- DATA_SOURCE_PRESSURE:Calculated
- DATA_SOURCE_REANALYSIS:GEOS-5 IT
- DATA_SOURCE_TIRS_STRAY_LIGHT_CORRECTION:TIRS
- DATA_SOURCE_WATER_VAPOR:VIIRS
- DATE_ACQUIRED:2025-08-27
- DATE_PRODUCT_GENERATED:1756873362000
- DATUM:WGS84
- EARTH_SUN_DISTANCE:1.0102845
- ELLIPSOID:WGS84
- EPHEMERIS_TYPE:SPACECRAFT
- GEOMETRIC_RMSE_MODEL:2.781
- GEOMETRIC_RMSE_MODEL_X:1.857
- GEOMETRIC_RMSE_MODEL_Y:2.07
- GEOMETRIC_RMSE_VERIFY:1.385
- GRID_CELL_SIZE_REFLECTIVE:30
- GRID_CELL_SIZE_THERMAL:30
- GROUND_CONTROL_POINTS_MODEL:1456
- GROUND_CONTROL_POINTS_VERIFY:158
- GROUND_CONTROL_POINTS_VERSION:5
- IMAGE_QUALITY_OLI:9
- IMAGE_QUALITY_TIRS:9
- L1_DATE_PRODUCT_GENERATED:2025-09-03T03:49:22Z
- L1_LANDSAT_PRODUCT_ID:LC08_L1TP_008014_20250827_20250903_02_T1
- L1_PROCESSING_LEVEL:L1TP
- L1_PROCESSING_SOFTWARE_VERSION:LPGS_16.5.0
- L1_REQUEST_ID:2142047_00014
- LANDSAT_PRODUCT_ID:LC08_L2SP_008014_20250827_20250903_02_T1
- LANDSAT_SCENE_ID:LC80080142025239LGN00
- MAP_PROJECTION:UTM
- NADIR_OFFNADIR:NADIR
- ORIENTATION:NORTH_UP
- PROCESSING_LEVEL:L2SP
- PROCESSING_SOFTWARE_VERSION:LPGS_16.5.0
- REFLECTANCE_ADD_BAND_1:-0.2
- REFLECTANCE_ADD_BAND_2:-0.2
- REFLECTANCE_ADD_BAND_3:-0.2
- REFLECTANCE_ADD_BAND_4:-0.2
- REFLECTANCE_ADD_BAND_5:-0.2
- REFLECTANCE_ADD_BAND_6:-0.2
- REFLECTANCE_ADD_BAND_7:-0.2
- REFLECTANCE_MULT_BAND_1:2.75e-05
- REFLECTANCE_MULT_BAND_2:2.75e-05
- REFLECTANCE_MULT_BAND_3:2.75e-05
- REFLECTANCE_MULT_BAND_4:2.75e-05
- REFLECTANCE_MULT_BAND_5:2.75e-05
- REFLECTANCE_MULT_BAND_6:2.75e-05
- REFLECTANCE_MULT_BAND_7:2.75e-05
- REFLECTIVE_LINES:8511
- REFLECTIVE_SAMPLES:8461
- REQUEST_ID:2142047_00014
- ROLL_ANGLE:-0.001
- SATURATION_BAND_1:N
- SATURATION_BAND_2:N
- SATURATION_BAND_3:N
- SATURATION_BAND_4:N
- SATURATION_BAND_5:N
- SATURATION_BAND_6:N
- SATURATION_BAND_7:N
- SATURATION_BAND_8:N
- SATURATION_BAND_9:N
- SCENE_CENTER_TIME:14:55:40.0280190Z
- SENSOR_ID:OLI_TIRS
- SPACECRAFT_ID:LANDSAT_8
- STATION_ID:LGN
- SUN_AZIMUTH:169.54130184
- SUN_ELEVATION:33.90392813
- TARGET_WRS_PATH:8
- TARGET_WRS_ROW:14
- TEMPERATURE_ADD_BAND_ST_B10:149
- TEMPERATURE_MAXIMUM_BAND_ST_B10:372.999941
- TEMPERATURE_MINIMUM_BAND_ST_B10:149.003418
- TEMPERATURE_MULT_BAND_ST_B10:0.00341802
- THERMAL_LINES:8511
- THERMAL_SAMPLES:8461
- TIRS_SSM_MODEL:FINAL
- TIRS_SSM_POSITION_STATUS:ESTIMATED
- TRUNCATION_OLI:UPPER
- UTM_ZONE:22
- WRS_PATH:8
- WRS_ROW:14
- WRS_TYPE:2
- system:asset_size:862816601
system:footprint: LinearRing (20 vertices)
- type:LinearRing
coordinates: List (20 elements)
0: [-49.6566264009968, 66.05635530145483]
- 0:-49.6566264009968
- 1:66.05635530145483
1: [-49.64238570365924, 66.0694366595793]
- 0:-49.64238570365924
- 1:66.0694366595793
2: [-49.65681702946961, 66.07205399188364]
- 0:-49.65681702946961
- 1:66.07205399188364
3: [-50.00376120125552, 66.13417003290657]
- 0:-50.00376120125552
- 1:66.13417003290657
4: [-50.58687536095561, 66.2361415309114]
- 0:-50.58687536095561
- 1:66.2361415309114
5: [-51.746150241885, 66.43003262433656]
- 0:-51.746150241885
- 1:66.43003262433656
6: [-53.53203686292933, 66.70644218094718]
- 0:-53.53203686292933
- 1:66.70644218094718
7: [-54.28215064514226, 65.88736144079975]
- 0:-54.28215064514226
- 1:65.88736144079975
8: [-54.98874717073377, 65.06204130766935]
- 0:-54.98874717073377
- 1:65.06204130766935
9: [-54.16455411108728, 64.93620939231354]
- 0:-54.16455411108728
- 1:64.93620939231354
10: [-52.45518711719053, 64.65655912176338]
- 0:-52.45518711719053
- 1:64.65655912176338
11: [-51.30735762913227, 64.45418966613855]
- 0:-51.30735762913227
- 1:64.45418966613855
12: [-51.24264206519843, 64.51936758508644]
- 0:-51.24264206519843
- 1:64.51936758508644
13: [-51.21784099716817, 64.54432773236805]
- 0:-51.21784099716817
- 1:64.54432773236805
14: [-51.15440121890122, 64.60913198388239]
- 0:-51.15440121890122
- 1:64.60913198388239
15: [-51.0567913444873, 64.70826605219014]
- 0:-51.0567913444873
- 1:64.70826605219014
16: [-50.77823517439231, 64.98699273561915]
- 0:-50.77823517439231
- 1:64.98699273561915
17: [-50.529756023311066, 65.23164552327805]
- 0:-50.529756023311066
- 1:65.23164552327805
18: [-50.155726225241395, 65.59100425431672]
- 0:-50.155726225241395
- 1:65.59100425431672
19: [-49.6566264009968, 66.05635530145483]
- 0:-49.6566264009968
- 1:66.05635530145483
- system:index:LC08_008014_20250827
- system:time_end:1756306540028
- system:time_start:1756306540028
# Define a function to perform the NDSI calculation and pixel counting
def calculate_glacier_area(image):
# Clip the image to the specified region
image = image.clip(outline)
# Calculate NDSI
ndsi = image.normalizedDifference([r_high, r_low]).rename('NDSI')
# Threshold the image
ndsi_threshold = ndsi.gt(threshold)
# Mask data
ndsi_threshold = ndsi_threshold.updateMask(ndsi_threshold.neq(0))
# Count pixels
pixel_count = ndsi_threshold.reduceRegion(
reducer=ee.Reducer.count(),
geometry=outline,
scale=scale,
maxPixels=1e9 # Allow for large calculations
)
# Add the pixel count as a property to the image metadata
return image.set('ndsi_pixel_count', pixel_count.get('NDSI'))
# Apply the calculation function to every image in the collection
collection_with_counts = image_collection.map(calculate_glacier_area)
# Return values
start = time.time()
pixel_counts = collection_with_counts.aggregate_array('ndsi_pixel_count')
areas = pixel_counts.getInfo()
end = time.time()
print(f"Execution time: {end - start:.4f} seconds")
Execution time: 1.6133 seconds
# Calculate total area and plot
total_area_km2 = np.array(areas) * pixel_area_m2 / 1000000.0
import matplotlib.pyplot as plt
plt.plot(total_area_km2)
[<matplotlib.lines.Line2D at 0x1232b77d0>]
This is not necessarily the result we were looking for. The rapid changes in ice cap area (from >190 to <100 km2) is not physically possible. There could be several possible reasons for this.
My first suspicion was that even though we picked a relatively large temporal period (Jul 1 to Aug 31), the least cloudy image may still contain a lot of clouds. To investigate, we can plot the cloud cover for each image.
# Define cloud cover
cloud_cover_list = image_collection.aggregate_array('CLOUD_COVER')
cloud_cover = cloud_cover_list.getInfo()
fig, ax1 = plt.subplots(figsize=(8, 4))
color1 = 'tab:blue'
ax1.set_ylabel('Glacier Area (km²)', color=color1)
ax1.plot(total_area_km2, color=color1, marker='o', label='Glacier Area')
ax1.tick_params(axis='y', labelcolor=color1)
ax1.grid(True)
# Create a twin Axes sharing the x-axis
ax2 = ax1.twinx()
color2 = 'tab:red'
ax2.set_ylabel('Cloud Cover (%)', color=color2)
ax2.plot(cloud_cover, color=color2, marker='x', linestyle='--', label='Cloud Cover')
ax2.tick_params(axis='y', labelcolor=color2)
It looks like cloud cover was pretty low for all our images, certainly not enough to change the ice cap area by tens of kilometers squared.
Let’s visualize the ImageCollection to see what is going on. Fortunately, geemap provides several functions for displaying image collections.
Map = geemap.Map(center=[40, -100], zoom=4)
vis_params = {'bands': ['SR_B4', 'SR_B3', 'SR_B2']}
years = image_collection.aggregate_array('system:index').getInfo()
Map.ts_inspector(left_ts=image_collection, right_ts=image_collection,
left_names=years, right_names=years, left_vis=vis_params,right_vis=vis_params,
width='80px')
Map.centerObject(region, zoom=11)
Map
The time-series inspector function provides a slider for visualizing two images side-by-side. We find that some images do not have full coverage of the ice cap.
Map = geemap.Map()
vis_params = {'bands': ['SR_B4', 'SR_B3', 'SR_B2']}
Map.add_time_slider(image_collection, vis_params, time_interval=1)
Map.centerObject(region, zoom=11)
Map
The time slider makes a video of our ImageCollection that shows that there is tremendous variation in the reflectance of the ice cap from year to year. In some years, the ice cap is fully snow-covered in late-summer. In other years, the snow has melted to reveal glacier across most of the ice cap. Given the variations in reflectance, a simple thresholding approach to classify the ice cap may therefore not be sufficient.
Summary#
In this lecture, we learnt how to use Google Earth Engine for analyzing area changes of an ice cap in western Greenland. There are several important lessons to takeaway.
Earth Engine requires slightly different programming techniques because processing is not performed locally. To get the most out of Earth Engine, we should write code that is executed relatively infrequently. Since we do not often execute code, it can be more challenging to debug.
A good strategy for using Earth Engine is to work backwards. If we can specifically define the information that we need (e.g. area of ice cap), then we can reduce the number (and size) of requests that we make to Earth Engine servers which will rapidly speed up our code.
One way to ensure that our analysis is performing as it should is to have “eyes on the data”.
geemapprovides many functions to quickly do this.Our time period (2015-2025) was too short to detect changes in ice cap area, which are likely going to be small, even under climate change.
We may find larger changes if we used Landsat data from 1980s and 1990s. But this would require using a different classification approach because Landsat 5 has a different sensor to Landsat 8. However, training deep learning models is not supported in Earth Engine’s APIs. Instead, we have to train a model outside of Earth Engine, and then import it to make predictions.
Further reading#
Area, volume and ELA changes of West Greenland local glaciers and ice caps from 1985–2020
Earth Engine and Geemap - Geospatial Data Science with Python