diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index aecc6e6..5f6c725 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -3,6 +3,7 @@ on: push: branches: [main] + pull_request: name: Quarto Publish jobs: bookdown: @@ -14,10 +15,28 @@ jobs: - uses: actions/checkout@v3 - uses: julia-actions/setup-julia@v2 - uses: julia-actions/cache@v2 + - name: Set up custom Julia dependencies + run: | + using Pkg + Pkg.activate("quarto"; shared = true) + # TODO: QuartoNotebookRunner does not support execute-dir yet, but this PR does. + Pkg.add(url = "https://github.com/asinghvi17/QuartoNotebookRunner.jl", rev = "as/execute-dir") + Pkg.instantiate() + Pkg.activate(".") + Pkg.add([ + # TODO: DimensionalData v0.28 is not compatible with Rasters latest version, + # and has Makie fixes that we need for the book, otherwise plotting errors out. + # These can be removed after Rasters.jl's new breaking version. + PackageSpec(url = "https://github.com/asinghvi17/Rasters.jl", rev = "as/makie_and_cf"), + PackageSpec(url = "https://github.com/rafaqz/DimensionalData.jl", rev = "main"), + ]) + shell: julia {0} - uses: julia-actions/julia-buildpkg@v1 - name: Set up Quarto uses: quarto-dev/quarto-actions/setup@v2 + env: + QUARTO_JULIA_PROJECT: "@quarto" - name: Render and Publish uses: quarto-dev/quarto-actions/publish@v2 @@ -25,3 +44,5 @@ jobs: target: gh-pages env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + QUARTO_JULIA_PROJECT: "@quarto" + DATAFRAMES_ROWS: "6" diff --git a/.gitignore b/.gitignore index f79cad8..2f32432 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,5 @@ libs/ /.quarto/ docs /_site/ +output/* +Manifest.toml diff --git a/Project.toml b/Project.toml index 1483152..d3f0dfa 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,19 @@ [deps] +ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3" CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0" +DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" +DimensionalData = "0703355e-b756-11e9-17c0-8b28908087d0" GeoDataFrames = "62cb38b5-d8d2-4862-a48e-6a340996859f" +GeoFormatTypes = "68eda718-8dee-11e9-39e7-89f7f65f511f" +GeoInterface = "cf35fbd7-0cd7-5166-be24-54bfbe79505f" +GeoJSON = "61d90e0f-e114-555e-ac52-39dfb47a3ef9" GeoMakie = "db073c08-6b98-4ee5-b6a4-5efafb3259c6" +GeometryOps = "3251bfac-6a57-4b6d-aa61-ac1fef2975ab" +LibGEOS = "a90b1aa1-3769-5649-ba7e-abc5a9d163eb" Proj = "c94c279d-25a6-4763-9509-64d165bea63e" Rasters = "a3a2b9e3-a471-40c9-b274-f788e487c689" +Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" +StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" + +[compat] +GeometryOps = "0.1.12" diff --git a/_quarto.yml b/_quarto.yml index c997213..c6f1021 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -1,6 +1,7 @@ project: type: book output-dir: docs + execute-dir: project book: title: "Geocomputation with Julia" diff --git a/chapters/01-spatial-data.qmd b/chapters/01-spatial-data.qmd index 85948fe..44af128 100644 --- a/chapters/01-spatial-data.qmd +++ b/chapters/01-spatial-data.qmd @@ -1,5 +1,7 @@ --- engine: julia +project: + execute-dir: project --- # Geographic data in Julia {#sec-spatial-class} @@ -9,10 +11,16 @@ using Pkg Pkg.status() ``` +```{julia} +#| echo: false +mkpath("output") +``` + + ## Introduction ```{julia} using GeoDataFrames -df = GeoDataFrames.read("../data/world.gpkg") +df = GeoDataFrames.read("data/world.gpkg") ``` ```{julia} @@ -21,3 +29,120 @@ using GeoMakie f, a, p = poly(df.geom) ``` + + +### Raster from scratch {#sec-raster-from-scratch} + +In this section, we are going to demonstrate the creation of rasters from scratch. +We will construct two small rasters, `elev` and `grain`, which we will use in examples later in the book. +Unlike creating a vector layer (see @sec-vector-layer-from-scratch), creating a raster from scratch is rarely needed in practice because aligning a raster with the proper spatial extent is challenging to do programmatically ("georeferencing" tools in GIS software are a better fit for the job). +Nevertheless, the examples will be helpful to become more familiar with the **Rasters.jl** data structures. + +```{julia} +using Rasters +import GeoFormatTypes as GFT +``` + +Conceptually, a raster is an array combined with georeferencing information, whereas the latter comprises: + +- Lookup vectors for the axes, encoding the spatial coordinates for each grid cell. These take the form of the `X` and `Y` dimensions in the raster that you'll see below. +- A [coordinate reference system](https://en.wikipedia.org/wiki/Spatial_reference_system) (CRS) definition, specifying the association of the raster's coordinates with the surface of the earth. + +Therefore, to create a raster, we first need to have an array with the values, and then supplement it with the georeferencing information. +Let's create the arrays `elev` and `grain`. +The `elev` array is a $6 \times 6$ array with sequential values from `1` to `36`. +It can be created as follows using base Julia functions. + +```{julia} +elev = reshape(UInt8(1):UInt8(36), (6, 6)) +``` + +The `grain` array represents a categorical raster with values `0`, `1`, `2`, corresponding to categories "clay", "silt", "sand", respectively. +We will create it from a specific arrangement of pixel values, using `reshape`. + +```{julia} +v = UInt8[ + 1, 0, 1, 2, 2, 2, + 0, 2, 0, 0, 2, 1, + 0, 2, 2, 0, 0, 2, + 0, 0, 1, 1, 1, 1, + 1, 1, 1, 2, 1, 1, + 2, 1, 2, 2, 0, 2 +] +grain = reshape(v, (6, 6)) +``` + +Note that in both cases, we are using the `uint8` (unsigned integer in 8 bits, i.e., `0-255`) data type, which is sufficient to represent all possible values of the given rasters (see @tbl-numpy-data-types). +This is the recommended approach for a minimal memory footprint. + +What is missing now is the georeferencing information (see @sec-using-rasters-jl). +In this case, since the rasters are arbitrary, we also set up arbitrary dimension lookups for the `x` and `y` axes, where: + +- The origin ($x_{min}$, $y_{max}$) is at `-1.5,1.5` +- The raster resolution ($delta_{x}$, $delta_{y}$) is `0.5,-0.5` + +We can add this information using `rasterio.transform.from_origin`, and specifying `west`, `north`, `xsize`, and `ysize` parameters. +The resulting transformation matrix object is hereby named `new_transform`. + +```{julia} +new_x = X(range(-1.5, step=0.5, length=6)) +new_y = Y(range(1.0, step=-0.5, length=6)) +``` + +We can now construct a `Raster` object, from the `elev` array and the dimensions `new_x` and `new_y`. +We assign to it a CRS of `EPSG:4326` (which encodes that the coordinate system is longitude/latitude on the "standard" WGS84 definition of the Earth's curvature). + +Here, we use the `GFT.EPSG(code)` constructor to create an object that encodes a reference code under the [European Petroleum Survey Group](https://epsg.org) (EPSG) authority's database of coordinate reference systems. + +```{julia} +elev_raster = Raster(elev, (new_x, new_y); crs = GFT.EPSG(4326)) +``` + +The raster can now be plotted in its coordinate system, passing the array `elev` along with the transformation matrix `new_transform` to `rasterio.plot.show` (@fig-rasterio-plot-elev). + +```{julia} +#| label: fig-rasterio-plot-elev +#| fig-cap: Plot of the `elev` raster, a minimal example of a continuous raster, created from scratch +plot(elev_raster) +``` + +The `grain` raster can be plotted the same way, as we are going to use the same transformation matrix for it as well (@fig-rasterio-plot-grain). + +```{julia} +#| label: fig-rasterio-plot-grain +#| fig-cap: Plot of the `grain` raster, a minimal example of a categorical raster, created from scratch +plot(Raster(grain, (new_x, new_y); crs = GFT.EPSG(4326))) +``` + +At this point, we have two rasters, each composed of an array and related dimension lookups. +We can work with the raster using **Rasters.jl** by: + +- Keeping in mind that any other layer we use in the analysis is in the same CRS + +Finally, to export the raster for permanent storage, along with the spatial metadata, we need to go through the following steps: + +1. Create a raster file (where we set the lookups and the CRS, among other settings) +2. Write the array with raster values into the connection +3. Close the connection + +Don't worry if the code below is unclear; the concepts related to writing raster data to file will be explained in @sec-data-output-raster. +For now, for completeness, and also to use these rasters in subsequent chapters without having to re-create them from scratch, we just provide the code for exporting the `elev` and `grain` rasters into the `output` directory. +In the case of `elev`, we do it as follows with the `Rasters.write` functions and methods of the **Rasters.jl** package. + +```{julia} +write("output/elev.tif", elev_raster; force = true) +``` + +Note that the CRS we (arbitrarily) set for the `elev` raster is WGS84, defined using `crs=4326` according to the EPSG code. + +Exporting the `grain` raster is done in the same way, with the only differences being the file name and the array we write into the connection. + +```{julia} +write("output/grain.tif", Raster(grain, (new_x, new_y); crs = GFT.EPSG(4326)); force = true) +``` + +As a result, the files `elev.tif` and `grain.tif` are written into the `output` directory. +We are going to use these small raster files later on in the examples (for example, @sec-raster-subsetting). + +Note that the transform matrices and dimensions of `elev` and `grain` are identical. +This means that the rasters are overlapping, and can be combined into one two-band raster, processed in raster algebra operations (@sec-map-algebra), etc. diff --git a/chapters/02-attribute-operations.qmd b/chapters/02-attribute-operations.qmd index 0af8787..dac6d15 100644 --- a/chapters/02-attribute-operations.qmd +++ b/chapters/02-attribute-operations.qmd @@ -1,5 +1,7 @@ --- engine: julia +project: + execute-dir: project --- # Attribute data operations {#sec-attr} diff --git a/chapters/03-spatial-operations.qmd b/chapters/03-spatial-operations.qmd index 6e05f74..1244698 100644 --- a/chapters/03-spatial-operations.qmd +++ b/chapters/03-spatial-operations.qmd @@ -1,5 +1,7 @@ --- engine: julia +project: + execute-dir: project --- # Spatial data operations {#sec-spatial-operations} diff --git a/chapters/04-geometry-operations.qmd b/chapters/04-geometry-operations.qmd index 0e3e4bd..44a2364 100644 --- a/chapters/04-geometry-operations.qmd +++ b/chapters/04-geometry-operations.qmd @@ -1,5 +1,7 @@ --- engine: julia +project: + execute-dir: project --- # Geometry operations {#sec-geometric-operations} diff --git a/chapters/05-raster-vector.qmd b/chapters/05-raster-vector.qmd index 133f47f..565cbb3 100644 --- a/chapters/05-raster-vector.qmd +++ b/chapters/05-raster-vector.qmd @@ -1,7 +1,894 @@ --- engine: julia +project: + execute-dir: project --- # Raster-vector interactions {#sec-raster-vector} ## Prerequisites {.unnumbered} + +This chapter requires importing the following packages: + +```{julia} +using GeoDataFrames, DataFrames +using Rasters, ArchGDAL # Raster I/O and operations +using Proj # activate reprojection capabilities +import GeoInterface as GI, GeometryOps as GO, LibGEOS as LG # Vector operations +import GeoFormatTypes as GFT # for CRS types +using GeoMakie, CairoMakie # plotting +``` + +Here, we will also set the theme in Makie.jl to ensure that all `surface` and `heatmap` plots are represented in file as bitmap images, rather than the raw data. +This is necessary only because Quarto breaks on SVGs above a certain size. +You can feel free to set this for your own work, but it is not required. + +```{julia} +Makie.set_theme!( + Heatmap = (; rasterize = 2), + Surface = (; rasterize = 2), +) +``` + +It also relies on the following data files: + +```{julia} +src_srtm = Raster("data/srtm.tif") +src_nlcd = Raster("data/nlcd.tif") +src_grain = Raster("output/grain.tif") +src_elev = Raster("output/elev.tif") +src_dem = Raster("data/dem.tif") +zion = GeoDataFrames.read("data/zion.gpkg") +zion_points = GeoDataFrames.read("data/zion_points.gpkg") +cycle_hire_osm = GeoDataFrames.read("data/cycle_hire_osm.gpkg") +us_states = GeoDataFrames.read("data/us_states.gpkg") +nz = GeoDataFrames.read("data/nz.gpkg") +src_nz_elev = Raster("data/nz_elev.tif") +``` + +## Introduction + +This chapter focuses on interactions between raster and vector geographic data models, both introduced in @sec-spatial-class. +It includes four main techniques: + +- Raster cropping and masking using vector objects (@sec-raster-cropping) +- Extracting raster values using different types of vector data (@sec-raster-extraction) +- Raster to vector conversion (@sec-rasterization) +- Vector to raster conversion (@sec-spatial-vectorization) + +These concepts are demonstrated using data from previous chapters, to understand their potential real-world applications. + +## Raster masking and cropping {#sec-raster-cropping} + +Many geographic data projects involve integrating data from many different sources, such as remote sensing images (rasters) and administrative boundaries (vectors). +Often the extent of input raster datasets is larger than the area of interest. +In this case, raster *masking*, *cropping*, or both, are useful for unifying the spatial extent of input data (@fig-raster-crop (b) and (c), and the following two examples, illustrate the difference between masking and cropping). +Both operations reduce memory use and computational demand for subsequent analysis, and may be a necessary preprocessing step before creating attractive maps involving raster data. + +We will use two layers to illustrate raster cropping: + +- The `srtm.tif` raster representing elevation, in meters above sea level, in south-western Utah: a **Rasters.jl** file connection named `src_srtm` (see @fig-raster-crop (a)) +- The `zion.gpkg` vector layer representing the Zion National Park boundaries (a `DataFrame` named `zion`) + +Both target and cropping objects must have the same projection. +Since it is easier and more precise to reproject vector layers, compared to rasters, we use the following expression to reproject (@sec-reprojecting-vector-geometries) the vector layer `zion` into the [coordinate reference system](https://en.wikipedia.org/wiki/Spatial_reference_system) (CRS) of the raster `src_srtm`. +The CRS defines how the coordinates of the geometry relate to locations on the surface of the Earth. + +```{julia} +zion = GO.reproject(zion; target_crs = GI.crs(src_srtm)) +``` + +To mask the image, i.e., convert all pixels which do not intersect with the `zion` polygon to `missing`, we use the `Rasters.mask` function. +`mask` supports any geometry, vector of geometries, feature collection, or table with a geometry column! + +The tabset below shows all the different ways to mask a raster. We'll go forward with the approach of using a DataFrame. + +:::{.panel-tabset} +## DataFrame +```{julia} +out_image_mask = Rasters.mask(src_srtm; with = zion) +``` + +## Single geometry + +```{julia} +masker = zion.geom[1] +``` + +```{julia} +Rasters.mask(src_srtm; with = masker) +``` + +## Vector of geometries + +```{julia} +masker = zion.geom +``` + +```{julia} +Rasters.mask(src_srtm; with = masker) +``` + + +::: + +::: {.callout-note} +Note that since Julia has a native missing/NODATA value type, we don't need to specify a NODATA value for the `mask` function. + +However, it can sometimes be useful and more efficient to specify a sentinel value which Rasters treats as missing. + +You can do this by specifying the `missingval` keyword argument, like so: +```julia +out_image_mask = Rasters.mask(src_srtm; with = zion, missingval = 9999) +``` +::: + +We can write this masked raster to file with `Rasters.write`: + +```{julia} +Rasters.write("output/srtm_masked.tif", out_image_mask; force = true +) +``` + + +In **Rasters.jl**, cropping and masking are distinct operations. Cropping, which reduces the raster extent to the extent of the vector layer, is accomplished with the `crop` function. + +Here, we simply pass the `zion` feature table to the `to` keyword argument, which indicates what to crop the raster "to". We also set the `touches` keyword argument to `true`, to specify that pixels that partially overlap with the vector layer are included in the output. + +```{julia} +out_image_crop = Rasters.crop(src_srtm; to = zion, touches = true) +``` + +You can also assemble an extent manually, using `Extents.Extent`, or extract one using `GI.extent`. + +We can crop our masked raster as well: + +```{julia} +out_image_mask_crop = Rasters.crop(out_image_mask; to = zion, touches = true) +``` + +and we write it to file using `Rasters.write`: + +```{julia} +Rasters.write("output/srtm_masked_cropped.tif", out_image_mask_crop; force = true) +``` + +@fig-raster-crop shows the original raster, and the three masking and/or cropping results. + +```{julia} +#| label: fig-raster-crop +#| fig-cap: Raster masking and cropping +fig = Figure(size = (600, 600)) + +ax1 = Axis(fig[1, 1]; title = "Original") +plot!(ax1, src_srtm) +poly!(ax1, zion.geom; color = :transparent, strokecolor = :black, strokewidth = 0.75) + +ax2 = Axis(fig[1, 2]; title = "Masked") +plot!(ax2, out_image_mask) +poly!(ax2, zion.geom; color = :transparent, strokecolor = :black, strokewidth = 0.75) + +ax3 = Axis(fig[2, 1]; title = "Cropped") +plot!(ax3, out_image_crop) +poly!(ax3, zion.geom; color = :transparent, strokecolor = :black, strokewidth = 0.75) + +ax4 = Axis(fig[2, 2]; title = "Masked+Cropped") +plot!(ax4, out_image_mask_crop) +poly!(ax4, zion.geom; color = :transparent, strokecolor = :black, strokewidth = 0.75) + +display(fig) +``` + + +## Raster extraction {#sec-raster-extraction} + +Raster extraction is the process of identifying and returning the values associated with a 'target' raster at specific locations, based on a (typically vector) geographic 'selector' object. +The reverse of raster extraction---assigning raster cell values based on vector objects---is rasterization, described in @sec-rasterization. + +**Rasters.jl** provides modular raster extraction and statistics functions, and we use this package in the following examples. + +* To *points* (@sec-extraction-to-points) or to *lines* (@sec-extraction-to-lines), via the `Rasters.extract` function +* To *polygons* (@sec-extraction-to-polygons), via the `Rasters.zonal` function + + + +### Extraction to points {#sec-extraction-to-points} + +The simplest type of raster extraction is getting the values of raster cells at specific points. +To demonstrate extraction to points, we will use `zion_points`, which contains a sample of 30 locations within the Zion National Park (@fig-zion-points). + +```{julia} +#| label: fig-zion-points +#| fig-cap: 30 point locations within the Zion National Park, with elevation in the background +fig, ax, plt = plot(src_srtm) +scatter!(ax, zion_points.geom, color=:black, strokecolor=:white, strokewidth = 1); +display(fig) +``` + + +The following expression extracts elevation values from `srtm.tif` according to `zion_points`, using `Rasters.extract`. + + +::: {.callout-danger} +The API here is not great, can we do better? It currently returns a vector of named tuples, which is not very convenient. + +One thought is to use a Tables.jl materializer to convert the result if possible. I understand the desire to return the geometry values. But there must be a better way than this. +::: + +```{julia} +result1 = DataFrame(Rasters.extract(src_srtm, zion_points; geometry = false)) +``` + +The first argument is the raster from which to extract values, and the second is the vector object (or collection of objects) according to which to extract the values. + + + +::: {.callout-note} +**Rasters.jl** does not yet support interpolation in extraction, so the values extracted are the values of the nearest cell center. +This corresponds to `interpolate='nearest'` in the Python `rasterstats` package. +::: + + +Either way, the resulting object is a vector of raster values, corresponding to `zion_points`. +For example, here are the elevations of the first five points. + +```{julia} +result1[1:5, ""] +``` + +To get a `DataFrame` with the original points geometries (and other attributes, if any), as well as the extracted raster values, we can assign the extraction result into a new column. + +```{julia} +zion_points[!, "elev1"] = result1[!, ""] +zion_points +``` + +You can read from a single band by selecting the band in the Raster. TODO finish this text + +### Extraction to lines {#sec-extraction-to-lines} + + +Raster extraction is also applicable with line selectors. +The typical line extraction algorithm is to extract one value for each raster cell touched by a line. +However, this particular approach is not recommended to obtain values along the transects, as it is hard to get the correct distance between each pair of extracted raster values. + +For line extraction, a better approach is to split the line into many points (at equal distances along the line) and then extract the values for these points using the "extraction to points" technique (@sec-extraction-to-points). +To demonstrate this, the code below creates (see @sec-vector-data for recap) `zion_transect`, a straight line going from northwest to southeast of the Zion National Park. + +```{julia} +coords = [[-113.2, 37.45], [-112.9, 37.2]] +zion_transect = GI.LineString(coords) +``` + +The utility of extracting heights from a linear selector is illustrated by imagining that you are planning a hike. +The method demonstrated below provides an 'elevation profile' of the route (the line does not need to be straight), useful for estimating how long it will take by determining the cumulative elevation gain of your journey. + +First, we need to create a layer consisting of points along our line (`zion_transect`), at specified intervals (e.g., `250`). +To do that, we need to transform the line into a projected CRS (so that we work with true distances, in $m$), such as [Universal Transverse Mercator](https://en.wikipedia.org/wiki/Universal_Transverse_Mercator_coordinate_system). + +```{julia} +zion_transect_utm = GO.reproject(zion_transect; target_crs = GFT.EPSG(32612), source_crs = GFT.EPSG(4326)) +``` + +The printout of the new geometry shows this is still a straight line between two points, only with coordinates in a projected CRS. + +::: {.callout-danger} +I've chosen to differ from the Python treatment here - instead of selecting some number of points along the line explicitly, I will segmentize the line and extract the points. This is less precise, but we don't have the API to do arclength interpolation in GeometryOps yet. Hopefully this will be added soon. + +cf. https://github.com/JuliaGeo/GeometryOps.jl/issues/210 +::: + +Here, we interpolate points along the line using `GO.segmentize`. This operation is sometimes called line densification. + +We first compute the length of the line, and then use this to segmentize the line into approximately 250 points. + +```{julia} +_centroid, linelen = GO.centroid_and_length(zion_transect_utm) +``` + +Now that we have the length of the line, we can choose a distance such that we get around 250 points along the line. + +```{julia} +zion_transect_line = GO.segmentize(zion_transect_utm; max_distance = linelen / 250) +``` + +This gives us a collection of 251 points along the line. We can extract the points that define the line segments by using `GI.getpoint` on the line, and then reproject the points to the CRS of the raster. + +```{julia} +line_points = GI.getpoint(zion_transect_line) +zion_transect_pnt = GO.reproject(line_points; target_crs = GI.crs(src_srtm), source_crs = GI.crs(zion_transect_line)) +``` + +Finally, we extract the elevation values for each point in our transect and combine the information with `zion_transect_pnt` (after "promoting" it to a `DataFrame`, to accommodate extra attributes), using the point extraction method shown earlier (@sec-extraction-to-points). +We also attach the distance of each point along the line, to be used to plot an elevation profile. + +```{julia} +zion_transect_pnt = DataFrame(geometry = zion_transect_pnt) + +result = Rasters.extract(src_srtm, zion_transect_pnt; geometry = false) +# `Rasters.extract` returns a vector of tuples, so we take the first element of each tuple +result = first.(result) +# Add elevation data to a new data frame column, named `elevation` +zion_transect_pnt[!, "elevation"] = result +``` + +We also want to visualize an elevation profile along this line, so we compute the distances along the line manually. Using `GO.distance`, we can get the distance between successive points along the line. Then, we add `0.0` to the beginning of the array of distances, and sum along that array to get the cumulative distance along the line. + +```{julia} +# Compute distances between successive points along the line +distances_between_points = GO.distance.(zion_transect_pnt.geometry[1:end-1], zion_transect_pnt.geometry[2:end]) +# Compute cumulative distances along the line +cumulative_distances = cumsum([0.0; distances_between_points]) +# Assign the distances to a new column in the data frame +zion_transect_pnt[!, "distance"] = cumulative_distances +zion_transect_pnt +``` + + +The information in `zion_transect_pnt`, namely the `"dist"` and `"elev"` attributes, can now be used to draw an elevation profile, as illustrated in @fig-zion-transect. + + +```{julia} +#| label: fig-zion-transect +#| fig-cap: Extracting a raster values profile to line +#| layout-ncol: 2 +#| fig-subcap: +#| - Raster and a line transect +#| - Extracted elevation profile +# Raster and a line transect +fig, ax, plt = plot(src_srtm) +lines!(ax, zion_transect; color = :black) +poly!(ax, zion.geom; color = :transparent, strokecolor = :white, strokewidth = 0.75) +display(fig) +# Elevation profile +fig, ax, plt = lines( + zion_transect_pnt.distance, + zion_transect_pnt.elevation; + axis = (; + xlabel = "Distance (m)", + ylabel = "Elevation (m)", + ) +) +display(fig) +``` + +### Extraction to polygons {#sec-extraction-to-polygons} + +The final type of geographic vector object that can be used for raster extraction is polygons. +Like lines, polygons tend to return many raster values per vector geometry. +For continuous rasters (@fig-raster-extract-to-polygon (a)), we typically want to generate summary statistics for raster values per polygon, for example to characterize a single region or to compare many regions. +The generation of raster summary statistics, by polygons, is demonstrated in the code below using `Rasters.zonal`, which creates a list of summary statistics for "zones" defined by geometry. +In this case, a vector of length 1 is returned, since there is just one polygon in the `DataFrame`. + +```{julia} +using Statistics # for `mean` +rmean = Rasters.zonal(mean, src_srtm; of = zion) +rmin = Rasters.zonal(minimum, src_srtm; of = zion) +rmax = Rasters.zonal(maximum, src_srtm; of = zion) +result = (rmean, rmin, rmax) +``` + +`Rasters.zonal` accepts any function that works on iterables (collections of elements that can be looped over) and returns a single value, like `mean`, `minimum`, `maximum`, `std`, `median`, `mode`, `sum`, `prod`, etc. + +::: {.callout-tip collapse="true"} +## You can pass your own custom function too! + +```{julia} +# This is about the worst possible implementation of a mean function, +# please don't use it in real life! +function my_mean(iterable) + result = 0.0 + count = 0 + for value in iterable + result += value + count += 1 + end + result /= count + return result +end + +Rasters.zonal(my_mean, src_srtm; of = zion) +``` + +::: + +::: {.callout-tip collapse="true"} +## You can pass multiple functions to a single `Rasters.zonal` call + +Sometimes, in order to be most efficient with raster access, we might want to pass multiple functions to a single `Rasters.zonal` call. +We can do this by passing a function that returns a tuple of values to `Rasters.zonal`. + +For example, consider: +```{julia} +using Statistics # for `mean` +Rasters.zonal(x -> (mean(x), minimum(x), maximum(x)), src_srtm; of = zion) +``` + +::: + +We then transform the result to a `DataFrame`, which makes it easier to track and handle geometry attributes: + +```{julia} +DataFrame(mean = rmean, min = rmin, max = rmax) +``` + +Because there is only one polygon in the example, single-element vectors are returned. +However, if `zion` was composed of more than one polygon, we would accordingly get more elements in the returned vectors. +The result provides useful summaries, for example that the maximum height in the park is `2661` $m$ above sea level. + +To count occurrences of categorical raster values within polygons (@fig-raster-extract-to-polygon (b)), we can use masking (@sec-raster-cropping) combined with `StatsBase.countmap`, as follows. + +```{julia} +out_image = Rasters.mask(src_nlcd; with = GO.reproject(zion; target_crs = GI.crs(src_nlcd))) +using StatsBase +counts = StatsBase.countmap(out_image) +``` + +According to the result, for example, the value `2` ("Developed" class) appears in `4205` pixels within the Zion polygon. + +@fig-raster-extract-to-polygon illustrates the two types of raster extraction to polygons described above. + +```{julia} +#| label: fig-raster-extract-to-polygon +#| fig-cap: Sample data used for continuous and categorical raster extraction to a polygon +#| layout-ncol: 2 +#| fig-subcap: +#| - Continuous raster +#| - Categorical raster +# Continuous raster +fig, ax, plt = plot(src_srtm) +poly!(ax, zion.geom; color = :transparent, strokecolor = :black, strokewidth = 0.75) +display(fig) +# Categorical raster +fig, ax, plt = plot(src_nlcd; colormap = cgrad(:Set3; categorical = true), source = GI.crs(src_nlcd), axis = (; type = GeoAxis, dest = GI.crs(src_nlcd))) +poly!(ax, zion.geom; source = GI.crs(zion.geom[1]), color = :transparent, strokecolor = :black, strokewidth = 0.75) +cm = Colorbar(fig[1, 2], plt) +ax.xgridvisible = false +ax.ygridvisible = false +display(fig) # TODO: make GeoMakie better on small extents +``` + + + + + + +## Rasterization {#sec-rasterization} + +Rasterization is the conversion of vector objects into their representation in raster objects. +Usually, the output raster is used for quantitative analysis (e.g., analysis of terrain) or modeling. +As we saw in @sec-spatial-class, the raster data model has some characteristics that make it conducive to certain methods. +Furthermore, the process of rasterization can help simplify datasets because the resulting values all have the same spatial resolution: rasterization can be seen as a special type of geographic data aggregation. + +**Rasters.jl** provides the `Rasters.rasterize` function for rasterizing vector data. To make this happen, we need to have some definition for a "template" grid, i.e., the "template" raster defining the extent, resolution and CRS of the output. We can also pass a pre-existing raster, in which case Rasters uses the existing grid definition. + + +As for the vector geometries and their associated values, the `Rasters.rasterize` function can take input in multiple ways: +- `; data::FeatureCollection, fill::Symbol` means that the values of the column passed to `fill` will be used to fill the raster. +- `; data::Vector{Geometry}, fill::Vector` means that the values passed to `fill` will be associated with each geometry in `data` and used to fill the raster. +- `; data::Any, fill::Function` calls `fill` with the current value + +Furthermore, we define how to handle multiple values burned into the same pixel, in the first argument called `reducer`. +By default, this is `last`, meaning that the last polygon to be rasterized takes precedence. +However, we can pass any function that takes in an iterable and returns a single value, like `mean`, `minimum`, `maximum`, `std`, `median`, `mode`, `sum`, `prod`, etc. +Many of these may not make sense to use but they are useful to know of. + + +Furthermore, we define how to deal with multiple values burned into the same pixel, in the first argument called `reducer`. By default, this is `last`, meaning that the last polygon to be rasterized takes precedence. However, we can pass any function that takes in an iterable and returns a single value, like `mean`, `minimum`, `maximum`, `std`, `median`, `mode`, `sum`, `prod`, etc. Many of these may not make sense to use but they are useful to know of. + + +Finally, we can set the `fill` value, which is the value that "unaffected" pixels get, with `fill=0` being the default. + +How the `Rasters.rasterize` function works with all of these various parameters will be made clear in the next examples. + +The spatial resolution (area of each "pixel") of the "template" raster has a major impact on the results: if it is too low (cell size is too large), the result may miss the full geographic variability of the vector data; if it is too high, computational times may be excessive. +There are no simple rules to follow when deciding an appropriate geographic resolution, which is heavily dependent on the intended use of the results. +Often the target resolution is imposed on the user, for example when the output of rasterization needs to be aligned to an existing raster. + +Depending on the input data, rasterization typically takes one of two forms which we demonstrate next: + +- in *point* rasterization (@sec-rasterizing-points), we typically choose how to treat multiple points: either to summarize presence/absence, point count, or summed attribute values (@fig-rasterize-points) +- in *line* and *polygon* rasterization (@sec-rasterizing-lines-and-polygons), there are typically no such "overlaps" and we simply "burn" attribute values, or fixed values, into pixels coinciding with the given geometries (@fig-rasterize-lines-polygons) + + +### Rasterizing points {#sec-rasterizing-points} + +To demonstrate point rasterization, we will prepare a "template" raster that has the same extent and CRS as the input vector data `cycle_hire_osm_projected` (a dataset on cycle hire points in London, illustrated in @fig-rasterize-points (a)) and a spatial resolution of 1000 $m$. +To do that, we first take our point layer and transform it to a projected CRS. + +```{julia} +cycle_hire_osm_projected = GO.reproject(cycle_hire_osm; target_crs = GFT.EPSG(27700)) +``` + +We can then use the `Rasters.rasterize` function to rasterize the points. + +::: {.callout-danger} +This isn't a great way to get an extent, but needs must. Currently we get the extent of `cycle_hire_osm_projected` by `GI.extent(GI.LineString(cycle_hire_osm_projected.geom))`. + +Track https://github.com/geocompx/geocompjl/issues/5 to see +if there's a better way to get an extent from a vector of geometries. +::: + + +As mentioned above, point rasterization can be a very flexible operation: the results depend not only on the nature of the template raster, but also on the the pixel "activation" method, namely the way we deal with multiple points matching the same pixel. + +To illustrate this flexibility, we will try three different approaches to point rasterization (@fig-rasterize-points (b)-(d)). +First, we create a raster representing the presence or absence of cycle hire points (known as presence/absence rasters). +In this case, we transfer the value of `1` to all pixels where at least one point falls in. +In the **Rasters.jl** framework, we use the `Rasters.rasterize` function, as described above. In this first example, we want to write the value `1` where the points are present, and `0` otherwise. + +```{julia} +ch_raster1 = Rasters.rasterize( + last, # reducer + cycle_hire_osm_projected; # data + fill = 1, + size = (1000, 1000) # specify size in "pixels" +) +``` + +In our second variant of point rasterization, we count the number of bike hire stations. +To do that, we use the fixed value of `1` (same as in the last example), but this time combined with the `reducer=sum` argument. +That way, multiple values burned into the same pixel are *summed*, rather than replaced keeping last (which is the default). +The new output, `ch_raster2`, shows the number of cycle hire points in each grid cell. + +```{julia} +ch_raster2 = Rasters.rasterize( + sum, # reducer + cycle_hire_osm_projected; # data + fill = 1, + size = (1000, 1000) # specify size in "pixels" +) +``` + + +The cycle hire locations have different numbers of bicycles described by the capacity variable, raising the question, what is the capacity in each grid cell? +To calculate that, in our third point rasterization variant we sum the field (`'capacity'`) rather than the fixed values of `1`. + +This is extremely simple to run, but we will show how to do this two ways: first, by passing the column name in the feature collection to `fill`. + +```{julia} +ch_raster3 = Rasters.rasterize( + sum, # reducer + cycle_hire_osm_projected; # data + fill = :capacity, + size = (1000, 1000) # specify size in "pixels" +) +``` + +Second, by passing the vectors of geometries and values separately. +```{julia} +ch_raster3 = Rasters.rasterize( + sum, # reducer + cycle_hire_osm_projected.geom; # data + fill = cycle_hire_osm_projected.capacity, + crs = GI.crs(cycle_hire_osm_projected), + size = (1000, 1000) # specify size in "pixels" +) +``` +The input point layer `cycle_hire_osm_projected` and the three variants of rasterizing it `ch_raster1`, `ch_raster2`, and `ch_raster3` are shown in @fig-rasterize-points. + +```{julia} +#| label: fig-rasterize-points +#| fig-cap: Original data and three variants of point rasterization +#| layout-ncol: 2 +#| fig-subcap: +#| - Input points +#| - Presence/Absence +#| - Point counts +#| - Summed attribute values +# Input points +nonmissing_df = dropmissing(cycle_hire_osm_projected, [:capacity, :geom]) +f, a, p = scatter(nonmissing_df.geom; color = nonmissing_df.capacity) +Colorbar(f[1, 2], p) +display(f) +# Presence/Absence +plot(ch_raster1) |> display +# Point counts +plot(ch_raster2) |> display +# Summed attribute values +plot(ch_raster3) +``` + +### Rasterizing lines and polygons {#sec-rasterizing-lines-and-polygons} + +Another dataset based on California's polygons and borders (created below) illustrates rasterization of lines. +There are three preliminary steps. +First, we subset the California polygon. + +```{julia} +california = us_states[ us_states[!, "NAME"] .== "California", :] +``` + +Second, we obtain the borders of the polygon as a `'MultiLineString' + +```{julia} +california_geom = only(california.geom) +california_borders = GI.MultiLineString(GI.LineString.(GI.getexterior.(GI.getgeom(california_geom))); crs = GI.crs(california_geom)) # TODO: make this a lot better.... +``` + +Finally, we rasterize `california_borders` on a grid with resolution of 0.5 degrees per pixel. + +```{julia} +california_raster1 = Rasters.rasterize( + last, + california_borders; + fill = 1, + res = 0.5, # degrees - this is in units of GI.crs(california_borders) + boundary = :touches, +) +``` + +Compare it to a polygon rasterization, with `all_touched=False` (the default), which selects only raster cells whose centroids are inside the selector polygon, as illustrated in @fig-rasterize-lines-polygons (right). + +```{julia} +california_raster2 = Rasters.rasterize( + last, + california; + geometrycolumn = :geom, + fill = 1, + res = 0.5, + boundary = :center, +) +``` + + +To illustrate which raster pixels are actually selected as part of rasterization, we also show them as points. +This also requires the following code section to calculate the points, which we explain in @sec-spatial-vectorization. + +::: {.panel-tabset} + +## DimPoints +```{julia} +dp = DimPoints(california_raster1) +``` + +## Constructing from lookups + +DimensionalData.jl (which underpins Rasters.jl) provides easy ways to get "lookups", i.e, axis index values, from a raster. + +Note that these lookups may encode intervals, points, or anything in between - so you should use shiftlocus or set to get the actual point values! DimPoints does this for you. + +But if you want to see how this can be done automatically, here you go. + +```{julia} +[(x, y) for x in dims(california_raster1, X), y in dims(california_raster1, Y)] +``` + +You can see that this encodes the same values as `dp` in the other tab. + +TODO: firm up the description here and add links. +::: + +@fig-rasterize-lines-polygons shows the input vector layer, the rasterization results, and the points `pnt`. + +```{julia} +#| label: fig-rasterize-lines-polygons +#| fig-cap: Examples of line and polygon rasterization +#| layout-ncol: 2 +#| fig-subcap: +#| - Line rasterization w/ `boundary=:touches` +#| - Polygon rasterization w/ `boundary=:center` +# Line rasterization +fig, ax, plt = plot(california_raster1; colormap = cgrad(:Set3; categorical = true)) +lines!(ax, california_borders; color = :darkgrey, linewidth = 1) +scatter!(ax, vec(dp); markersize = 3, color = :black) +display(fig) +# Polygon rasterization +fig, ax, plt = plot(california_raster2; colormap = cgrad(:Set3; categorical = true)) +lines!(ax, california_borders; color = :darkgrey, linewidth = 1) +scatter!(ax, vec(dp); markersize = 3, color = :black) +fig +``` + +## Spatial vectorization {#sec-spatial-vectorization} + +Spatial vectorization is the counterpart of rasterization (@sec-rasterization). +It involves converting spatially continuous raster data into spatially discrete vector data such as points, lines or polygons. +There are three standard methods to convert a raster to a vector layer, which we cover next: + +- Raster to polygons (@sec-raster-to-polygons)---converting raster cells to rectangular polygons, representing pixel areas +- Raster to points (@sec-raster-to-points)---converting raster cells to points, representing pixel centroids +- Raster to contours (@sec-raster-to-contours) + +Let us demonstrate all three in the given order. + +### Raster to polygons {#sec-raster-to-polygons} + +Rasters.jl does not currently have a function to convert a raster to a feature collection with one polygon per pixel or cell. This is a similar situation in Python with `rasterio`. + +GeometryOps.jl offers a `polygonize` function that returns a feature collection of polygons, where each feature has a `value` property that encodes the value of all pixels within that polygon. Each polygon contains pixels with the same value. + +```{julia} +fc = GO.polygonize(src_grain) +``` + +We can convert this "feature collection" to a `DataFrame` as follows. That makes it a lot easier to work with. + +```{julia} +df = DataFrame([GI.properties(f) for f in GI.getfeature(fc)]) +df.geometry = [GI.geometry(f) for f in GI.getfeature(fc)] +df +``` + +The polygon layer `df` is shown in @fig-raster-to-polygons. + +```{julia} +#| label: fig-raster-to-polygons +#| fig-cap: '`grain.tif` converted to a polygon layer' +f, a, p = poly(df.geometry; color = df.value, strokecolor = :black, strokewidth = 0.75) +Colorbar(f[1, 2], p) +f +``` + + +As highlighted using `edgecolor='black'`, neighboring pixels sharing the same raster value are dissolved into larger polygons. + +One [suggestion](https://gis.stackexchange.com/questions/455980/vectorizing-all-pixels-as-separate-polygons-using-rasterio#answer-456251) is to add unique values between `0` and `0.9999` to all pixels, convert to polygons, and then get back to the original values using `floor`. + +### Raster to points {#sec-raster-to-points} + +To transform a raster to points, Rasters.jl provides the `Rasters.DimTable` constructor, which converts a raster into a lazy, table-like form. This can be converted directly to a `DataFrame`, or operated on independently. + +```{julia} +dt = DimTable(Raster("output/elev.tif")) +``` + +Notice that this has three columns, `:X`, `:Y`, and `:layer1`, corresponding to the pixel centroids and elevation values. But what if we want to treat the X and Y dimensionas as point geometries? + +`DimTable` has a `mergedims` keyword argument for this, which allows us to merge the X and Y dimensions into a single dimension. + +```{julia} +dt = DimTable(Raster("output/elev.tif"), mergedims = (X, Y)) +``` + +This has created a `DimTable` with a column `:XY`, which contains the pixel centroids as point-like objects. We can convert this to a `DataFrame`, set some metadata to indicate that geometry is in `:XY`, and plot the result. + +```{julia} +df = DataFrame(dt) +DataFrames.metadata!(df, "GEOINTERFACE:geometrycolumns", (:XY,); style = :note) +df +``` + +```{julia} +scatter(df.XY; color = df.layer1) +``` + +We can even save this to a file trivially easily: + +```{julia} +GeoDataFrames.write("output/elev.gpkg", df) +GeoDataFrames.read("output/elev.gpkg") +``` + + +@fig-raster-to-points shows the input raster and the resulting point layer. + +```{julia} +#| label: fig-raster-to-points +#| fig-cap: Raster and point representation of `elev.tif` +#| layout-ncol: 2 +#| fig-subcap: +#| - Input raster +#| - Points +# Input raster +fig, ax, plt = plot(src_elev) +scatter!(ax, df.XY; color = df.layer1) +display(fig) +# Points +fig, ax, plt = plot(src_elev; alpha = 0.1) +scatter!(ax, df.XY; color = df.layer1, strokecolor = :black, strokewidth = 1) +fig +``` + +TODO: nodata pixels + +### Raster to contours {#sec-raster-to-contours} + +Another common type of spatial vectorization is the creation of contour lines, representing lines of continuous height or temperatures (*isotherms*), for example. +We will use a real-world digital elevation model (DEM) because the artificial raster `elev.tif` produces parallel lines (task for the reader: verify this and explain why this happens). +*Plotting* contour lines is straightforward, using the `contour` or `contourf` functions in **Makie**. + +```{julia} +f, ax, plt = contour(src_dem; levels = LinRange(0, 1200, 50), color = :black) +``` + +TODO: gdal_contour (via ArchGDAL??) + +It would be good to show how to use the provided GDAL executables though... + + +## Distance to nearest geometry {#sec-distance-to-nearest-geometry} + +Calculating a raster of distances to the nearest geometry is an example of a "global" raster operation (@sec-global-operations-and-distances). +To demonstrate it, suppose that we need to calculate a raster representing the distance to the nearest coast in New Zealand. +This example also wraps many of the concepts introduced in this chapter and in previous chapters, such as raster aggregation (@sec-raster-agg-disagg), raster conversion to points (@sec-raster-to-points), and rasterizing points (@sec-rasterizing-points). + +For the coastline, we will dissolve the New Zealand administrative division polygon layer and "extract" the boundary as a `'MultiLineString'` geometry. + +```{julia} +using LibGEOS +coastline_linestrings = GI.getexterior.(GI.getgeom(LibGEOS.unaryUnion(GI.GeometryCollection(nz.geom)))) .|> x -> GI.LineString(collect(GI.getpoint(x))) +coastline = GI.MultiLineString(coastline_linestrings) +coastline = GO.reproject(coastline; target_crs = GI.crs(src_nz_elev), source_crs = GI.crs(nz)) +``` + +For a "template" raster, we will aggregate the New Zealand DEM, in the `nz_elev.tif` file, to 5 times coarser resolution. +The code section below follows the aggeregation example in @sec-raster-agg-disagg. + +```{julia} +factor = 2/10 +r = Rasters.resample(src_nz_elev; size = round.(Int, size(src_nz_elev) .* factor), method = :average) +``` + +The resulting raster `r` and the lines layer `coastline` are plotted in @fig-raster-distances1. +Note that the raster values are average elevations based on $5 \times 5$ pixels, but this is irrelevant for the subsequent calculation; the raster is going to be used as a template, and all of its values will be replaced with distances to coastline (@fig-raster-distances2). + + +```{julia} +#| label: fig-raster-distances1 +#| fig-cap: Template to calculate distance to nearest geometry (coastlines, in red) +fig, ax, plt = plot(r) +lines!(ax, coastline; color = :red) +fig +``` + +To calculate the actual distances, we must convert each pixel to a vector (point) geometry. +For this purpose, we use the technique demonstrated in @sec-raster-to-points, but simply select the pixels that are not `missing`. + +```{julia} +dp = DimPoints(r) +nonmissing_points = dp[r .=== missingval(r)] +``` + +The result is a vector of 2-tuples, which are recognized as GeoInterface point geometries. + +We can compute the Cartesian distance from each point to the nearest line in the `coastline` multilinestring using the `distance` method from **GeometryOps**. + +```{julia} +distances = GO.distance.((coastline,), nonmissing_points) +``` + +Finally, we rasterize (see @sec-rasterizing-points) the distances into our raster template. + +```{julia} +img = Rasters.rasterize( + last, + nonmissing_points; + to = r, + fill = distances, +) +``` + +The final result, a raster of distances to the nearest coastline, is shown in @fig-raster-distances2. + +```{julia} +#| label: fig-raster-distances2 +#| fig-cap: Distance to nearest coastline in New Zealand +fig, ax, plt = plot(img) +lines!(ax, coastline; color = :red) +Colorbar(fig[1, 2], plt; label = "Distance to coastline (m)") +fig +``` + + + diff --git a/chapters/06-reproj.qmd b/chapters/06-reproj.qmd index d677107..888748b 100644 --- a/chapters/06-reproj.qmd +++ b/chapters/06-reproj.qmd @@ -1,5 +1,7 @@ --- engine: julia +project: + execute-dir: project --- # Reprojecting geographic data {#sec-reproj-geo-data} diff --git a/chapters/07-read-write.qmd b/chapters/07-read-write.qmd index 3627e78..1d52cf3 100644 --- a/chapters/07-read-write.qmd +++ b/chapters/07-read-write.qmd @@ -1,5 +1,7 @@ --- engine: julia +project: + execute-dir: project --- # Geographic data I/O {#sec-read-write} diff --git a/chapters/08-mapping.qmd b/chapters/08-mapping.qmd index be7adee..fc67eca 100644 --- a/chapters/08-mapping.qmd +++ b/chapters/08-mapping.qmd @@ -1,5 +1,7 @@ --- engine: julia +project: + execute-dir: project --- # Making maps with Julia {#sec-map-making} diff --git a/data/aut.tif b/data/aut.tif new file mode 100644 index 0000000..43df069 Binary files /dev/null and b/data/aut.tif differ diff --git a/data/ch.tif b/data/ch.tif new file mode 100644 index 0000000..6ed0374 Binary files /dev/null and b/data/ch.tif differ diff --git a/data/coffee_data.csv b/data/coffee_data.csv new file mode 100644 index 0000000..4d1baf0 --- /dev/null +++ b/data/coffee_data.csv @@ -0,0 +1,48 @@ +"name_long","coffee_production_2016","coffee_production_2017" +"Angola",NA,NA +"Bolivia",3,4 +"Brazil",3277,2786 +"Burundi",37,38 +"Cameroon",8,6 +"Central African Republic",NA,NA +"Congo, Dem. Rep. of",4,12 +"Colombia",1330,1169 +"Costa Rica",28,32 +"Côte d'Ivoire",114,130 +"Cuba",NA,NA +"Dominican Republic",1,NA +"Ecuador",87,62 +"El Salvador",5,8 +"Ethiopia",215,283 +"Gabon",NA,NA +"Ghana",1,1 +"Guatemala",58,70 +"Honduras",149,165 +"India",453,566 +"Indonesia",742,360 +"Jamaica",NA,1 +"Kenya",60,50 +"Liberia",NA,NA +"Madagascar",3,5 +"Malawi",3,1 +"Mexico",151,220 +"Nepal",NA,NA +"Nicaragua",42,45 +"Panama",3,3 +"Papua New Guinea",114,74 +"Paraguay",NA,NA +"Peru",585,625 +"Philippines",2,NA +"Rwanda",36,42 +"Sierra Leone",1,3 +"Tanzania",81,66 +"Thailand",39,16 +"Timor-Leste",14,2 +"Togo",2,3 +"Uganda",408,443 +"Venezuela",NA,NA +"Vietnam",1844,1700 +"Yemen",4,1 +"Zambia",3,NA +"Zimbabwe",1,1 +"Others",23,26 diff --git a/data/cycle_hire.gpkg b/data/cycle_hire.gpkg new file mode 100644 index 0000000..8fc95b6 Binary files /dev/null and b/data/cycle_hire.gpkg differ diff --git a/data/cycle_hire_osm.gpkg b/data/cycle_hire_osm.gpkg new file mode 100644 index 0000000..0db7d81 Binary files /dev/null and b/data/cycle_hire_osm.gpkg differ diff --git a/data/cycle_hire_xy.csv b/data/cycle_hire_xy.csv new file mode 100644 index 0000000..97b3856 --- /dev/null +++ b/data/cycle_hire_xy.csv @@ -0,0 +1,743 @@ +"X","Y","id","name","area","nbikes","nempty" +-0.109970527,51.52916347,1,"River Street","Clerkenwell",4,14 +-0.197574246,51.49960695,2,"Phillimore Gardens","Kensington",2,34 +-0.084605692,51.52128377,3,"Christopher Street","Liverpool Street",0,32 +-0.120973687,51.53005939,4,"St. Chad's Street","King's Cross",4,19 +-0.156876,51.49313,5,"Sedding Street","Sloane Square",15,12 +-0.144228881,51.51811784,6,"Broadcasting House","Marylebone",0,18 +-0.1680743,51.53430039,7,"Charlbert Street","St. John's Wood",15,0 +-0.170134484,51.52834133,8,"Lodge Road","St. John's Wood",5,13 +-0.096440751,51.5073853,9,"New Globe Walk","Bankside",3,16 +-0.092754157,51.50597426,10,"Park Street","Bankside",1,17 +-0.122502346,51.52395143,11,"Brunswick Square","Bloomsbury",0,23 +-0.130431727,51.52168078,12,"Malet Street","Bloomsbury",0,47 +-0.136039674,51.51991453,13,"Scala Street","Fitzrovia",0,20 +-0.123616824,51.52994371,14,"Belgrove Street","King's Cross",12,5 +-0.127854211,51.51772703,15,"Great Russell Street","Bloomsbury",0,26 +-0.125979294,51.52635795,16,"Cartwright Gardens","Bloomsbury",8,13 +-0.109006325,51.5216612,17,"Hatton Wall","Holborn",4,22 +-0.12221963,51.51477076,18,"Drury Lane","Covent Garden",1,26 +-0.131161087,51.52505093,19,"Taviton Street","Bloomsbury",6,23 +-0.135273468,51.52773634,20,"Drummond Street","Euston",19,9 +-0.13884627,51.53007835,21,"Hampstead Road (Cartmel)","Euston",8,8 +-0.114079481,51.5222641,22,"Northington Street","Holborn",2,16 +-0.119123345,51.51943538,23,"Red Lion Square","Holborn",2,14 +-0.124678402,51.51908011,24,"British Museum","Bloomsbury",0,35 +-0.132250369,51.5288338,25,"Doric Way","Somers Town",17,14 +-0.11829517,51.52728093,26,"Ampton Street","Clerkenwell",10,11 +-0.107927706,51.51382102,27,"Bouverie Street","Temple",0,33 +-0.143613641,51.52351808,28,"Bolsover Street","Fitzrovia",0,18 +-0.193487,51.513735,29,"Hereford Road","Bayswater",10,11 +-0.093421615,51.52915444,30,"Windsor Terrace","Hoxton",17,7 +-0.083353323,51.52953709,31,"Fanshaw Street","Hoxton",21,13 +-0.084439283,51.52469624,32,"Leonard Circus","Shoreditch",7,36 +-0.129386874,51.5341235,34,"Pancras Road","King's Cross",12,4 +-0.184980612,51.50173726,36,"De Vere Gardens","Kensington",4,24 +-0.192369256,51.49159394,37,"Penywern Road","Earl's Court",15,2 +-0.197245586,51.4973875,38,"Abingdon Villas","Kensington",4,13 +-0.078130921,51.5263778,39,"Shoreditch High Street","Shoreditch",23,17 +-0.0755789,51.52127071,40,"Commercial Street","Shoreditch",13,3 +-0.083911168,51.52001715,41,"Sun Street","Liverpool Street",0,24 +-0.093903825,51.53099181,42,"Wenlock Road","Hoxton",27,1 +-0.157183945,51.52026,43,"Crawford Street","Marylebone",17,1 +-0.144165239,51.51073687,44,"Bruton Street","Mayfair",0,21 +-0.162298,51.522511,45,"Boston Place","Marylebone",23,2 +-0.06691,51.507131,46,"Nesham Street","Wapping",15,0 +-0.183846408,51.52334476,47,"Warwick Avenue Station","Maida Vale",19,0 +-0.099141408,51.51248445,48,"Godliman Street","St. Paul's",0,25 +-0.145904427,51.50706909,49,"Curzon Street","Mayfair",0,16 +-0.087459376,51.52867339,50,"East Road","Hoxton",5,22 +-0.104298194,51.52671796,51,"Finsbury Library","Finsbury",8,21 +-0.094934859,51.52295439,52,"Roscoe Street","St. Luke's",1,17 +-0.143495266,51.5099923,53,"Grafton Street","Mayfair",0,18 +-0.094475072,51.52174785,54,"Golden Lane","Barbican",0,25 +-0.086685542,51.51707521,55,"Finsbury Circus","Liverpool Street",0,29 +-0.154701411,51.52058381,56,"Paddington Street","Marylebone",10,2 +-0.120202614,51.52334672,57,"Guilford Street","Bloomsbury",0,38 +-0.079248081,51.52452699,58,"New Inn Yard","Shoreditch",9,10 +-0.114329032,51.53176825,59,"Rodney Street","Angel",4,25 +-0.172190727,51.52644828,60,"Lisson Grove","St. John's Wood",8,10 +-0.089446947,51.49738251,61,"Great Dover Street","Borough",29,3 +-0.106323685,51.4907579,62,"Cotton Garden Estate","Kennington",14,10 +-0.089782579,51.53089041,63,"Murray Grove","Hoxton",17,10 +-0.124749274,51.50946212,64,"William IV Street","Strand",8,13 +-0.13518856,51.52522753,65,"Gower Place","Euston",0,17 +-0.108657431,51.51795029,66,"Holborn Circus","Holborn",0,37 +-0.108028472,51.51882555,67,"Hatton Garden","Holborn",1,27 +-0.116688468,51.52059681,68,"Theobalds Road","Holborn",0,24 +-0.134407652,51.5262363,69,"Euston Road","Euston",3,20 +-0.117069978,51.53136059,70,"Calshot Street","King's Cross",24,0 +-0.098850915,51.5154186,71,"Newgate Street","St. Paul's",4,28 +-0.108340165,51.52352001,72,"Farringdon Lane","Clerkenwell",8,8 +-0.088486188,51.52572618,73,"Old Street Station","St. Luke's",1,36 +-0.124469948,51.48591714,74,"Vauxhall Cross","Vauxhall",14,2 +-0.105480698,51.53219984,75,"Torrens Street","Angel",3,16 +-0.144083893,51.52559505,76,"Longford Street","Regent's Park",5,16 +-0.124121774,51.52341837,77,"Russell Square Station","Bloomsbury",14,10 +-0.099489485,51.52486887,78,"Sadlers Sports Centre","Finsbury",6,10 +-0.102091246,51.50069361,80,"Webber Street","Southwark",10,14 +-0.141327271,51.52025302,81,"Great Titchfield Street","Fitzrovia",0,19 +-0.111257,51.514274,82,"Chancery Lane","Holborn",0,15 +-0.131510949,51.50963938,83,"Panton Street","West End",0,19 +-0.111778348,51.51593725,84,"Breams Buildings","Holborn",0,25 +-0.078600401,51.50064702,85,"Tanner Street","Bermondsey",12,6 +-0.115156562,51.48947903,86,"Sancroft Street","Vauxhall",19,5 +-0.079684557,51.51646835,87,"Devonshire Square","Liverpool Street",0,16 +-0.132053392,51.51858757,88,"Bayley Street","Bloomsbury",0,25 +-0.123509611,51.5262503,89,"Tavistock Place","Bloomsbury",11,5 +-0.139174593,51.53301907,90,"Harrington Square","Camden Town",18,9 +-0.111014912,51.49368637,91,"Walnut Tree Walk","Vauxhall",18,1 +-0.100440521,51.49889832,92,"Borough Road","Elephant & Castle",26,15 +-0.109025404,51.53440868,93,"Cloudesley Road","Angel",19,18 +-0.085814489,51.49506109,94,"Bricklayers Arms","Borough",27,1 +-0.097340162,51.5208417,95,"Aldersgate Street","Barbican",0,14 +-0.078505384,51.53095071,96,"Falkirk Street","Hoxton",16,9 +-0.183834706,51.49792478,97,"Gloucester Road (North)","Kensington",11,7 +-0.138231303,51.52554222,98,"Hampstead Road","Euston",20,34 +-0.158264483,51.51457763,99,"Old Quebec Street","Marylebone",0,16 +-0.122806861,51.49043573,100,"Albert Embankment","Vauxhall",16,8 +-0.0929401,51.51155322,101,"Queen Street","Bank",3,18 +-0.076793375,51.51340693,102,"Jewry Street","Aldgate",0,17 +-0.192538767,51.50472376,103,"Vicarage Gate","Kensington",9,9 +-0.077121322,51.51159481,104,"Crosswall","Tower",14,18 +-0.190240716,51.51552971,105,"Westbourne Grove","Bayswater",15,7 +-0.147301667,51.51410514,106,"Woodstock Street","Mayfair",0,21 +-0.096317627,51.52600832,107,"Finsbury Leisure Centre","St. Luke's",9,9 +-0.132102166,51.49812559,108,"Abbey Orchard Street","Westminster",1,27 +-0.132328837,51.51563144,109,"Soho Square","Soho",0,29 +-0.172528678,51.53304322,110,"Wellington Road","St. John's Wood",10,7 +-0.157275636,51.5100172,111,"Park Lane","Hyde Park",1,26 +-0.105270275,51.51580998,112,"Stonecutter Street","Holborn",2,43 +-0.183289032,51.49646288,113,"Gloucester Road (Central)","South Kensington",13,3 +-0.158963647,51.52451738,114,"Park Road (Baker Street)","Regent's Park",9,11 +-0.073537654,51.51423368,115,"Braham Street","Aldgate",1,31 +-0.141423695,51.51449962,116,"Little Argyll Street","West End",0,21 +-0.114934001,51.49288067,117,"Lollard Street","Vauxhall",20,5 +-0.13547809,51.49582705,118,"Rochester Row","Westminster",12,1 +-0.090847761,51.52589324,119,"Bath Street","St. Luke's",2,16 +-0.093080779,51.51573534,120,"The Guildhall","Guildhall",0,17 +-0.156166631,51.51891348,121,"Baker Street","Marylebone",0,20 +-0.078869751,51.52111369,122,"Norton Folgate","Liverpool Street",3,18 +-0.104724625,51.52836014,123,"St. John Street","Finsbury",5,13 +-0.150905245,51.49654462,124,"Eaton Square","Belgravia",5,14 +-0.094524319,51.50069491,125,"Borough High Street","The Borough",3,17 +-0.096496865,51.51782144,126,"Museum of London","Barbican",0,52 +-0.09388536,51.51700801,127,"Wood Street","Guildhall",0,16 +-0.185296516,51.49536226,128,"Emperor's Gate","South Kensington",21,1 +-0.137043852,51.5118973,129,"Golden Square","Soho",0,17 +-0.075459482,51.50950627,130,"Tower Gardens","Tower",9,14 +-0.136792671,51.53300545,131,"Eversholt Street","Camden Town",12,4 +-0.074754872,51.52364804,132,"Bethnal Green Road","Shoreditch",14,22 +-0.191462381,51.50136494,133,"Derry Street","Kensington",0,17 +-0.06797,51.504904,134,"Wapping High Street","Wapping",20,0 +-0.104708922,51.52326004,135,"Clerkenwell Green","Clerkenwell",2,19 +-0.097441687,51.51196176,136,"Queen Victoria Street","St. Paul's",0,32 +-0.153319609,51.49087475,137,"Bourne Street","Belgravia",8,8 +-0.157436972,51.51227622,138,"Green Street","Mayfair",0,19 +-0.117974901,51.49488108,139,"Lambeth Road","Vauxhall",6,12 +-0.085634242,51.52096262,140,"Finsbury Square","Moorgate",0,33 +-0.147203711,51.51530805,141,"Chapel Place","Marylebone",0,29 +-0.198286569,51.49372451,142,"West Cromwell Road","Earl's Court",19,4 +-0.161203828,51.4968865,143,"Pont Street","Knightsbridge",15,9 +-0.111435796,51.48894022,144,"Kennington Cross","Kennington",42,5 +-0.202759212,51.50074359,145,"Ilchester Place","Kensington",19,4 +-0.129361842,51.48836528,146,"Vauxhall Bridge","Pimlico",32,3 +-0.11614642,51.51494305,147,"Portugal Street","Holborn",4,11 +-0.138364847,51.49211134,148,"Tachbrook Street","Victoria",11,3 +-0.110683213,51.48478899,149,"Kennington Road Post Office","Oval",17,1 +-0.168917077,51.49705603,150,"Holy Trinity Brompton","Knightsbridge",1,27 +-0.201554966,51.51213691,151,"Chepstow Villas","Notting Hill",3,22 +-0.101536865,51.49217002,152,"Hampton Street","Walworth",16,5 +-0.174292825,51.51183419,153,"Bayswater Road","Hyde Park",21,5 +-0.11282408,51.50379168,154,"Waterloo Station 3","Waterloo",26,8 +-0.191933711,51.49586666,155,"Lexham Gardens","Kensington",12,4 +-0.092921165,51.49443626,156,"New Kent Road","Borough",30,2 +-0.193068385,51.50039792,157,"Wright's Lane","Kensington",10,26 +-0.196170309,51.49085368,158,"Trebovir Road","Earl's Court",7,11 +-0.137841333,51.51461995,159,"Great Marlborough Street","Soho",0,38 +-0.131773845,51.50663341,160,"Waterloo Place","St. James's",0,20 +-0.141334487,51.49234577,161,"Guildhouse Street","Victoria",4,12 +-0.121328408,51.51760685,162,"Southampton Place","Holborn",0,20 +-0.167894973,51.4931848,163,"Sloane Avenue","Knightsbridge",14,16 +-0.183118788,51.515607,164,"Cleveland Gardens","Bayswater",12,4 +-0.183716959,51.517932,165,"Orsett Terrace","Bayswater",2,13 +-0.159237081,51.50185512,166,"Seville Street","Knightsbridge",0,26 +-0.147624377,51.49395092,167,"Eccleston Place","Victoria",3,16 +-0.195455928,51.50040123,168,"Argyll Road","Kensington",3,14 +-0.165164288,51.51474612,169,"Porchester Place","Paddington",12,5 +-0.108068155,51.52784273,170,"Hardwick Street","Clerkenwell",8,22 +-0.186753859,51.4916156,171,"Collingham Gardens","Earl's Court",11,3 +-0.173715911,51.49121192,172,"Sumner Place","South Kensington",4,15 +-0.113001,51.50486,173,"Waterloo Road","South Bank",11,4 +-0.115163,51.512529,174,"Strand","Strand",12,22 +-0.0811189,51.52174384,175,"Appold Street","Liverpool Street",0,24 +-0.188098863,51.51791921,176,"Gloucester Terrace","Bayswater",23,0 +-0.140947636,51.49616092,177,"Ashley Place","Victoria",17,8 +-0.141923621,51.48985626,178,"Warwick Square","Pimlico",18,1 +-0.153645496,51.5129118,180,"North Audley Street","Mayfair",0,16 +-0.152317537,51.49941247,181,"Belgrave Square","Belgravia",2,19 +-0.165842551,51.52202903,182,"Bell Street","Marylebone",8,10 +-0.14521173,51.52071513,184,"Portland Place","Marylebone",1,33 +-0.140741432,51.48805753,185,"Alderney Street","Pimlico",14,0 +-0.175810943,51.51733558,186,"South Wharf Road","Paddington",11,5 +-0.178433004,51.49247977,187,"Queen's Gate (South)","South Kensington",14,10 +-0.164393768,51.5165179,188,"Nutford Place","Marylebone",1,17 +-0.109914711,51.53166681,189,"Claremont Square","Angel",4,13 +-0.132845681,51.48997562,190,"Rampayne Street","Pimlico",17,4 +-0.153520935,51.50311799,191,"Hyde Park Corner","Hyde Park",0,23 +-0.133201961,51.51251523,192,"Wardour Street","Soho",0,15 +-0.100186337,51.50581776,193,"Bankside Mix","Bankside",17,43 +-0.091773776,51.50462759,194,"Hop Exchange","The Borough",22,32 +-0.106237501,51.50724437,195,"Milroy Walk","South Bank",8,21 +-0.098497684,51.50368837,196,"Union Street","The Borough",13,3 +-0.111606696,51.50556905,197,"Stamford Street","South Bank",11,15 +-0.082989638,51.51048489,199,"Great Tower Street","Monument",5,16 +-0.066078037,51.51492456,200,"LMU Commercial Road","Whitechapel",11,2 +-0.161113413,51.5225965,201,"Dorset Square","Marylebone",15,0 +-0.06954201,51.51236389,202,"Leman Street","Aldgate",6,30 +-0.100791005,51.51821864,203,"West Smithfield Rotunda","Farringdon",6,9 +-0.112432615,51.52659961,204,"Margery Street","Clerkenwell",8,10 +-0.06275,51.518144,205,"New Road 2","Whitechapel",13,5 +-0.062697,51.518154,206,"New Road 1","Whitechapel",16,1 +-0.153194766,51.50135267,207,"Grosvenor Crescent","Belgravia",1,17 +-0.166304359,51.52505151,208,"Mallory Street","Marylebone",8,12 +-0.165101392,51.49358391,209,"Denyer Street","Knightsbridge",22,8 +-0.151926305,51.51681444,210,"Hinde Street","Marylebone",0,21 +-0.158105512,51.49464523,211,"Cadogan Place","Knightsbridge",22,11 +-0.199004026,51.50658458,212,"Campden Hill Road","Notting Hill",9,8 +-0.149569201,51.50274025,213,"Wellington Arch","Hyde Park",16,19 +-0.130504336,51.52683806,214,"Endsleigh Gardens","Euston",21,11 +-0.088285377,51.51906932,215,"Moorfields","Moorgate",0,53 +-0.181190899,51.49094565,216,"Old Brompton Road","South Kensington",13,17 +-0.082422399,51.51615461,217,"Wormwood Street","Liverpool Street",1,14 +-0.170194408,51.48971651,218,"St. Luke's Church","Chelsea",12,8 +-0.19039362,51.49016361,219,"Bramham Gardens","Earl's Court",15,12 +-0.166485083,51.49066456,220,"Chelsea Green","Chelsea",17,9 +-0.13045856,51.49481649,221,"Horseferry Road","Westminster",12,3 +-0.155349725,51.50275704,222,"Knightsbridge","Hyde Park",0,43 +-0.090220911,51.49148474,223,"Rodney Road","Walworth",18,5 +-0.188129731,51.51476963,224,"Whiteley's","Bayswater",14,0 +-0.196422,51.50935342,225,"Notting Hill Gate Station","Notting Hill",5,25 +-0.131961389,51.50844614,226,"Charles II Street","West End",0,23 +-0.115480888,51.52891573,227,"Great Percy Street","Clerkenwell",17,2 +-0.134621209,51.50742485,228,"St. James's Square","St. James's",0,38 +-0.123179697,51.50654321,229,"Whitehall Place","Strand",17,7 +-0.103137426,51.50669284,230,"Poured Lines","Bankside",22,8 +-0.17873226,51.49396755,231,"Queen's Gate (Central)","South Kensington",12,18 +-0.112753217,51.51501025,232,"Carey Street","Holborn",0,16 +-0.130699733,51.50777049,233,"Pall Mall East","West End",0,22 +-0.106992706,51.53450449,234,"Liverpool Road (N1 Centre)","Angel",21,3 +-0.110889274,51.49571828,235,"Kennington Road","Vauxhall",35,1 +-0.073438925,51.51838043,236,"Fashion Street","Whitechapel",10,18 +-0.067176443,51.5084448,237,"Vaughan Way","Wapping",22,12 +-0.175116099,51.5233534,238,"Frampton Street","Paddington",27,5 +-0.138019439,51.52443845,239,"Warren Street Station","Euston",1,25 +-0.10569204,51.50545935,240,"Colombo Street","Southwark",9,5 +-0.151359288,51.52200801,242,"Beaumont Street","Marylebone",5,17 +-0.139625122,51.49096258,243,"Gloucester Street","Pimlico",17,6 +-0.128585022,51.51611887,244,"Earnshaw Street","Covent Garden",0,17 +-0.142207481,51.4853572,245,"Grosvenor Road","Pimlico",16,11 +-0.099994052,51.52285301,246,"Berry Street","Clerkenwell",1,38 +-0.168314,51.530052,247,"St. John's Wood Church","Regent's Park",26,21 +-0.170279555,51.50645179,248,"Triangle Car Park","Hyde Park",19,8 +-0.096191134,51.49859784,249,"Harper Road","Borough",28,14 +-0.162727,51.489932,250,"Royal Avenue 1","Chelsea",0,8 +-0.079249,51.518908,251,"Brushfield Street","Liverpool Street",0,32 +-0.116542278,51.5046364,252,"Jubilee Gardens","South Bank",26,3 +-0.086379717,51.53404294,253,"Shoreditch Park","Hoxton",30,0 +-0.106408455,51.53051587,254,"Chadwell Street","Angel",11,7 +-0.179592915,51.52557531,255,"Clifton Road","Maida Vale",21,0 +-0.116764211,51.51362054,256,"Houghton Street","Strand",0,15 +-0.154907218,51.52248185,257,"Westminster University","Marylebone",11,4 +-0.178656971,51.50143293,258,"Kensington Gore","Knightsbridge",8,15 +-0.123247648,51.50494561,259,"Embankment (Horse Guards)","Westminster",0,29 +-0.135580879,51.5136846,260,"Broadwick Street","Soho",0,18 +-0.191351186,51.5134891,261,"Princes Square","Bayswater",16,0 +-0.103132904,51.49874469,262,"LSBU (Borough Road)","Elephant & Castle",27,8 +-0.080660083,51.51422502,263,"St. Mary Axe","Aldgate",0,19 +-0.109256828,51.52644342,264,"Tysoe Street","Clerkenwell",2,16 +-0.169249375,51.51595344,265,"Southwick Street","Paddington",14,3 +-0.180246101,51.50102668,266,"Queen's Gate (North)","Kensington",0,19 +-0.132224622,51.49206037,267,"Regency Street","Westminster",7,12 +-0.144132875,51.49320445,268,"Belgrave Road","Victoria",19,10 +-0.089740764,51.50082346,269,"Empire Square","The Borough",32,13 +-0.122492418,51.4863434,270,"Kennington Lane Rail Bridge","Vauxhall",21,10 +-0.156285395,51.53583617,271,"London Zoo","Regents Park",11,21 +-0.110699309,51.50144456,272,"Baylis Road","Waterloo",4,16 +-0.114686385,51.50613324,273,"Belvedere Road","South Bank",19,17 +-0.20528437,51.49671237,274,"Warwick Road","Olympia",18,18 +-0.092176447,51.52004497,275,"Barbican Centre","Barbican",0,19 +-0.084985356,51.50930161,276,"Lower Thames Street","Monument",0,23 +-0.191496313,51.50315739,277,"Kensington Church Street","Kensington",7,8 +-0.07962099,51.5034938,278,"Tooley Street","Bermondsey",4,12 +-0.176645823,51.51862243,279,"North Wharf Road","Paddington",5,20 +-0.162418,51.490083,280,"Royal Avenue 2","Chelsea",1,8 +-0.127575233,51.49580589,281,"Smith Square","Westminster",4,12 +-0.059642081,51.51906446,282,"Royal London Hospital","Whitechapel",39,2 +-0.112031483,51.49914063,284,"Lambeth North Station","Waterloo",11,9 +-0.174653609,51.5272947,286,"St. John's Wood Road","St. John's Wood",16,19 +-0.128377673,51.52367314,287,"Bedford Way","Bloomsbury",0,23 +-0.147478734,51.49236962,288,"Elizabeth Bridge","Victoria",18,16 +-0.151296092,51.50923022,289,"South Audley Street","Mayfair",0,15 +-0.175488803,51.51678023,290,"Winsland Street","Paddington",7,5 +-0.138089062,51.48483991,291,"Claverton Street","Pimlico",27,4 +-0.165471605,51.49888404,292,"Montpelier Street","Knightsbridge",0,15 +-0.209494128,51.49815779,293,"Kensington Olympia Station","Olympia",8,17 +-0.135635511,51.488226,294,"St. George's Square","Pimlico",14,1 +-0.092762704,51.50029631,295,"Swan Street","The Borough",21,6 +-0.190603326,51.49363156,296,"Knaresborough Place","Earl's Court",13,5 +-0.106000855,51.49612799,297,"Geraldine Street","Elephant & Castle",10,6 +-0.074189225,51.50227992,298,"Curlew Street","Shad Thames",16,4 +-0.136928582,51.49398524,299,"Vincent Square","Westminster",6,11 +-0.172729559,51.50501351,300,"Serpentine Car Park","Hyde Park",13,2 +-0.148105415,51.51475963,301,"Marylebone Lane","Marylebone",0,24 +-0.216573,51.466907,302,"Putney Pier","Wandsworth",18,10 +-0.158456089,51.50295379,303,"Albert Gate","Hyde Park",0,26 +-0.16209757,51.51211869,304,"Cumberland Gate","Hyde Park",7,11 +-0.115853961,51.48677988,305,"Kennington Lane Tesco","Vauxhall",10,5 +-0.135025698,51.51816295,306,"Rathbone Street","Fitzrovia",1,15 +-0.187842717,51.50990837,307,"Black Lion Gate","Kensington Gardens",20,1 +-0.085666316,51.49907558,308,"Long Lane","Bermondsey",20,0 +-0.119047563,51.50963123,309,"Embankment (Savoy)","Strand",1,40 +-0.116911864,51.4908679,310,"Black Prince Road","Vauxhall",9,8 +-0.140485596,51.51918144,311,"Foley Street","Fitzrovia",1,23 +-0.176770502,51.53088935,312,"Grove End Road","St. John's Wood",17,2 +-0.138072691,51.51734403,313,"Wells Street","Fitzrovia",1,37 +-0.083159352,51.50088934,314,"Tyers Gate","Bermondsey",25,11 +-0.153463612,51.52536703,315,"The Tennis Courts","Regent's Park",5,11 +-0.141943703,51.49768448,316,"Cardinal Place","Victoria",22,1 +-0.093913472,51.49679128,317,"Dickens Square","Borough",24,6 +-0.138846453,51.51004801,318,"Sackville Street","Mayfair",0,17 +-0.088542771,51.52702563,319,"Baldwin Street","St. Luke's",2,19 +-0.139956043,51.49357351,320,"Queen Mother Sports Centre","Victoria",21,5 +-0.081608045,51.49785559,321,"Bermondsey Street","Bermondsey",22,1 +-0.073955,51.526293,322,"Palissy Street","Shoreditch",11,12 +-0.083067,51.523196,323,"Clifton Street","Shoreditch",0,23 +-0.101384068,51.49652013,324,"Ontario Street","Elephant & Castle",3,12 +-0.129697889,51.50908747,325,"St. Martin's Street","West End",0,18 +-0.099981142,51.53266186,326,"Graham Street","Angel",21,0 +-0.086016,51.53114,327,"New North Road 1","Hoxton",10,12 +-0.085603,51.53095,328,"New North Road 2","Hoxton",13,9 +-0.160854428,51.53589283,329,"Prince Albert Road","Regent's Park",8,16 +-0.179135079,51.51641749,330,"Eastbourne Mews","Paddington",24,10 +-0.089887855,51.52085887,331,"Bunhill Row","Moorgate",0,30 +-0.194757949,51.49334336,332,"Nevern Place","Earl's Court",9,11 +-0.193764092,51.50860544,333,"Palace Gardens Terrace","Notting Hill",10,26 +-0.115851,51.505044,334,"Concert Hall Approach 1","South Bank",2,8 +-0.120718759,51.51196803,335,"Tavistock Street","Covent Garden",0,31 +-0.115533,51.504942,336,"Concert Hall Approach 2","South Bank",14,4 +-0.197524944,51.51108452,337,"Pembridge Villas","Notting Hill",5,11 +-0.119643424,51.51175646,338,"Wellington Street","Strand",0,15 +-0.111781191,51.5333196,339,"Risinghill Street","Angel",4,20 +-0.087587447,51.51444134,340,"Bank of England Museum","Bank",0,14 +-0.12602103,51.50810309,341,"Craven Street","Strand",10,11 +-0.150181444,51.53692216,343,"London Zoo Car Park","Regent's Park",28,7 +-0.10102611,51.528246,344,"Goswell Road (City Uni)","Finsbury",5,12 +-0.166878535,51.48802358,345,"Flood Street","Chelsea",2,16 +-0.113936001,51.50013942,347,"Lower Marsh","Waterloo",7,10 +-0.150481272,51.51217033,348,"Grosvenor Square","Mayfair",0,17 +-0.142783033,51.51196,349,"St. George Street","Mayfair",0,18 +-0.1798541843891,51.5017154373867,350,"Queen's Gate","Kensington Gardens",8,11 +-0.097122,51.529423,351,"Macclesfield Rd","St Lukes",25,2 +-0.116625,51.486965,352,"Vauxhall Street","Vauxhall",18,0 +-0.134234258,51.49459148,353,"Greycoat Street","Westminster",12,4 +-0.123702,51.506767,354,"Northumberland Avenue","Strand",32,5 +-0.117286,51.486575,355,"Oval Way","Lambeth",15,5 +-0.173881,51.494412,356,"South Kensington Station","South Kensington",7,8 +-0.139016,51.520994,357,"Howland Street","Fitzrovia",0,29 +-0.124332175,51.51643491,358,"High Holborn","Covent Garden",0,17 +-0.135440826,51.49782999,359,"Butler Place","Westminster",8,10 +-0.138733562,51.49675303,360,"Howick Place","Westminster",2,25 +-0.11342628,51.50391972,361,"Waterloo Station 2","Waterloo",46,4 +-0.133952,51.536264,362,"Royal College Street","Camden Town",35,22 +-0.171185284853,51.5291212008901,363,"Lord's","St. John's Wood",17,7 +-0.132339,51.519656,364,"Alfred Place","Bloomsbury",0,41 +-0.100168,51.530344,365,"City Road","Angel",39,8 +-0.1511263847351,51.5109192966489,366,"Millennium Hotel","Mayfair",0,27 +-0.1642075,51.5173721,367,"Harrowby Street","Marylebone",2,14 +-0.15934065,51.50024195,368,"Harriet Street","Knightsbridge",3,20 +-0.174593,51.520205,370,"Paddington Green","Paddington",2,18 +-0.10988,51.49775,371,"King Edward Walk","Waterloo",16,6 +-0.117863,51.515208,372,"Sardinia Street","Holborn",10,14 +-0.176415994,51.49980661,373,"Prince Consort Road","Knightsbridge",0,18 +-0.11386435,51.50402793,374,"Waterloo Station 1","Waterloo",12,24 +-0.194392952,51.50194596,375,"Kensington Town Hall","Kensington",1,17 +-0.125674815,51.49188409,376,"Millbank House","Pimlico",18,6 +-0.113656543,51.50535447,377,"Waterloo Bridge","South Bank",4,11 +-0.179077626,51.49559291,378,"Natural History Museum","South Kensington",5,35 +-0.200838199,51.51431171,379,"Turquoise Island","Notting Hill",5,16 +-0.150666888,51.50686435,380,"Stanhope Gate","Mayfair",0,21 +-0.13577731,51.51953043,381,"Charlotte Street","Fitzrovia",0,13 +-0.14744969,51.50935171,382,"Farm Street","Mayfair",0,14 +-0.13121385,51.51310333,383,"Frith Street","Soho",0,17 +-0.192404,51.496481,384,"Marloes Road","Kensington",7,7 +-0.130110822,51.51352755,386,"Moor Street","Soho",0,16 +-0.121394101,51.49369988,387,"Fire Brigade Pier","Vauxhall",9,21 +-0.121723604,51.51070161,388,"Southampton Street","Strand",0,13 +-0.155757901,51.51013066,389,"Upper Grosvenor Street","Mayfair",0,18 +-0.068856,51.521776,390,"Buxton Street 1","Shoreditch",40,0 +-0.142345694,51.51066202,391,"Clifford Street","Mayfair",0,27 +-0.179702476,51.49942855,392,"Imperial College","Knightsbridge",3,18 +-0.103604248,51.51733427,393,"Snow Hill","Farringdon",1,14 +-0.176268,51.524826,394,"Aberdeen Place","St. John's Wood",18,0 +-0.159919,51.492462,395,"Cadogan Gardens","Sloane Square",4,11 +-0.163609,51.51809,396,"Shouldham Street","Marylebone",5,11 +-0.17977,51.51348,397,"Devonshire Terrace","Bayswater",16,0 +-0.200742,51.502319,398,"Holland Park","Kensington",7,23 +-0.071653961,51.52261762,399,"Brick Lane Market","Shoreditch",20,3 +-0.154106,51.517703,400,"George Street","Marylebone",0,26 +-0.075375,51.528187,401,"Columbia Road","Weavers",18,6 +-0.171681991,51.52289229,402,"Penfold Street","Marylebone",8,7 +-0.158249929,51.51689296,403,"George Place Mews","Marylebone",1,15 +-0.184400221,51.50204238,404,"Palace Gate","Kensington Gardens",12,3 +-0.18267094,51.49418566,405,"Gloucester Road Station","South Kensington",9,5 +-0.159988,51.512303,406,"Speakers' Corner 2","Hyde Park",3,20 +-0.160785,51.51222,407,"Speakers' Corner 1","Hyde Park",7,10 +-0.170704337,51.51994326,408,"Paddington Green Police Station","Paddington",14,26 +-0.099828,51.493146,409,"Strata","Southwark",9,12 +-0.169774,51.519968,410,"Edgware Road Station","Paddington",5,57 +-0.09968067,51.49337264,411,"Walworth Road","Southwark",27,3 +-0.110121,51.488105,412,"Cleaver Street","Kennington",16,1 +-0.149004,51.485821,419,"Chelsea Bridge","Pimlico",12,3 +-0.105312,51.504043,420,"Southwark Station 1","Southwark",36,1 +-0.104778,51.504044,421,"Southwark Station 2","Southwark",23,21 +-0.15393398,51.49456127,423,"Eaton Square (South)","Belgravia",1,30 +-0.149186,51.490491,424,"Ebury Bridge","Pimlico",22,3 +-0.139159,51.533379,425,"Harrington Square 2","Camden Town",31,7 +-0.129925,51.493072,426,"Vincent Street","Pimlico",8,9 +-0.09294031,51.51397065,427,"Cheapside","Bank",6,37 +-0.174554,51.499917,428,"Exhibition Road","Knightsbridge",1,18 +-0.17524,51.48902,430,"South Parade","Chelsea",8,9 +-0.122203,51.534474,431,"Crinan Street","King's Cross",10,10 +-0.173894,51.496957,432,"Exhibition Road Museums","Knightsbridge",0,20 +-0.116279,51.524564,433,"Wren Street","Holborn",2,30 +-0.105593,51.488852,435,"Kennington Station","Kennington",14,9 +-0.11655,51.51824,436,"Red Lion Street","Holborn",0,36 +-0.120903,51.488124,437,"Vauxhall Walk","Vauxhall",19,7 +-0.118677,51.5338,439,"Killick Street","Kings Cross",17,5 +-0.113134,51.483145,440,"Kennington Oval","Oval",24,8 +-0.114605,51.495656,441,"Sail Street","Vauxhall",18,6 +-0.211358,51.510101,442,"Walmer Road","Notting Hill",5,18 +-0.058641,51.515256,443,"Philpot Street","Whitechapel",12,18 +-0.055312,51.52568,444,"Bethnal Green Gardens","Bethnal Green",5,19 +-0.065076,51.52388,445,"Cheshire Street","Bethnal Green",28,0 +-0.055894,51.528936,446,"York Hall","Bethnal Green",24,3 +-0.007542,51.493381,447,"Jubilee Crescent","Cubitt Town",28,26 +-0.02296,51.50623,448,"Fishermans Walk West","Canary Wharf",0,35 +-0.057159,51.511088,449,"Shadwell Station","Shadwell",31,2 +-0.053177,51.515975,450,"Jubilee Street","Stepney",28,0 +-0.063531,51.504719,451,"Hermitage Court","Wapping",14,2 +-0.070542,51.505697,452,"St Katharines Way","Tower",8,16 +-0.055167,51.508447,453,"Garnet Street","Shadwell",24,0 +-0.021582,51.487679,454,"Napier Avenue","Millwall",14,5 +-0.014409,51.49447,455,"East Ferry Road","Cubitt Town",13,4 +-0.144664,51.538071,456,"Parkway","Camden Town",23,9 +-0.145393,51.542138,457,"Castlehaven Road","Camden Town",27,1 +-0.057544,51.504749,458,"Wapping Lane","Wapping",26,1 +-0.03338,51.535179,459,"Gun Makers Lane","Old Ford",8,9 +-0.029138,51.516196,460,"Burdett Road","Mile End",16,16 +-0.038775,51.516,461,"Aston Street","Stepney",10,16 +-0.138853,51.541603,462,"Bonny Street","Camden Town",40,5 +-0.071881,51.534776,463,"Thurtle Road","Haggerston",18,4 +-0.052099,51.51417,464,"St. Mary and St. Michael Church","Stepney",24,0 +-0.08249,51.53558,465,"Pitfield Street (North)","Hoxton",27,0 +-0.076341,51.534464,466,"Whiston Road","Haggerston",12,9 +-0.030556,51.523538,467,"Southern Grove","Bow",3,14 +-0.022694,51.521564,468,"Cantrell Road","Bow",7,17 +-0.020467,51.513757,469,"Lindfield Street","Poplar",27,16 +-0.025492,51.530535,470,"Mostyn Grove","Bow",35,10 +-0.028155,51.533283,471,"Hewison Street","Old Ford",1,16 +-0.027616,51.529452,472,"Malmesbury Road","Bow",8,13 +-0.019355,51.496137,473,"Millharbour","Millwall",3,16 +-0.011457,51.498125,474,"Castalia Square","Cubitt Town",16,23 +-0.020157,51.499041,475,"Lightermans Road","Millwall",4,52 +-0.009205,51.489096,476,"Stebondale Street","Cubitt Town",25,4 +-0.018716,51.49109,477,"Spindrift Avenue","Millwall",31,5 +-0.04667,51.521889,478,"Stepney Green Station","Stepney",17,0 +-0.058005,51.527152,479,"Pott Street","Bethnal Green",15,4 +-0.0389866,51.5128711,480,"Flamborough Street","Limehouse",24,0 +-0.009001,51.487129,481,"Saunders Ness Road","Cubitt Town",30,2 +-0.02377,51.509843,482,"Thornfield House","Poplar",11,15 +-0.047784,51.51328,483,"Albert Gardens","Stepney",25,7 +-0.013258,51.528828,484,"Bromley High Street","Bromley",16,4 +-0.048017,51.531127,485,"Old Ford Road","Bethnal Green",15,8 +-0.069543,51.525645,486,"Granby Street","Shoreditch",34,2 +-0.025626,51.511811,487,"Canton Street","Poplar",20,3 +-0.058681,51.506946,488,"Reardon Street","Wapping",20,0 +-0.064094,51.513074,489,"Christian Street","Whitechapel",25,9 +-0.065006,51.508622,490,"Pennington Street","Wapping",29,16 +-0.041378,51.522507,491,"Queen Marys","Mile End",13,30 +-0.03562,51.524677,492,"The Green Bridge","Mile End",51,9 +-0.016251,51.50196,494,"South Quay East","Canary Wharf",0,35 +-0.018703,51.528169,495,"Bow Church Station","Bow",31,7 +-0.015578,51.52512,496,"Devons Road","Bow",8,30 +-0.025296,51.527058,498,"Bow Road Station","Bow",8,33 +-0.021345,51.519265,499,"Furze Green","Bow",10,24 +-0.054883,51.522561,501,"Cephas Street","Bethnal Green",20,4 +-0.022702,51.502635,502,"South Quay West","Canary Wharf",0,27 +-0.051394,51.520893,503,"Cleveland Way","Bethnal Green",24,11 +-0.009506,51.496454,504,"St John's Park","Cubitt Town",29,0 +-0.026768,51.520398,505,"Ackroyd Drive","Bow",1,28 +-0.075855,51.517475,506,"Bell Lane","Liverpool Street",3,20 +-0.059091,51.528692,507,"Clarkson Street","Bethnal Green",22,9 +-0.074431,51.519362,508,"Fournier Street","Whitechapel",1,15 +-0.090075,51.517842,509,"Fore Street","Guildhall",0,18 +-0.025996,51.509303,510,"Westferry DLR","Limehouse",0,40 +-0.053558,51.511066,511,"Sutton Street","Shadwell",14,19 +-0.06142,51.532091,512,"Pritchard's Road","Bethnal Green",26,1 +-0.055656,51.5142228,513,"Watney Market","Stepney",24,25 +-0.155525,51.516204,514,"Portman Square","Marylebone",1,16 +-0.211316,51.500088,515,"Russell Gardens","Holland Park",9,15 +-0.014438,51.5112,516,"Chrisp Street Market","Poplar",11,7 +-0.033085,51.532513,517,"Ford Road","Old Ford",11,7 +-0.037471,51.528224,518,"Antill Road","Mile End",22,7 +-0.011662,51.518811,519,"Teviot Street","Poplar",26,7 +-0.047218,51.526041,520,"Bancroft Road","Bethnal Green",10,10 +-0.037366,51.534137,521,"Driffield Road","Old Ford",15,4 +-0.036017,51.525941,522,"Clinton Road","Mile End",26,10 +-0.013475,51.51549,523,"Langdon Park","Poplar",11,13 +-0.179668,51.511654,524,"Lancaster Gate","Bayswater",12,26 +-0.014293,51.504714,525,"Churchill Place","Canary Wharf",0,18 +-0.008428,51.503143,526,"Lancaster Drive","Blackwall",12,14 +-0.215808,51.503802,527,"Hansard Mews","Shepherds Bush",17,3 +-0.145827,51.507326,528,"Clarges Street","West End",0,16 +-0.170983,51.486892,529,"Manresa Road","Chelsea",12,6 +-0.012413,51.508896,530,"Newby Place","Poplar",15,1 +-0.042744,51.530326,531,"Twig Folly Bridge","Mile End",9,11 +-0.020068,51.50357,532,"Jubilee Plaza","Canary Wharf",0,63 +-0.069743,51.528222,533,"Wellington Row","Bethnal Green",9,24 +-0.066035,51.531864,534,"Goldsmiths Row","Haggerston",26,0 +-0.147154,51.537349,535,"Gloucester Avenue","Camden Town",20,4 +-0.067937,51.51793,537,"Old Montague Street","Whitechapel",16,1 +-0.00699,51.508981,538,"Naval Row","Blackwall",9,12 +-0.075901,51.531091,539,"Hoxton Station","Haggerston",17,5 +-0.144466,51.528302,540,"Albany Street","Regent's Park",20,6 +-0.142844,51.506613,541,"Green Park Station","West End",0,26 +-0.033828,51.514115,542,"Salmon Lane","Limehouse",7,26 +-0.204666,51.509591,543,"Lansdowne Walk","Notting Hill",0,21 +-0.102208,51.526153,544,"Percival Street","Finsbury",16,6 +-0.145246,51.539957,545,"Arlington Road","Camden Town",21,3 +-0.107987,51.517428,546,"New Fetter Lane","Holborn",0,21 +-0.002275,51.509474,547,"East India DLR","Blackwall",46,5 +-0.107913,51.498386,548,"Westminster Bridge Road","Elephant & Castle",24,2 +-0.104193,51.49605,549,"Gaywood Street","Elephant & Castle",37,8 +-0.039264,51.521564,550,"Harford Street","Mile End",4,19 +-0.016233,51.503447,551,"Montgomery Square","Canary Wharf",0,39 +-0.056667,51.511542,552,"Watney Street","Shadwell",23,4 +-0.062546,51.535678,553,"Regent's Row","Haggerston",12,10 +-0.005659,51.513548,554,"Aberfeldy Street","Poplar",16,0 +-0.021596,51.502661,556,"Heron Quays DLR","Canary Wharf",0,26 +-0.0985,51.51601,557,"King Edward Street","St Pauls",0,20 +-0.127554,51.493978,558,"Page Street","Westminster",3,20 +-0.205991,51.501391,559,"Abbotsbury Road","Holland Park",18,4 +-0.205921,51.511624,560,"Ladbroke Grove Central","Notting Hill",1,19 +-0.043371,51.518369,561,"Rectory Square","Stepney",8,13 +-0.12335,51.51746,562,"Bury Place","Holborn",0,21 +-0.009152,51.499286,563,"Preston's Road","Cubitt Town",14,12 +-0.117619,51.509943,564,"Somerset House","Strand",34,6 +-0.063386,51.521905,565,"Selby Street","Whitechapel",11,5 +-0.224103,51.509158,566,"Westfield Ariel Way","White City",12,30 +-0.18697,51.51616,568,"Bishop's Bridge Road West","Bayswater",17,0 +-0.08299,51.53213,569,"Pitfield Street Central","Hoxton",22,0 +-0.017676,51.503083,570,"Upper Bank Street","Canary Wharf",0,36 +-0.218337,51.506256,571,"Westfield Southern Terrace","Shepherd's Bush",25,4 +-0.141728,51.539099,572,"Greenland Road","Camden Town",28,7 +-0.18119,51.485587,573,"Limerston Street","Chelsea",1,15 +-0.09315,51.53356,574,"Eagle Wharf Road","Hoxton",44,1 +-0.022793,51.497304,576,"Alpha Grove","Millwall",14,6 +-0.047548,51.528869,577,"Globe Town Market","Bethnal Green",13,7 +-0.057133,51.527607,578,"Hollybush Gardens","Bethnal Green",11,21 +-0.093051,51.511246,579,"Queen Street 2","Bank",0,33 +-0.102996299,51.48692917,580,"Doddington Grove","Kennington",30,6 +-0.125978,51.497622,583,"Abingdon Green","Great College Street",11,9 +-0.19096,51.51244,584,"Ilchester Gardens","Bayswater",11,10 +-0.014582,51.490645,586,"Mudchute DLR","Cubitt Town",27,4 +-0.08497,51.50964,587,"Monument Street","Monument",1,20 +-0.0801,51.52959,588,"Hoxton Street","Hoxton",22,4 +-0.179369,51.487196,589,"Drayton Gardens","Chelsea",10,8 +-0.16862,51.53256,590,"Greenberry Street","St.John's Wood",26,0 +-0.2242237,51.506093,591,"Westfield Library Corner","Shepherd's Bush",3,23 +-0.18377,51.5171,592,"Bishop's Bridge Road East","Bayswater",18,1 +-0.11934,51.531066,593,"Northdown Street","King's Cross",20,0 +-0.117774,51.513875,594,"Kingsway Southbound","Strand",1,32 +-0.21985,51.493267,595,"Hammersmith Road","Hammersmith",1,21 +-0.199783,51.472817,596,"Parson's Green","Parson's Green",2,17 +-0.20782,51.473471,597,"Fulham Park Road","Fulham",20,7 +-0.228188,51.494499,598,"Southerton Road","Hammersmith",13,25 +-0.223616,51.485743,599,"Manbre Road","Hammersmith",3,24 +-0.124642,51.481747,600,"South Lambeth Road","Vauxhall",13,8 +-0.225787,51.514767,601,"BBC White City","White City",3,33 +-0.133972,51.472993,602,"Union Grove","Wandsworth Road",35,8 +-0.116493,51.477839,603,"Caldwell Street","Stockwell",40,2 +-0.138535,51.538792,604,"St Martin's Close","Camden Town",2,14 +-0.163667,51.520331,605,"Seymour Place","Marylebone",21,8 +-0.210941,51.504199,606,"Addison Road","Holland Park",8,18 +-0.210279,51.468814,607,"Putney Bridge Station","Fulham",8,13 +-0.216493,51.491093,608,"Colet Gardens","Hammersmith",5,25 +-0.157788279,51.46512358,609,"Sugden Road","Battersea",8,11 +-0.172078187,51.48256792,610,"Danvers Street","West Chelsea",8,13 +-0.208486599,51.50646524,611,"Princedale Road","Holland Park",14,6 +-0.141812513,51.46925984,612,"Wandsworth Rd","Isley Court",22,8 +-0.217400093,51.50403821,613,"Woodstock Grove","Shepherd's Bush",4,18 +-0.144690541,51.47817208,614,"Bradmead","Nine Elms",25,14 +-0.215895601,51.4768851,615,"Finlay Street","Fulham",11,11 +-0.209973497,51.48102131,616,"Aintree Street","Fulham",17,6 +-0.207842908,51.47107905,617,"Elysium Place","Fulham",7,14 +-0.193254007,51.47625965,618,"Eel Brook Common","Walham Green",16,7 +-0.197010096,51.4737636,619,"Irene Road","Parsons Green",13,30 +-0.167160736,51.47518024,620,"Surrey Lane","Battersea",17,10 +-0.187427294,51.46086446,621,"Wandsworth Town Station","Wandsworth",21,12 +-0.205535908,51.50748124,622,"Lansdowne Road","Ladbroke Grove",7,22 +-0.180791784,51.46193072,623,"Nantes Close","Wandsworth",16,6 +-0.132102704,51.4729184,624,"Courland Grove","Wandsworth Road",35,5 +-0.149551631,51.47761941,625,"Queen's Circus","Battersea Park",17,10 +-0.20481514,51.48438657,626,"Normand Park","Fulham",14,10 +-0.158230901,51.4687905,627,"Holden Street","Battersea",9,11 +-0.184318843,51.46881971,628,"William Morris Way","Sands End",23,2 +-0.190184054,51.45995384,629,"Morie Street","Wandsworth",13,14 +-0.126994068,51.47073264,630,"Clarence Walk","Stockwell",24,3 +-0.141770709,51.4795017,631,"Battersea Park Road","Nine Elms",25,2 +-0.163041605,51.47053858,632,"Sheepcote Lane","Battersea",25,3 +-0.209378594,51.48959104,633,"Vereker Road","West Kensington",8,22 +-0.215804559,51.49434708,634,"Brook Green South","Brook Green",11,22 +-0.214428378,51.48606206,635,"Greyhound Road","Hammersmith",20,17 +-0.193502076,51.46706414,636,"South Park","Sands End",5,22 +-0.174691623,51.45787019,637,"Spencer Park","Wandsworth Common",13,12 +-0.169821175,51.46663393,638,"Falcon Road","Clapham Junction",17,5 +-0.202038682,51.48357068,639,"Coomer Place","West Kensington",23,3 +-0.148059277,51.47286577,640,"Silverthorne Road","Battersea",19,9 +-0.117495865,51.49824168,641,"Archbishop's Park","Waterloo",8,15 +-0.174485792,51.46916161,642,"Fawcett Close","Battersea",17,19 +-0.204764421,51.5190427,643,"All Saints' Road","Portobello",13,8 +-0.223852256,51.48373225,644,"Rainville Road","Hammersmith",10,25 +-0.100292412,51.50173215,645,"Great Suffolk Street","The Borough",19,2 +-0.137424571,51.49886563,646,"Buckingham Gate","Westminster",4,9 +-0.217515071,51.50035306,647,"Richmond Way","Shepherd's Bush",26,1 +-0.19627483,51.46904022,648,"Peterborough Road","Sands End",8,22 +-0.18027465,51.48180515,649,"World's End Place","West Chelsea",21,1 +-0.213872396,51.51687069,650,"St. Mark's Road","North Kensington",18,5 +-0.183853573,51.48089844,651,"Thorndike Close","West Chelsea",10,15 +-0.218190203,51.51148696,652,"Evesham Street","Avondale",11,17 +-0.17070367,51.47084722,653,"Simpson Street","Battersea",21,4 +-0.117661574,51.48267821,654,"Ashmole Estate","Oval",30,4 +-0.219346128,51.48294452,655,"Crabtree Lane","Fulham",1,26 +-0.199135704,51.46841875,656,"Broomhouse Lane","Parsons Green",19,10 +-0.221791552,51.4996806,657,"Blythe Road West","Shepherd's Bush",10,10 +-0.16478637,51.47729232,658,"Ethelburga Estate","Battersea Park",22,7 +-0.174619404,51.46437067,659,"Grant Road West","Clapham Junction",9,47 +-0.206029743,51.49087074,660,"West Kensington Station","West Kensington",3,19 +-0.202608612,51.51632095,661,"All Saints Church","Portobello",18,19 +-0.167919869,51.48498496,662,"Phene Street","Chelsea",2,20 +-0.211593602,51.51323001,663,"Clarendon Road","Avondale",6,18 +-0.155442787,51.474376,664,"Austin Road","Battersea",22,1 +-0.191722864,51.46108367,665,"Smugglers Way","Wandsworth",27,1 +-0.208158259,51.49610093,666,"Olympia Way","Olympia",6,30 +-0.222293381,51.5015946,667,"Shepherd's Bush Road North","Shepherd's Bush",20,13 +-0.236769936,51.49422354,668,"Ravenscourt Park Station","Hammersmith",12,13 +-0.1232585,51.47614939,669,"Teversham Lane","Stockwell",37,2 +-0.152248582,51.46718562,670,"Ashley Crescent","Battersea",11,17 +-0.201968,51.475089,671,"Parsons Green Station","Parsons Green",34,21 +-0.173656546,51.4646884,672,"Grant Road Central","Clapham Junction",20,7 +-0.18038939,51.46517078,673,"Hibbert Street","Battersea",32,3 +-0.11619105,51.53546778,674,"Carnegie Street","King's Cross",35,4 +-0.182126248,51.46348914,675,"Usk Road","Battersea",4,26 +-0.126874471,51.47787084,676,"Hartington Road","Stockwell",19,14 +-0.146544642,51.46866929,677,"Heath Road","Battersea",25,1 +-0.211468596,51.46231278,678,"Esmond Street","Putney",30,0 +-0.170210533,51.47453545,679,"Orbel Street","Battersea",13,12 +-0.170329317,51.47768469,680,"Westbridge Road","Battersea",23,4 +-0.214749808,51.47303687,681,"Bishop's Avenue","Fulham",14,31 +-0.22660621,51.48810829,682,"Crisp Road","Hammersmith",7,36 +-0.163750945,51.46506424,683,"Dorothy Road","Clapham Junction",12,16 +-0.195197203,51.45475251,684,"Neville Gill Close","Wandsworth",24,8 +-0.198735357,51.46067005,685,"Osiers Road","Wandsworth",29,1 +-0.222456468,51.48814438,686,"Beryl Road","Hammersmith",3,23 +-0.21145598,51.49760804,687,"Maclise Road","Olympia",12,14 +-0.20066766,51.46095151,688,"Northfields","Wandsworth",19,8 +-0.180884959,51.45922541,689,"Spanish Road","Wandsworth",14,16 +-0.152130083,51.47047503,690,"Stanley Grove","Battersea",24,0 +-0.195777222,51.47946386,691,"Erin Close","Walham Green",18,4 +-0.028941601,51.54211855,692,"Cadogan Close","Victoria Park",12,9 +-0.215618902,51.464786,693,"Felsham Road","Putney",10,7 +-0.102757578,51.53638435,695,"Islington Green","Angel",21,0 +-0.217995921,51.48728535,696,"Charing Cross Hospital","Hammersmith",2,18 +-0.112721065,51.53639219,697,"Charlotte Terrace","Angel",15,9 +-0.070329419,51.53908372,698,"Shoreditch Court","Haggerston",29,6 +-0.07023031,51.5366541,699,"Belford House","Haggerston",22,17 +-0.174347066,51.47696496,700,"Battersea Church Road","Battersea",25,0 +-0.176267008,51.47287627,701,"Vicarage Crescent","Battersea",22,8 +-0.065550321,51.52868155,702,"Durant Street","Bethnal Green",11,12 +-0.10534448,51.51505991,703,"St. Bride Street","Holborn",0,25 +-0.202802098,51.45682071,704,"Mexfield Road","East Putney",9,9 +-0.212145939,51.45971528,705,"Upper Richmond Road","East Putney",12,13 +-0.083632928,51.50215353,706,"Snowsfields","London Bridge",17,13 +-0.215087092,51.49021762,707,"Barons Court Station","West Kensington",0,31 +-0.21614583,51.46161068,708,"Disraeli Road","Putney",26,5 +-0.215550761,51.46321128,709,"Montserrat Road","Putney",22,0 +-0.163347594,51.47439218,710,"Albert Bridge Road","Battersea Park",7,13 +-0.216305546,51.48335692,711,"Everington Street","Fulham",5,26 +-0.034903714,51.51854104,712,"Mile End Stadium","Mile End",14,7 +-0.14326094,51.54100708,713,"Hawley Crescent","Camden Town",20,1 +-0.137235175,51.47311696,714,"Stewart's Road","Nine Elms",18,9 +-0.049067243,51.51563007,715,"Aylward Street","Stepney",17,5 +-0.02356501,51.51542791,716,"Stainsby Road","Poplar",8,16 +-0.075885686,51.53658514,717,"Dunston Road","Haggerston",33,8 +-0.060291813,51.53571683,718,"Ada Street","Hackney Central",40,4 +-0.054162264,51.53642464,719,"Victoria Park Road","Hackney Central",27,5 +-0.205279052,51.48724429,720,"Star Road","West Kensington",10,14 +-0.026262677,51.53603947,721,"Wendon Street","Old Ford",13,5 +-0.058631453,51.52458353,722,"Finnis Street","Bethnal Green",15,4 +-0.190346493,51.46822047,723,"Stephendale Road","Sands End",47,1 +-0.184806157,51.45799126,724,"Alma Road","Wandsworth",14,14 +-0.138748723,51.47732253,725,"Thessaly Road North","Nine Elms",21,7 +-0.150908371,51.47505096,726,"Alfreda Street","Battersea Park",17,5 +-0.20587627,51.47569809,727,"Chesilton Road","Fulham",10,12 +-0.206240805,51.46199911,728,"Putney Bridge Road","East Putney",11,16 +-0.208485293,51.47893931,729,"St. Peter's Terrace","Fulham",7,17 +-0.229116862,51.49208492,730,"Bridge Avenue","Hammersmith",11,7 +-0.189210466,51.47727637,731,"Michael Road","Walham Green",33,3 +-0.087262995,51.50630441,732,"Duke Street Hill","London Bridge",1,20 +-0.150817316,51.50542628,733,"Park Lane","Mayfair",0,18 +-0.175407201,51.46230566,734,"Plough Terrace","Clapham Junction",14,17 +-0.17302926,51.46489445,735,"Grant Road East","Clapham Junction",34,1 +-0.19411695,51.47993289,737,"Fulham Broadway","Walham Green",12,11 +-0.187278987,51.47514228,738,"Imperial Road","Sands End",36,1 +-0.185273723,51.48176572,739,"Hortensia Road","West Brompton",12,16 +-0.214594781,51.51092871,740,"Sirdar Road","Avondale",13,13 +-0.219486603,51.5129814,741,"Freston Road","Avondale",13,9 +-0.208565479,51.51510818,742,"Blenheim Crescent","Ladbroke Grove",17,4 +-0.212607684,51.46079243,743,"Oxford Road","Putney",28,1 +-0.172293499,51.46745485,744,"Ingrave Street","Battersea",18,11 +-0.18243547,51.47816972,745,"Upcerne Road","West Chelsea",21,7 +-0.17903854,51.4795738,746,"Lots Road","West Chelsea",2,22 +-0.161765173,51.48796408,747,"Ormonde Gate","Chelsea",11,13 +-0.079201849,51.53727795,748,"Hertford Road","De Beauvoir Town",24,0 +-0.074284675,51.53932857,749,"Haggerston Road","Haggerston",36,0 +-0.157850096,51.4710956,750,"Culvert Road","Battersea",20,5 +-0.120909408,51.51612862,751,"Newton Street","Covent Garden",0,24 +-0.20600248,51.45816465,752,"Manfred Road","East Putney",11,18 +-0.234094148,51.49263658,753,"Hammersmith Town Hall","Hammersmith",17,11 +-0.214762686,51.5129006,754,"Grenfell Road","Avondale",4,20 +-0.174971902,51.48512191,755,"The Vale","Chelsea",14,8 +-0.159169801,51.47515398,756,"Prince of Wales Drive","Battersea Park",19,2 +-0.187404506,51.48795853,757,"Harcourt Terrace","West Brompton",21,1 +-0.201005397,51.51787005,758,"Westbourne Park Road","Portobello",17,6 +-0.165668686,51.52456169,759,"Broadley Terrace","Marylebone",3,15 +-0.163795009,51.52526975,760,"Rossmore Road","Marylebone",12,6 +-0.211860644,51.48321729,761,"Humbolt Road","Fulham",10,16 +-0.129698963,51.50070305,762,"Storey's Gate","Westminster",8,13 +-0.032566533,51.52059714,763,"Mile End Park Leisure Centre","Mile End",12,35 +-0.16829214,51.46239255,764,"St. John's Road","Clapham Junction",32,0 +-0.20682737,51.46760141,765,"Ranelagh Gardens","Fulham",20,19 +-0.192165613,51.45752945,766,"Ram Street","Wandsworth",24,1 +-0.200806304,51.45705988,767,"Santos Road","Wandsworth",16,14 +-0.159322467,51.46134382,768,"Clapham Common Northside","Clapham Common",20,17 +-0.191803,51.473611,769,"Sandilands Road","Walham Green",20,1 +-0.209121,51.491026,770,"Gwendwr Road","West Kensington",17,13 +-0.216016,51.509224,771,"Rifle Place","Avondale",4,17 +-0.122831913,51.47250956,772,"Binfield Road","Stockwell",35,0 +-0.107349,51.511891,773,"Tallis Street","Temple",0,23 +-0.20464,51.470131,774,"Hurlingham Park","Parsons Green",11,9 +-0.223868,51.496664,775,"Little Brook Green","Brook Green",16,17 +-0.167029,51.460333,776,"Abyssinia Close","Clapham Junction",10,10 +-0.165297856693,51.4619230679,777,"Limburg Road","Clapham Common",7,11 diff --git a/data/dem.tif b/data/dem.tif new file mode 100644 index 0000000..8dfc6a1 Binary files /dev/null and b/data/dem.tif differ diff --git a/data/landsat.tif b/data/landsat.tif new file mode 100644 index 0000000..7a6b43c Binary files /dev/null and b/data/landsat.tif differ diff --git a/data/nlcd.tif b/data/nlcd.tif new file mode 100644 index 0000000..4366173 Binary files /dev/null and b/data/nlcd.tif differ diff --git a/data/nz.gpkg b/data/nz.gpkg new file mode 100644 index 0000000..346eed5 Binary files /dev/null and b/data/nz.gpkg differ diff --git a/data/nz_elev.tif b/data/nz_elev.tif new file mode 100644 index 0000000..4c3ff0e Binary files /dev/null and b/data/nz_elev.tif differ diff --git a/data/nz_height.gpkg b/data/nz_height.gpkg new file mode 100644 index 0000000..2a098fb Binary files /dev/null and b/data/nz_height.gpkg differ diff --git a/data/seine.gpkg b/data/seine.gpkg new file mode 100644 index 0000000..1340be2 Binary files /dev/null and b/data/seine.gpkg differ diff --git a/data/srtm.tif b/data/srtm.tif new file mode 100644 index 0000000..fff86ec Binary files /dev/null and b/data/srtm.tif differ diff --git a/data/us_states.gpkg b/data/us_states.gpkg new file mode 100644 index 0000000..50ddba3 Binary files /dev/null and b/data/us_states.gpkg differ diff --git a/data/world copy.gpkg b/data/world copy.gpkg new file mode 100644 index 0000000..66161e5 Binary files /dev/null and b/data/world copy.gpkg differ diff --git a/data/world_wkt.csv b/data/world_wkt.csv new file mode 100644 index 0000000..21e5b01 --- /dev/null +++ b/data/world_wkt.csv @@ -0,0 +1,178 @@ +"WKT","iso_a2","name_long","continent","region_un","subregion","type","area_km2","pop","lifeExp","gdpPercap" +"MULTIPOLYGON (((180.0 -16.0671326636424,180.0 -16.5552165666392,179.364142661964 -16.8013540769469,178.725059362997 -17.012041674368,178.596838595117 -16.63915,179.096609362997 -16.4339842775474,179.413509362997 -16.3790542775474,180.0 -16.0671326636424)),((178.12557 -17.50481,178.3736 -17.33992,178.71806 -17.62846,178.55271 -18.15059,177.93266 -18.28799,177.38146 -18.16432,177.28504 -17.72465,177.67087 -17.38114,178.12557 -17.50481)),((-179.793320109049 -16.0208822567412,-179.917369384765 -16.5017831356494,-180.0 -16.5552165666392,-180.0 -16.0671326636424,-179.793320109049 -16.0208822567412)))","FJ","Fiji","Oceania","Oceania","Melanesia","Sovereign country",19289.9707329765,885806,69.96,8222.25378436842 +"MULTIPOLYGON (((33.9037111971045 -0.95,34.07262 -1.05982,37.69869 -3.09699,37.7669 -3.67712,39.20222 -4.67677,38.74054 -5.90895,38.79977 -6.47566,39.44 -6.84,39.47 -7.1,39.19469 -7.7039,39.25203 -8.00781,39.18652 -8.48551,39.53574 -9.11237,39.9496 -10.0984,40.3165862291109 -10.3170977528175,40.31659 -10.3171,39.521 -10.89688,38.4275565935878 -11.2852023250817,37.82764 -11.26879,37.47129 -11.56876,36.7751509946228 -11.5945374487808,36.5140816586843 -11.7209380021667,35.312397902169 -11.4391464168791,34.5599890479994 -11.5200200334159,34.28 -10.16,33.9408377240965 -9.69367384198029,33.73972 -9.41715,32.7593754412213 -9.23059905358906,32.1918648617919 -8.93035898197326,31.5563480974665 -8.76204884199864,31.15775133695 -8.59457874731737,30.7400097314221 -8.34000593035372,30.7400154965518 -8.34000741947091,30.1999967791017 -7.07998097089816,29.62003217949 -6.52001515058343,29.4199927100882 -5.93999887453943,29.5199866065729 -5.41997893638631,29.3399975929003 -4.49998341229409,29.7535124040999 -4.4523894181533,30.11632 -4.09012,30.50554 -3.56858,30.75224 -3.35931,30.74301 -3.03431,30.52766 -2.80762,30.4696736457612 -2.41385475710134,30.46967 -2.41383,30.7583089535831 -2.28725025798837,30.8161348813177 -1.69891407634539,30.4191048520192 -1.13465911215042,30.76986 -1.01455,31.86617 -1.02736,33.9037111971045 -0.95)))","TZ","Tanzania","Africa","Africa","Eastern Africa","Sovereign country",932745.792357074,52234869,64.163,2402.09940362843 +"MULTIPOLYGON (((-8.66558956545481 27.6564258895924,-8.66512447756419 27.5894790715582,-8.68439978680905 27.395744126896,-8.6872936670174 25.8810562199889,-11.9694189111712 25.9333527694683,-11.9372244938533 23.3745942245362,-12.8742215641696 23.2848322616452,-13.1187544417747 22.7712202010963,-12.9291019352635 21.3270706242676,-16.845193650774 21.3333234725749,-17.0634232243426 20.9997521021308,-17.0204284326758 21.4223102889816,-17.0029617985611 21.4207341577966,-14.7509545557135 21.5006000839037,-14.6308326888511 21.8609398462749,-14.2211677718573 22.3101630721882,-13.891110398809 23.6910090194593,-12.5009626937254 24.7701162785782,-12.0307588363016 26.0308661972031,-11.7182197738004 26.1040917017606,-11.392554897497 26.8834239771544,-10.5512625797853 26.9908076034569,-10.1894242008776 26.8609447291074,-9.73534339032888 26.8609447291074,-9.41303748212448 27.0884760604886,-8.79488399904908 27.1206963160225,-8.81782833498667 27.6564258895924,-8.66558956545481 27.6564258895924)))","EH","Western Sahara","Africa","Africa","Northern Africa","Indeterminate",96270.6010408472,NA,NA,NA +"MULTIPOLYGON (((-122.84 49.0,-122.97421 49.0025377777778,-124.91024 49.98456,-125.62461 50.41656,-127.43561 50.83061,-127.99276 51.71583,-127.85032 52.32961,-129.12979 52.75538,-129.30523 53.56159,-130.51497 54.28757,-130.536108952737 54.8027544767992,-130.53611 54.80278,-129.98 55.285,-130.00778 55.91583,-131.70781 56.55212,-132.73042 57.69289,-133.35556 58.41028,-134.27111 58.86111,-134.945 59.27056,-135.47583 59.78778,-136.47972 59.46389,-137.4525 58.905,-138.34089 59.56211,-139.039 60.0,-140.013 60.27682,-140.99778 60.30639,-140.9925 66.00003,-140.986 69.712,-140.985987610376 69.7119983995264,-139.12052 69.47102,-137.54636 68.99002,-136.50358 68.89804,-135.62576 69.31512,-134.41464 69.62743,-132.92925 69.50534,-131.43136 69.94451,-129.79471 70.19369,-129.10773 69.77927,-128.36156 70.01286,-128.13817 70.48384,-127.44712 70.37721,-125.75632 69.48058,-124.42483 70.1584,-124.28968 69.39969,-123.06108 69.56372,-122.6835 69.85553,-121.47226 69.79778,-119.94288 69.37786,-117.60268 69.01128,-116.22643 68.84151,-115.2469 68.90591,-113.89794 68.3989,-115.30489 67.90261,-113.49727 67.68815,-110.798 67.80612,-109.94619 67.98104,-108.8802 67.38144,-107.79239 67.88736,-108.81299 68.31164,-108.16721 68.65392,-106.95 68.7,-106.15 68.8,-105.34282 68.56122,-104.33791 68.018,-103.22115 68.09775,-101.45433 67.64689,-99.90195 67.80566,-98.4432 67.78165,-98.5586 68.40394,-97.66948 68.57864,-96.11991 68.23939,-96.12588 67.29338,-95.48943 68.0907,-94.685 68.06383,-94.23282 69.06903,-95.30408 69.68571,-96.47131 70.08976,-96.39115 71.19482,-95.2088 71.92053,-93.88997 71.76015,-92.87818 71.31869,-91.51964 70.19129,-92.40692 69.69997,-90.5471 69.49766,-90.55151 68.47499,-89.21515 69.25873,-88.01966 68.61508,-88.31749 67.87338,-87.35017 67.19872,-86.30607 67.92146,-85.57664 68.78456,-85.52197 69.88211,-84.10081 69.80539,-82.62258 69.65826,-81.28043 69.16202,-81.2202 68.66567,-81.96436 68.13253,-81.25928 67.59716,-81.38653 67.11078,-83.34456 66.41154,-84.73542 66.2573,-85.76943 66.55833,-86.0676 66.05625,-87.03143 65.21297,-87.32324 64.77563,-88.48296 64.09897,-89.91444 64.03273,-90.70398 63.61017,-90.77004 62.96021,-91.93342 62.83508,-93.15698 62.02469,-94.24153 60.89865,-94.62931 60.11021,-94.6846 58.94882,-93.21502 58.78212,-92.76462 57.84571,-92.29703 57.08709,-90.89769 57.28468,-89.03953 56.85172,-88.03978 56.47162,-87.32421 55.99914,-86.07121 55.72383,-85.01181 55.3026,-83.36055 55.24489,-82.27285 55.14832,-82.4362 54.28227,-82.12502 53.27703,-81.40075 52.15788,-79.91289 51.20842,-79.14301 51.53393,-78.60191 52.56208,-79.12421 54.14145,-79.82958 54.66772,-78.22874 55.13645,-77.0956 55.83741,-76.54137 56.53423,-76.62319 57.20263,-77.30226 58.05209,-78.51688 58.80458,-77.33676 59.85261,-77.77272 60.75788,-78.10687 62.31964,-77.41067 62.55053,-75.69621 62.2784,-74.6682 62.18111,-73.83988 62.4438,-72.90853 62.10507,-71.67708 61.52535,-71.37369 61.13717,-69.59042 61.06141,-69.62033 60.22125,-69.2879 58.95736,-68.37455 58.80106,-67.64976 58.21206,-66.20178 58.76731,-65.24517 59.87071,-64.58352 60.33558,-63.80475 59.4426,-62.50236 58.16708,-61.39655 56.96745,-61.79866 56.33945,-60.46853 55.77548,-59.56962 55.20407,-57.97508 54.94549,-57.3332 54.6265,-56.93689 53.78032,-56.15811 53.64749,-55.75632 53.27036,-55.68338 52.14664,-56.40916 51.7707,-57.12691 51.41972,-58.77482 51.0643,-60.03309 50.24277,-61.72366 50.08046,-63.86251 50.29099,-65.36331 50.2982,-66.39905 50.22897,-67.23631 49.51156,-68.51114 49.06836,-69.95362 47.74488,-71.10458 46.82171,-70.25522 46.98606,-68.65 48.3,-66.55243 49.1331,-65.05626 49.23278,-64.17099 48.74248,-65.11545 48.07085,-64.79854 46.99297,-64.47219 46.23849,-63.17329 45.73902,-61.52072 45.88377,-60.51815 47.00793,-60.4486 46.28264,-59.80287 45.9204,-61.03988 45.26525,-63.25471 44.67014,-64.24656 44.26553,-65.36406 43.54523,-66.1234 43.61867,-66.16173 44.46512,-64.42549 45.29204,-66.02605 45.25931,-67.13741 45.13753,-67.79134 45.70281,-67.79046 47.06636,-68.23444 47.35486,-68.905 47.185,-69.237216 47.447781,-69.99997 46.69307,-70.305 45.915,-70.66 45.46,-71.08482 45.30524,-71.405 45.255,-71.50506 45.0082,-73.34783 45.00738,-74.867 45.00048,-75.31821 44.81645,-76.375 44.09631,-76.5 44.0184588937586,-76.8200341458056 43.6287842880938,-77.7378850979577 43.6290555893633,-78.7202799140424 43.6250894231849,-79.1716735501119 43.4663394231843,-79.01 43.27,-78.92 42.965,-78.9393621487438 42.863611355148,-80.2474476793479 42.3661998561225,-81.2777465481672 42.2090259873068,-82.4392777167916 41.6751050888673,-82.6900892809202 41.6751050888673,-83.029810146807 41.832795722006,-83.1419996813126 41.9756810572929,-83.12 42.08,-82.9 42.43,-82.43 42.98,-82.137642381504 43.57108755144,-82.3377631254311 44.44,-82.5509246487582 45.3475165879054,-83.5928507148431 45.8168936224125,-83.4695507473947 45.9946863877125,-83.6161309475906 46.116926988299,-83.8907653470057 46.116926988299,-84.0918512641615 46.2754186061383,-84.1421195136734 46.5122258571157,-84.3367 46.40877,-84.6049 46.4396,-84.5437487454458 46.5386841904491,-84.7792382473999 46.637101955749,-84.8760798815149 46.9000833196824,-85.6523632474034 47.2202188177305,-86.4619908312283 47.553338019392,-87.4397926233003 47.94,-88.3781141832867 48.3029175888937,-89.2729174466367 48.0198082545828,-89.6 48.01,-90.83 48.27,-91.64 48.14,-92.61 48.45,-93.63087 48.60926,-94.32914 48.67074,-94.64 48.84,-94.81758 49.38905,-95.15609 49.38425,-95.1590695091721 49.0,-97.2287200000048 49.0007,-100.65 49.0,-104.04826 48.99986,-107.05 49.0,-110.05 49.0,-113 49,-116.04818 49.0,-117.03121 49.0,-120.0 49.0,-122.84 49.0)),((-83.99367 62.4528,-83.25048 62.91409,-81.87699 62.90458,-81.89825 62.7108,-83.06857 62.15922,-83.77462 62.18231,-83.99367 62.4528)),((-79.7758331298828 72.8029022216797,-80.8760986328125 73.3331832885742,-80.8338851928711 73.6931838989258,-80.3530578613281 73.7597198486328,-78.0644378662109 73.6519317626953,-76.34 73.102684989953,-76.2514038085938 72.8263854980469,-77.3144378662109 72.8555450439453,-78.3916702270508 72.8766555786133,-79.4862518310547 72.7422027587891,-79.7758331298828 72.8029022216797)),((-80.315395 62.085565,-79.92939 62.3856,-79.52002 62.36371,-79.26582 62.158675,-79.65752 61.63308,-80.09956 61.7181,-80.36215 62.01649,-80.315395 62.085565)),((-93.6127559069405 74.9799972602244,-94.1569087389739 74.5923465033869,-95.6086805895656 74.6668639187518,-96.8209321764845 74.9276231960966,-96.2885874092298 75.3778282742234,-94.8508198717892 75.6472175157609,-93.977746548218 75.296489569796,-93.6127559069405 74.9799972602244)),((-93.840003017944 77.5199972602345,-94.2956082832453 77.4913426785287,-96.1696541003101 77.5551113959769,-96.4363044909361 77.8346292182436,-94.4225772773864 77.820004787905,-93.7206562975659 77.6343313666803,-93.840003017944 77.5199972602345)),((-96.7543987699088 78.765812689927,-95.5592779202946 78.4183145209803,-95.8302949694493 78.0569412299632,-97.309842902398 77.8505972358218,-98.124289313534 78.0828569607576,-98.5528678047467 78.4581053738451,-98.6319844225855 78.8719302436384,-97.3372314115127 78.8319843614768,-96.7543987699088 78.765812689927)),((-88.1503503079603 74.392307033985,-89.7647220527584 74.5155553250012,-92.4224409655295 74.837757880341,-92.7682854886428 75.3868199734421,-92.8899059720417 75.8826553412827,-93.893824022176 76.3192436795006,-95.9624574450358 76.4413809272224,-97.1213789538295 76.7510777859476,-96.7451228503124 77.1613886583451,-94.6840858629994 77.0978783230584,-93.5739210680731 76.776295884906,-91.6050231595366 76.7785179714946,-90.7418458727493 76.4495974799568,-90.969661424508 76.0740131700595,-89.8222379218993 75.8477737494857,-89.1870828925998 75.6101655138076,-87.8382763333497 75.5661888699272,-86.3791922675886 75.4824213731821,-84.7896252102906 75.6992040066465,-82.7534445869101 75.7843150906312,-81.1285308499244 75.713983466282,-80.0575109524592 75.3368488634159,-79.8339328681484 74.9231273464872,-80.4577707587759 74.6573037787778,-81.9488425361256 74.4424590115243,-83.2288936022114 74.5640278184909,-86.0974523587333 74.4100320502612,-88.1503503079603 74.392307033985)),((-111.264443325631 78.1529560411615,-109.854451870547 77.9963247748849,-110.186938035913 77.6970148790503,-112.051191169058 77.4092288276169,-113.534278937619 77.7322065294411,-112.724586758254 78.051050116682,-111.264443325631 78.1529560411615)),((-110.963660651476 78.8044408230652,-109.663145718203 78.6019725613456,-110.881314256619 78.40691986766,-112.542091437615 78.4079017198735,-112.525890876092 78.5505545112152,-111.500010342233 78.8499935981305,-110.963660651476 78.8044408230652)),((-55.6002182684421 51.3170746933979,-56.1340358140171 50.6870097926793,-56.7958817205953 49.8123086614909,-56.1431050278843 50.1501174993829,-55.471492275603 49.9358153346685,-55.822401089081 49.5871286077791,-54.9351425848456 49.3130109726868,-54.4737753973438 49.5566911891591,-53.4765494451914 49.249138902374,-53.7860137599713 48.5167805039336,-53.0861339992263 48.6878036566036,-52.9586482407622 48.1571642116145,-52.6480987209042 47.5355484075755,-53.0691582912184 46.6554987656449,-53.521456264853 46.6182917343948,-54.1789355129025 46.807065741557,-53.9618686590605 47.6252070176019,-54.2404821437621 47.7522793646076,-55.4007730780116 46.8849938014531,-55.9974808416858 46.9197203639533,-55.2912190415528 47.389562486351,-56.2507987127806 47.6325450709874,-57.3252292547771 47.572807115258,-59.2660151841468 47.6033478867425,-59.4194941880537 47.8994538437749,-58.7965864732074 48.2515253769794,-59.2316245184566 48.5231883815378,-58.3918049790652 49.1255805527642,-57.3586897446861 50.7182740342159,-56.738650071832 51.2874382594785,-55.8709769354353 51.6320942246492,-55.4069742498866 51.5882726100657,-55.6002182684421 51.3170746933979)),((-83.8826263089198 65.1096178249635,-82.7875768704388 64.7666930202747,-81.6420137193926 64.455135809987,-81.5534403144443 63.9796092800371,-80.8173612128789 64.057485663501,-80.1034513007666 63.7259813503486,-80.9910198635957 63.411246039475,-82.547178107417 63.6517223171452,-83.1087975735651 64.1018757188397,-84.1004166328139 63.569711819098,-85.523404710619 63.0523790554241,-85.8667687649824 63.6372529161035,-87.2219832018368 63.5412381049052,-86.3527597724713 64.0358332383707,-86.2248864407651 64.8229169786082,-85.8838478258549 65.7387783881171,-85.1613079495499 65.6572846543928,-84.9757637194059 65.217518215589,-84.4640120104195 65.3717723659802,-83.8826263089198 65.1096178249635)),((-78.7706385973108 72.3521731635342,-77.8246239895596 72.749616604291,-75.6058446926757 72.2436784939374,-74.228616095665 71.7671442735579,-74.0991407945577 71.3308401557176,-72.2422257147977 71.5569245469945,-71.2000154283352 70.9200125189972,-68.7860542466849 70.5250237087743,-67.9149704657569 70.1219475368977,-66.9690333726542 69.1860873480918,-68.8051228502006 68.7201984727644,-66.4498660956339 68.067163397892,-64.8623144191952 67.8475385606516,-63.4249344549968 66.9284732123406,-61.8519813706806 66.8621206732778,-62.1631768459423 66.1602513698896,-63.9184443833842 64.9986685248329,-65.1488602362537 65.4260326198867,-66.7212190415985 66.3880410834322,-68.015016038674 66.2627257351244,-68.1412874009792 65.6897891303044,-67.0896461656234 65.108455105237,-65.7320804510998 64.6484056667586,-65.3201676093013 64.3827371283461,-64.6694062974497 63.3929267442275,-65.0138038804589 62.674185085696,-66.2750447251905 62.9450987819861,-68.7831862046927 63.7456700710518,-67.3696807522131 62.8839655625848,-66.3282972886673 62.280074774822,-66.1655682033801 61.9308971218258,-68.8773665025446 62.3301492377128,-71.0234370591939 62.9107081162959,-72.235378587519 63.3978360052952,-71.8862784491713 63.6799893256089,-73.3783062405184 64.1939631211838,-74.8344189114226 64.6790756293238,-74.8185025702767 64.3890933295179,-77.7099798245201 64.2295423448168,-78.5559488593542 64.5729063991801,-77.897281053362 65.3091922064747,-76.0182742987972 65.3269688991831,-73.9597952948827 65.4547647162409,-74.2938834296496 65.8117713487294,-73.9449124823826 66.3105781114267,-72.6511671617394 67.2845755072639,-72.926059943316 67.7269257676823,-73.3116178046457 68.0694371609129,-74.8433072577768 68.5546271837013,-76.8691009182667 68.8947356228303,-76.2286490546574 69.1477692735474,-77.2873699612371 69.7695401068832,-78.1686339993266 69.8264875352689,-78.9572421943167 70.1668801947754,-79.4924550035637 69.8718077663888,-81.3054709540918 69.7431851264144,-84.9447061835985 69.9666340196444,-87.0600034248179 70.2600011257654,-88.6817132230015 70.4107412787608,-89.513419562523 70.7620376654809,-88.4677211168808 71.2181855333213,-89.8881512112875 71.22255219185,-90.205160285182 72.2350743679608,-89.436576707705 73.1294642198524,-88.4082415433129 73.5378889024712,-85.826151089201 73.8038158230452,-86.5621785143341 73.1574470079384,-85.7743713040445 72.5341258816339,-84.8501124742882 73.3402782253871,-82.315590176101 73.7509508328106,-80.6000876533077 72.7165436876242,-80.7489416165244 72.0619066433507,-78.7706385973108 72.3521731635342)),((-94.5036575996524 74.1349067247392,-92.4200121732117 74.1000251329422,-90.5097928535426 73.8567324897121,-92.0039652168299 72.9662442084585,-93.1962955391003 72.7719924994733,-94.2690465970473 72.024596259236,-95.4098555163227 72.0618808051346,-96.0337450833824 72.9402768012318,-96.018267991911 73.4374299180958,-95.495793423224 73.8624168972642,-94.5036575996524 74.1349067247392)),((-122.854924486159 76.1165428738357,-122.854925293603 76.1165428738357,-121.157535360328 76.8645075548283,-119.103938971821 77.5122199571746,-117.570130784966 77.4983189968881,-116.198586595507 77.6452867703262,-116.335813361458 76.8769615750106,-117.106050584769 76.5300318468191,-118.040412157038 76.4811717800871,-119.899317586886 76.053213406062,-121.499995077126 75.9000186225328,-122.854924486159 76.1165428738357)),((-132.710007884431 54.0400093154236,-131.749989584003 54.1200043809092,-132.049480347351 52.9846214870245,-131.179042521827 52.1804328476983,-131.577829549823 52.1823707139093,-132.180428426779 52.6397071396924,-132.549992432314 53.1000149603321,-133.054611178756 53.4114688177554,-133.239664482793 53.8510802272623,-133.180004041712 54.1699754909353,-132.710007884431 54.0400093154236)),((-105.492289191493 79.3015939399292,-103.529282396238 79.1653490261916,-100.825158047269 78.8004617377787,-100.060191820052 78.3247543403159,-99.6709390938136 77.9075446642074,-101.303940192453 78.0189848904449,-102.949808722733 78.3432286648602,-105.176132778732 78.3803323432458,-104.210429450277 78.6774201524918,-105.419580451259 78.9183356798365,-105.492289191493 79.3015939399292)),((-123.510001587551 48.5100108913034,-124.0128907884 48.3708462591414,-125.655012777338 48.8250045843385,-125.954994466793 49.1799958359676,-126.850004435872 49.5300003118804,-127.029993449544 49.8149958359701,-128.059336304366 49.9949590114266,-128.444584107102 50.5391376816761,-128.358413656255 50.7706480983437,-127.30858109603 50.552573554072,-126.695000977212 50.4009032252954,-125.755006673823 50.2950182155294,-125.415001587559 49.9500005153326,-124.920768189119 49.4752749700834,-123.922508708321 49.0624836289358,-123.510001587551 48.5100108913034)),((-121.53788 74.44893,-120.10978 74.24135,-117.55564 74.18577,-116.58442 73.89607,-115.51081 73.47519,-116.76794 73.22292,-119.22 72.52,-120.46 71.82,-120.46 71.3836017930876,-123.09219 70.90164,-123.62 71.34,-125.928948737473 71.8686884630114,-125.5 72.292260811795,-124.80729 73.02256,-123.94 73.68,-124.91775 74.29275,-121.53788 74.44893)),((-107.81943 75.84552,-106.92893 76.01282,-105.881 75.9694,-105.70498 75.47951,-106.31347 75.00527,-109.7 74.85,-112.22307 74.41696,-113.74381 74.39427,-113.87135 74.72029,-111.79421 75.1625,-116.31221 75.04343,-117.7104 75.2222,-116.34602 76.19903,-115.40487 76.47887,-112.59056 76.14134,-110.81422 75.54919,-109.0671 75.47321,-110.49726 76.42982,-109.5811 76.79417,-108.54859 76.67832,-108.21141 76.20168,-107.81943 75.84552)),((-106.52259 73.07601,-105.40246 72.67259,-104.77484 71.6984,-104.46476 70.99297,-102.78537 70.49776,-100.98078 70.02432,-101.08929 69.58447,-102.73116 69.50402,-102.09329 69.11962,-102.43024 68.75282,-104.24 68.91,-105.96 69.18,-107.12254 69.11922,-109.0 68.78,-111.5341488752 68.6300591568179,-113.3132 68.53554,-113.85496 69.00744,-115.22 69.28,-116.10794 69.16821,-117.34 69.96,-116.67473 70.06655,-115.13112 70.2373,-113.72141 70.19237,-112.4161 70.36638,-114.35 70.6,-116.48684 70.52045,-117.9048 70.54056,-118.43238 70.9092,-116.11311 71.30918,-117.65568 71.2952,-119.40199 71.55859,-118.56267 72.30785,-117.86642 72.70594,-115.18909 73.31459,-114.16717 73.12145,-114.66634 72.65277,-112.44102 72.9554,-111.05039 72.4504,-109.92035 72.96113,-109.00654 72.63335,-108.18835 71.65089,-107.68599 72.06548,-108.39639 73.08953,-107.51645 73.23598,-106.52259 73.07601)),((-100.43836 72.70588,-101.54 73.36,-100.35642 73.84389,-99.16387 73.63339,-97.38 73.76,-97.12 73.47,-98.05359 72.99052,-96.54 72.56,-96.72 71.66,-98.35966 71.27285,-99.32286 71.35639,-100.01482 71.73827,-102.5 72.51,-102.48 72.83,-100.43836 72.70588)),((-106.6 73.6,-105.26 73.64,-104.5 73.42,-105.38 72.76,-106.94 73.46,-106.6 73.6)),((-98.5 76.72,-97.735585 76.25656,-97.704415 75.74344,-98.16 75.0,-99.80874 74.89744,-100.88366 75.05736,-100.86292 75.64075,-102.50209 75.5638,-102.56552 76.3366,-101.48973 76.30537,-99.98349 76.64634,-98.57699 76.58859,-98.5 76.72)),((-96.01644 80.60233,-95.32345 80.90729,-94.29843 80.97727,-94.73542 81.20646,-92.40984 81.25739,-91.13289 80.72345,-89.45 80.5093220338983,-87.81 80.32,-87.02 79.66,-85.81435 79.3369,-87.18756 79.0393,-89.03535 78.28723,-90.80436 78.21533,-92.87669 78.34333,-93.95116 78.75099,-93.93574 79.11373,-93.14524 79.3801,-94.974 79.37248,-96.07614 79.70502,-96.70972 80.15777,-96.01644 80.60233)),((-91.58702 81.89429,-90.1 82.085,-88.93227 82.11751,-86.97024 82.27961,-85.5 82.652273458057,-84.260005 82.6,-83.18 82.32,-82.42 82.86,-81.1 83.02,-79.30664 83.13056,-76.25 83.1720588235294,-75.71878 83.06404,-72.83153 83.23324,-70.665765 83.1697807583828,-68.5 83.1063215167657,-65.82735 83.02801,-63.68 82.9,-61.85 82.6286,-61.89388 82.36165,-64.334 81.92775,-66.75342 81.72527,-67.65755 81.50141,-65.48031 81.50657,-67.84 80.9,-69.4697 80.61683,-71.18 79.8,-73.2428 79.63415,-73.88 79.4301622048021,-76.90773 79.32309,-75.52924 79.19766,-76.22046 79.01907,-75.39345 78.52581,-76.34354 78.18296,-77.88851 77.89991,-78.36269 77.50859,-79.75951 77.20968,-79.61965 76.98336,-77.91089 77.022045,-77.88911 76.777955,-80.56125 76.17812,-83.17439 76.45403,-86.11184 76.29901,-87.6 76.42,-89.49068 76.47239,-89.6161 76.95213,-87.76739 77.17833,-88.26 77.9,-87.65 77.9702222222222,-84.97634 77.53873,-86.34 78.18,-87.96192 78.37181,-87.15198 78.75867,-85.37868 78.9969,-85.09495 79.34543,-86.50734 79.73624,-86.93179 80.25145,-84.19844 80.20836,-83.4086956521739 80.1,-81.84823 80.46442,-84.1 80.58,-87.59895 80.51627,-89.36663 80.85569,-90.2 81.26,-91.36786 81.5531,-91.58702 81.89429)),((-75.21597 67.44425,-75.86588 67.14886,-76.98687 67.09873,-77.2364 67.58809,-76.81166 68.14856,-75.89521 68.28721,-75.1145 68.01036,-75.10333 67.58202,-75.21597 67.44425)),((-96.2574012038006 69.4900303583218,-95.6476812038005 69.1076903583218,-96.2695212038006 68.7570403583218,-97.6174012038006 69.0600303583218,-98.4318012038005 68.9507003583218,-99.7974012038005 69.4000303583218,-98.9174012038006 69.7100303583218,-98.2182612038006 70.1435403583218,-97.1574012038005 69.8600303583218,-96.5574012038006 69.6800303583218,-96.2574012038006 69.4900303583218)),((-64.51912 49.87304,-64.17322 49.95718,-62.85829 49.70641,-61.835585 49.28855,-61.806305 49.10506,-62.29318 49.08717,-63.58926 49.40069,-64.51912 49.87304)),((-64.01486 47.03601,-63.6645 46.55001,-62.9393 46.41587,-62.01208 46.44314,-62.50391 46.03339,-62.87433 45.96818,-64.1428 46.39265,-64.39261 46.72747,-64.01486 47.03601)))","CA","Canada","North America","Americas","Northern America","Sovereign country",10036042.9767873,35535348,81.9530487804878,43079.1425247165 +"MULTIPOLYGON (((-122.84 49.0,-120.0 49.0,-117.03121 49.0,-116.04818 49.0,-113 49,-110.05 49.0,-107.05 49.0,-104.04826 48.99986,-100.65 49.0,-97.2287200000048 49.0007,-95.1590695091721 49.0,-95.15609 49.38425,-94.81758 49.38905,-94.64 48.84,-94.32914 48.67074,-93.63087 48.60926,-92.61 48.45,-91.64 48.14,-90.83 48.27,-89.6 48.01,-89.2729174466367 48.0198082545828,-88.3781141832867 48.3029175888937,-87.4397926233003 47.94,-86.4619908312283 47.553338019392,-85.6523632474034 47.2202188177305,-84.8760798815149 46.9000833196824,-84.7792382473999 46.637101955749,-84.5437487454458 46.5386841904491,-84.6049 46.4396,-84.3367 46.40877,-84.1421195136734 46.5122258571157,-84.0918512641615 46.2754186061383,-83.8907653470057 46.116926988299,-83.6161309475906 46.116926988299,-83.4695507473947 45.9946863877125,-83.5928507148431 45.8168936224125,-82.5509246487582 45.3475165879054,-82.3377631254311 44.44,-82.137642381504 43.57108755144,-82.43 42.98,-82.9 42.43,-83.12 42.08,-83.1419996813126 41.9756810572929,-83.029810146807 41.832795722006,-82.6900892809202 41.6751050888673,-82.4392777167916 41.6751050888673,-81.2777465481672 42.2090259873068,-80.2474476793479 42.3661998561225,-78.9393621487438 42.863611355148,-78.92 42.965,-79.01 43.27,-79.1716735501119 43.4663394231843,-78.7202799140424 43.6250894231849,-77.7378850979577 43.6290555893633,-76.8200341458056 43.6287842880938,-76.5 44.0184588937586,-76.375 44.09631,-75.31821 44.81645,-74.867 45.00048,-73.34783 45.00738,-71.50506 45.0082,-71.405 45.255,-71.08482 45.30524,-70.66 45.46,-70.305 45.915,-69.99997 46.69307,-69.237216 47.447781,-68.905 47.185,-68.23444 47.35486,-67.79046 47.06636,-67.79134 45.70281,-67.13741 45.13753,-66.96466 44.8097,-68.03252 44.3252,-69.06 43.98,-70.11617 43.68405,-70.645475633411 43.090238348964,-70.81489 42.8653,-70.825 42.335,-70.495 41.805,-70.08 41.78,-70.185 42.145,-69.88497 41.92283,-69.96503 41.63717,-70.64 41.475,-71.12039 41.49445,-71.86 41.32,-72.295 41.27,-72.87643 41.22065,-73.71 40.9311023516545,-72.24126 41.11948,-71.945 40.93,-73.345 40.63,-73.982 40.628,-73.952325 40.75075,-74.25671 40.47351,-73.96244 40.42763,-74.17838 39.70926,-74.90604 38.93954,-74.98041 39.1964,-75.20002 39.24845,-75.52805 39.4985,-75.32 38.96,-75.0718347647899 38.7820322301793,-75.05673 38.40412,-75.37747 38.01551,-75.94023 37.21689,-76.03127 37.2566,-75.72205 37.93705,-76.23287 38.319215,-76.35 39.15,-76.542725 38.717615,-76.32933 38.08326,-76.9899979316135 38.2399917669134,-76.30162 37.917945,-76.25874 36.9664,-75.9718 36.89726,-75.86804 36.55125,-75.72749 35.55074,-76.36318 34.80854,-77.397635 34.51201,-78.05496 33.92547,-78.55435 33.86133,-79.06067 33.49395,-79.20357 33.15839,-80.301325 32.509355,-80.86498 32.0333,-81.33629 31.44049,-81.49042 30.72999,-81.31371 30.03552,-80.98 29.18,-80.535585 28.47213,-80.53 28.04,-80.0565392849776 26.88,-80.088015 26.205765,-80.13156 25.816775,-80.38103 25.20616,-80.68 25.08,-81.17213 25.20126,-81.33 25.64,-81.71 25.87,-82.24 26.73,-82.70515 27.49504,-82.85526 27.88624,-82.65 28.55,-82.93 29.1,-83.70959 29.93656,-84.1 30.09,-85.10882 29.63615,-85.28784 29.68612,-85.7731 30.15261,-86.4 30.4,-87.53036 30.27433,-88.41782 30.3849,-89.18049 30.31598,-89.5938311784198 30.1599940048368,-89.413735 29.89419,-89.43 29.48864,-89.21767 29.29108,-89.40823 29.15961,-89.77928 29.30714,-90.15463 29.11743,-90.880225 29.148535,-91.626785 29.677,-92.49906 29.5523,-93.22637 29.78375,-93.84842 29.71363,-94.69 29.48,-95.60026 28.73863,-96.59404 28.30748,-97.14 27.83,-97.37 27.38,-97.38 26.69,-97.33 26.21,-97.14 25.87,-97.53 25.84,-98.24 26.06,-99.02 26.37,-99.3 26.84,-99.52 27.54,-100.11 28.11,-100.45584 28.69612,-100.9576 29.38071,-101.6624 29.7793,-102.48 29.76,-103.11 28.97,-103.94 29.27,-104.45697 29.57196,-104.70575 30.12173,-105.03737 30.64402,-105.63159 31.08383,-106.1429 31.39995,-106.50759 31.75452,-108.24 31.7548537181664,-108.24194 31.34222,-109.035 31.34194,-111.02361 31.33472,-113.30498 32.03914,-114.815 32.52528,-114.72139 32.72083,-115.99135 32.61239,-117.12776 32.53534,-117.295937691274 33.0462246152039,-117.944 33.6212364312014,-118.410602275898 33.7409092231244,-118.5198948228 34.0277815775758,-119.081 34.078,-119.438840642017 34.3484771782843,-120.36778 34.44711,-120.62286 34.60855,-120.74433 35.15686,-121.71457 36.16153,-122.54747 37.55176,-122.51201 37.78339,-122.95319 38.11371,-123.7272 38.95166,-123.86517 39.76699,-124.39807 40.3132,-124.17886 41.14202,-124.2137 41.99964,-124.53284 42.76599,-124.14214 43.70838,-124.020535 44.615895,-123.89893 45.52341,-124.079635 46.86475,-124.39567 47.72017,-124.687210083008 48.1844329833986,-124.566101074219 48.3797149658204,-123.12 48.04,-122.58736 47.096,-122.34 47.36,-122.5 48.18,-122.84 49.0)),((-155.40214 20.07975,-155.22452 19.99302,-155.06226 19.8591,-154.80741 19.50871,-154.83147 19.45328,-155.22217 19.23972,-155.54211 19.08348,-155.68817 18.91619,-155.93665 19.05939,-155.90806 19.33888,-156.07347 19.70294,-156.02368 19.81422,-155.85008 19.97729,-155.91907 20.17395,-155.86108 20.26721,-155.78505 20.2487,-155.40214 20.07975)),((-155.99566 20.76404,-156.07926 20.64397,-156.41445 20.57241,-156.58673 20.783,-156.70167 20.8643,-156.71055 20.92676,-156.61258 21.01249,-156.25711 20.91745,-155.99566 20.76404)),((-156.75824 21.17684,-156.78933 21.06873,-157.32521 21.09777,-157.25027 21.21958,-156.75824 21.17684)),((-158.0252 21.71696,-157.94161 21.65272,-157.65283 21.32217,-157.70703 21.26442,-157.7786 21.27729,-158.12667 21.31244,-158.2538 21.53919,-158.29265 21.57912,-158.0252 21.71696)),((-159.36569 22.21494,-159.34512 21.982,-159.46372 21.88299,-159.80051 22.06533,-159.74877 22.1382,-159.5962 22.23618,-159.36569 22.21494)),((-166.467792121425 60.3841698268978,-165.674429694664 60.2936068793063,-165.579164191734 59.9099868841875,-166.192770148767 59.754440822989,-166.848337368822 59.941406155021,-167.45527706609 60.2130691595794,-166.467792121425 60.3841698268978)),((-153.228729417921 57.9689684108725,-152.564790615835 57.901427313867,-152.141147223906 57.591058661522,-153.006314053337 57.1158421901659,-154.005090298458 56.7346768255811,-154.51640275777 56.9927489284467,-154.670992804971 57.4611957871725,-153.762779507442 57.8165746120437,-153.228729417921 57.9689684108725)),((-140.985987610376 69.7119983995264,-140.986 69.712,-140.9925 66.00003,-140.99778 60.30639,-140.013 60.27682,-139.039 60.0,-138.34089 59.56211,-137.4525 58.905,-136.47972 59.46389,-135.47583 59.78778,-134.945 59.27056,-134.27111 58.86111,-133.35556 58.41028,-132.73042 57.69289,-131.70781 56.55212,-130.00778 55.91583,-129.98 55.285,-130.53611 54.80278,-130.536108952737 54.8027544767992,-130.536110189467 54.8027534043494,-131.085818237972 55.178906155002,-131.967211467142 55.497775580459,-132.25001074286 56.3699962428974,-133.539181084356 57.1788874375621,-134.078062920296 58.1230675319669,-135.038211032279 58.1877147487639,-136.628062309955 58.2122093776704,-137.800006279686 58.4999954291038,-139.867787041413 59.5377615423891,-140.825273817133 59.7275174017651,-142.574443535564 60.084446519605,-143.95888099488 59.9991804063234,-145.925556816828 60.4586097276143,-147.114373949147 60.8846560736446,-148.224306200128 60.6729894069771,-148.018065558851 59.9783289658936,-148.570822516861 59.9141726752033,-149.727857835876 59.7056582709055,-150.608243374616 59.3682111680395,-151.716392788683 59.1558210313199,-151.859433153267 59.7449840358796,-151.409719001247 60.7258027207794,-150.346941494733 61.0335875515099,-150.621110806257 61.2844249538544,-151.895839199817 60.7271979844513,-152.578329841096 60.0616572129642,-154.019172126258 59.3502794460343,-153.287511359653 58.8647276882198,-154.232492438758 58.1463736029305,-155.30749142151 57.7277945013663,-156.308334723923 57.4227743597636,-156.556097378546 56.9799848496706,-158.117216559868 56.4636080999942,-158.433321296197 55.9941535508385,-159.603327399717 55.5666861029201,-160.289719611634 55.6435806341706,-161.223047655258 55.3647346055235,-162.237766079741 55.0241869167201,-163.069446581046 54.6897370469271,-164.785569221027 54.4041730820821,-164.94222632552 54.5722248398953,-163.848339606766 55.0394314642461,-162.870001390616 55.3480431178932,-161.804174974596 55.8949864772704,-160.563604702781 56.008054511125,-160.070559862284 56.4180553249287,-158.68444291892 57.0166751165979,-158.461097378554 57.2169212917289,-157.722770352184 57.5700005153631,-157.550274421194 58.3283263210302,-157.041674974577 58.9188845892617,-158.194731208306 58.6158023138698,-158.517217984023 58.7877814805373,-159.058606126929 58.4241861029316,-159.711667040017 58.9313902858763,-159.9812888255 58.5725491400416,-160.355271165996 59.0711233587936,-161.355003425115 58.6708377142608,-161.968893602526 58.6716645371774,-162.054986538725 59.2669253607475,-161.874170702135 59.6336213242906,-162.518059048492 59.9897236192139,-163.81834143782 59.7980557318434,-164.662217577147 60.2674844427826,-165.346387702475 60.5074956325624,-165.350831875652 61.0738951686975,-166.121379157556 61.5000190293762,-165.734451870771 62.0749968532718,-164.919178636718 62.6330764838079,-164.562507901039 63.146378485763,-163.753332485997 63.2194489610238,-163.067224494458 63.059458726648,-162.260555386382 63.5419357367412,-161.534449836249 63.4558169623268,-160.772506680321 63.7661081000232,-160.958335130843 64.2227985704027,-161.518068407212 64.4027875840753,-160.777777676415 64.7886038275664,-161.391926235988 64.7772350124623,-162.453050096669 64.5594446885682,-162.757786017894 64.3386054551688,-163.546394212884 64.5591604681905,-164.960829841145 64.4469450954688,-166.425288255864 64.6866720648707,-166.845004238939 65.0888955756145,-168.110560065767 65.6699970567367,-166.705271166022 66.0883177761394,-164.474709642575 66.5766600612975,-163.652511766596 66.5766600612975,-163.788601651036 66.0772073431967,-161.67777442121 66.1161196967124,-162.48971452538 66.7355650905951,-163.719716966791 67.1163945583701,-164.430991380857 67.6163382025778,-165.390286831707 68.0427721218502,-166.764440680996 68.3588768581797,-166.204707404627 68.8830309109161,-164.430810513343 68.9155353868277,-163.168613654614 69.3711148139129,-162.930566169262 69.8580618353993,-161.908897264636 70.3333299831876,-160.934796515934 70.4476899278496,-159.039175788387 70.8916421576689,-158.119722866834 70.824721177851,-156.580824551398 71.3577635769417,-155.067790290324 71.1477763943237,-154.344165208941 70.6964085964702,-153.900006273393 70.8899885118357,-152.210006069935 70.8299921739448,-152.270002407826 70.6000062120298,-150.739992438744 70.4300165880057,-149.720003018167 70.5300104844904,-147.613361579357 70.2140349392418,-145.689989800225 70.1200096706867,-144.920010959076 69.9899917670405,-143.589446180425 70.1525141465983,-142.072510348713 69.8519381781726,-140.985987521561 69.7119983995264,-140.985987610376 69.7119983995264)),((-171.731656867539 63.7825153672759,-171.114433560245 63.592191067145,-170.491112433941 63.6949754909735,-169.682505459654 63.4311156276912,-168.689439460301 63.2975062120006,-168.771940884455 63.1885981309454,-169.529439867205 62.9769314642779,-170.290556200216 63.1944375677944,-170.671385667991 63.3758218451389,-171.553063117539 63.3177892116751,-171.791110602891 63.4058458523005,-171.731656867539 63.7825153672759)))","US","United States","North America","Americas","Northern America","Country",9510743.74482458,318622525,78.8414634146341,51921.9846391384 +"MULTIPOLYGON (((87.3599703307626 49.2149807806291,86.5987764831034 48.5491816269806,85.7682328633083 48.455750637397,85.7204838398707 47.4529694687731,85.1642903991132 47.0009557155161,83.1804838398605 47.3300312363509,82.4589258157691 45.5396495631665,81.9470707539181 45.3170274928531,79.9661063984414 44.9175169948046,80.8662064961013 43.180362046881,80.1801501809943 42.9200678574269,80.2599902688853 42.3499992945991,79.6436454609401 42.4966828476595,79.1421773619798 42.8560924342495,77.6583919615832 42.9606855332083,76.0003536314985 42.9880223658907,75.636964959622 42.8778998886767,74.2128658385226 43.2983393418034,73.6453035826609 43.0912718776099,73.4897575214624 42.5008944768913,71.8446382994506 42.8453954127651,71.1862805520521 42.7042929143921,70.9623148944991 42.2661542832055,70.3889648782208 42.0813076848975,69.0700272968352 41.3842442897123,68.63248294462 40.6686807317668,68.2598958677956 40.6623245305949,67.9858557473518 41.1359907089822,66.7140470722165 41.1684435084615,66.5106486347157 41.9876441513686,66.0233915546356 41.994646307944,66.0980123228651 42.9976600205131,64.9008244159593 43.7280805527426,63.1857869810566 43.650074978198,62.0133004087863 43.5044766302156,61.0583199400324 44.4058169622505,60.2399719582583 44.7840367701947,58.6899890480958 45.5000137395987,58.5031270689284 45.586804307633,55.9289172707411 44.9958584661591,55.9681913592829 41.3086416692694,55.4552510923538 41.2598591171858,54.7553454933926 42.0439714625666,54.079417759015 42.3241094020208,52.9442932472917 42.1160342473976,52.5024597511961 41.7833155380864,52.4463391457272 42.0271507838556,52.6921122577073 42.4438953720734,52.5014262225503 42.7922978785852,51.3424271991082 43.1329747584693,50.8912919452002 44.0310336370538,50.3391292661614 44.2840156113385,50.3056429380363 44.6098355169389,51.2785034523632 44.5148542343865,51.316899041556 45.2459982366679,52.1673897642157 45.4083914251451,53.0408764992452 45.2590465358218,53.2208655129177 46.2346459010599,53.0427368508078 46.8530060898645,52.0420227394756 46.8046369492392,51.1919454282743 47.0487047389539,50.0340832863425 46.6089899765822,49.10116 46.39933,48.59325 46.56104,48.6947335142017 47.0756281601779,48.05725 47.74377,47.31524 47.71585,46.4664457537763 48.3941523301049,47.0436715024765 49.1520388860976,46.7515963071627 49.3560057643538,47.5494804217493 50.4546983913111,48.5778414243575 49.8747596299157,48.702381626181 50.6051284857128,50.7666483905122 51.6927623561599,52.328723585831 51.7186522487381,54.5328784523762 51.0262397324593,55.71694 50.62171,56.77798 51.04355,58.36332 51.06364,59.6422823423706 50.5454422064157,59.9328072447155 50.8421941188519,61.3374243508409 50.7990701361043,61.5880033710242 51.2726587998432,59.9675338072155 51.9604204372157,60.9272685077403 52.447548326215,60.7399931171146 52.7199864772577,61.6999861998006 52.9799964463343,60.9780664406832 53.6649933945791,61.4366 54.00625,65.1785335630959 54.3542278102721,65.66687 54.60125,68.1691003762588 54.9703917507043,69.0681669452729 55.3852501491435,70.8652665546551 55.1697335882701,71.1801310566094 54.1332852240083,72.2241500182022 54.3766553818867,73.5085160663844 54.0356167669766,73.4256787454204 53.4898102891098,74.38482 53.54685,76.8911002949134 54.4905244004419,76.5251794778547 54.1770034857271,77.8009155618442 53.4044149847476,80.0355595234417 50.8647508815473,80.5684468932355 51.3883364935285,81.9459855488399 50.8121959499064,83.3830037780124 51.0691828476939,83.9351147806188 50.8892455104536,84.4163773945531 50.3113996445658,85.115559523462 50.1173029648776,85.5412699726825 49.6928585882482,86.8293567239896 49.8266747096682,87.3599703307626 49.2149807806291)))","KZ","Kazakhstan","Asia","Asia","Central Asia","Sovereign country",2729810.51298781,17288285,71.62,23587.3375151466 +"MULTIPOLYGON (((55.9681913592829 41.3086416692694,55.9289172707411 44.9958584661591,58.5031270689284 45.586804307633,58.6899890480958 45.5000137395987,60.2399719582583 44.7840367701947,61.0583199400324 44.4058169622505,62.0133004087863 43.5044766302156,63.1857869810566 43.650074978198,64.9008244159593 43.7280805527426,66.0980123228651 42.9976600205131,66.0233915546356 41.994646307944,66.5106486347157 41.9876441513686,66.7140470722165 41.1684435084615,67.9858557473518 41.1359907089822,68.2598958677956 40.6623245305949,68.63248294462 40.6686807317668,69.0700272968352 41.3842442897123,70.3889648782208 42.0813076848975,70.9623148944991 42.2661542832055,71.2592476744482 42.1677106796895,70.4200224140282 41.5199982773431,71.1578585142916 41.1435871445291,71.8701147805705 41.3929000921213,73.0554171080492 40.8660330266895,71.7748751158566 40.1458444280538,71.0141980325202 40.2443655462182,70.6014066913727 40.2185273300723,70.4581596210596 40.4964948593703,70.666622348925 40.9602133245414,69.3294946633728 40.7278244085249,69.0116329283455 40.0861581487567,68.5364164569894 39.5334528671789,67.7014286640174 39.5804784205645,67.4422196796413 39.1401435410055,68.1760250181859 38.9015534531139,68.392032505166 38.1570252548687,67.8299996275595 37.1449940048647,67.0757820982596 37.3561439072093,66.5186068052887 37.3627843287588,66.5461503437002 37.9746849635269,65.2159989765074 38.4026950139843,64.1702230162168 38.8924067245982,63.518014764261 39.3632565374256,62.374260288345 40.0538862167904,61.8827140643847 41.0848568792294,61.5471789895136 41.2663703476546,60.4659529966707 41.2203266464825,60.0833406919817 41.4251461858714,59.9764221535698 42.2230819768902,58.6290108579915 42.7515510117231,57.7865299823371 42.1705528834655,56.9322152036878 41.8260261093756,57.0963912290791 41.3223100856106,55.9681913592829 41.3086416692694)))","UZ","Uzbekistan","Asia","Asia","Central Asia","Sovereign country",461410.258459096,30757700,71.039,5370.86580208835 +"MULTIPOLYGON (((141.000210402592 -2.60015105551566,142.735246616791 -3.28915292726321,144.583970982033 -3.86141773846342,145.27317955951 -4.37373788820505,145.829786411726 -4.87649789797268,145.981921828393 -5.46560922610004,147.648073358348 -6.08365935631085,147.891107619416 -6.61401458092234,146.970905389595 -6.72165658938631,147.191873814075 -7.38802418379002,148.084635858349 -8.04410816816765,148.734105259394 -9.10466358809376,149.306835158484 -9.07143564213009,149.266630894161 -9.51440601973603,150.038728469034 -9.68431812911171,149.738798456012 -9.87293710697705,150.801627638959 -10.2936866186975,150.690574985964 -10.5827129045059,150.028393182576 -10.6524760881,149.782310012002 -10.3932671037239,148.923137648717 -10.2809225399214,147.913018426708 -10.1304407690874,147.135443150012 -9.49244353601198,146.567880894151 -8.94255461999416,146.048481073185 -8.06741423913128,144.744167922138 -7.63012826907745,143.89708784401 -7.9153304988963,143.286375767184 -8.24549122480908,143.413913202081 -8.98306894291098,142.628431431244 -9.32682057051652,142.0682589052 -9.15959563562002,141.033851760014 -9.11789275476048,141.017056919519 -5.85902190513807,141.000210402592 -2.60015105551566)),((152.640016717743 -3.65998300538969,153.019993524385 -3.98001515057327,153.140037876599 -4.49998341229409,152.827292108368 -4.76642709719099,152.638673130503 -4.17612721112092,152.406025832325 -3.78974252687458,151.953236932584 -3.46206226971182,151.38427941305 -3.03542164471011,150.662049595339 -2.74148609783393,150.939965448204 -2.50000212973401,151.479984165655 -2.77998503989138,151.820015090135 -2.99997161215789,152.239989455371 -3.24000864015364,152.640016717743 -3.65998300538969)),((151.301390415654 -5.84072844810675,150.754447056277 -6.08376270917543,150.241196730754 -6.31775359459303,149.709963006793 -6.31651336021802,148.89006473205 -6.0260401343054,148.318936802361 -5.74714242922617,148.401825799757 -5.43775562909472,149.298411900021 -5.58374155031926,149.845561965127 -5.50550343182937,149.99625044169 -5.02610116945765,150.139755894165 -5.00134815838985,150.236907586874 -5.53222014732427,150.807467075808 -5.45584238039687,151.089672072554 -5.11369272219238,151.647880894171 -4.75707366294616,151.537861769821 -4.16780730552193,152.136791620084 -4.14879037843852,152.338743117481 -4.3129664038298,152.318692661752 -4.86766122805077,151.982795851855 -5.47806324628238,151.459106887009 -5.56028045005875,151.301390415654 -5.84072844810675)),((154.759990676084 -5.33998381919849,155.062917922179 -5.56679168052753,155.547746209942 -6.20065479901965,156.019965448225 -6.54001392988038,155.880025669578 -6.81999684003775,155.599991082989 -6.91999073652252,155.166994256815 -6.53593149172932,154.729191522438 -5.9008281388622,154.51411421124 -5.13911752687999,154.652503696917 -5.04243092206189,154.759990676084 -5.33998381919849)))","PG","Papua New Guinea","Oceania","Oceania","Melanesia","Sovereign country",464520.072464586,7755785,65.23,3709.08164370316 +"MULTIPOLYGON (((141.000210402592 -2.60015105551566,141.017056919519 -5.85902190513807,141.033851760014 -9.11789275476048,140.143415155193 -8.29716765710095,139.127766554928 -8.09604298262098,138.881476678625 -8.38093515384607,137.614473911693 -8.41168263105974,138.039099155835 -7.59788217532732,138.668621454015 -7.32022470462309,138.407913853102 -6.23284921633748,137.927839797111 -5.393365573756,135.989250116113 -4.54654387778907,135.1645976096 -4.46293141034082,133.662880487198 -3.53885344809754,133.367704705947 -4.02481861737031,132.983955519747 -4.11297861086025,132.756940952689 -3.74628264731712,132.753788690319 -3.31178720460705,131.989804315316 -2.8205510392405,133.066844517143 -2.46041798259844,133.780030959204 -2.47984832114018,133.696211786026 -2.2145415177537,132.232373488494 -2.21252613689432,131.836221958545 -1.61716196045965,130.942839797083 -1.43252206788078,130.51955814018 -0.937720228686089,131.867537876514 -0.695461114101789,132.380116408417 -0.369537855636949,133.985548130428 -0.780210463060456,134.143367954648 -1.15186736410362,134.422627394753 -2.76918466554238,135.457602980695 -3.36775278077915,136.293314243719 -2.30704233155615,137.440737746328 -1.70351327881936,138.329727411045 -1.70268645590269,139.184920689043 -2.05129566814367,139.92668419816 -2.40905160890031,141.000210402592 -2.60015105551566)),((124.968682489116 -8.89279021569708,125.070019972841 -9.08998748132287,125.088520135601 -9.39317310957929,124.435950148619 -10.1400009090614,123.579981724137 -10.359987481328,123.459989048355 -10.2399948055462,123.550009393407 -9.90001555749799,123.980008986508 -9.29002695072472,124.968682489116 -8.89279021569708)),((134.210133905169 -6.89523772545472,134.112775506731 -6.142467136259,134.290335728086 -5.78305754966902,134.499625278868 -5.44504200604787,134.727001580952 -5.73758228925217,134.724624465067 -6.21440073000929,134.210133905169 -6.89523772545472)),((117.88203494677 4.13755137777952,117.313232456533 3.23442820883059,118.048329705885 2.28769013102733,117.875627069166 1.82764069254893,118.996747267738 0.902219143066063,117.811858351718 0.784241848143708,117.478338657706 0.102474676917026,117.521643507967 -0.803723239753268,116.560048455879 -1.48766082113621,116.533796828275 -2.4835173478329,116.148083937649 -4.01272633221402,116.000857782049 -3.65703744874906,114.864803094545 -4.1069841447144,114.468651564595 -3.49570362713383,113.755671828264 -3.43916961020652,113.256994256648 -3.1187757299969,112.068126255341 -3.47839202231605,111.70329064336 -2.99444223390265,111.048240187628 -3.04942595786121,110.223846063276 -2.93403248455346,110.070935500124 -1.59287403728246,109.571947869914 -1.31490650798447,109.091873813923 -0.459506524257094,108.952657505328 0.415375474444318,109.069136183714 1.34193390543761,109.663260125774 2.00646698649496,109.830226678509 1.33813568766416,110.514060907027 0.773131415200965,111.159137811327 0.976478176269481,111.79754845586 0.904441229654608,112.380251906384 1.41012095784674,112.859809198052 1.4977900252299,113.80584964402 1.21754873291107,114.621355422018 1.4306881778989,115.134037306785 2.82148183838623,115.519078403792 3.1692383894944,115.865517205877 4.3065591495901,117.015214471506 4.30609406169947,117.88203494677 4.13755137777952)),((129.370997756061 -2.80215422934459,130.471344028852 -3.09376433676763,130.834836053593 -3.85847218182278,129.990546502808 -3.4463009578628,129.155248651242 -3.36263681398225,128.590683628454 -3.42867929445126,127.898891229362 -3.39343596762821,128.135879347853 -2.84365040447497,129.370997756061 -2.80215422934459)),((126.874922723499 -3.79098276124959,126.183802118027 -3.60737639731656,125.989033644719 -3.1772734513513,127.000651483265 -3.12931772218445,127.249215122589 -3.45906503663889,126.874922723499 -3.79098276124959)),((127.932377557487 2.17459625895657,128.004156121941 1.62853139892835,128.594559360876 1.54081065511288,128.688248732621 1.13238597249406,128.635952183141 0.258485826006194,128.120169712436 0.356412665199286,127.968034295769 -0.252077325037519,128.379998814 -0.7800037573313,128.100015903842 -0.899996433113031,127.696474644075 -0.266598402511534,127.399490187694 1.01172150309255,127.600511509309 1.81069082275719,127.932377557487 2.17459625895657)),((122.927566766452 0.875192368977409,124.077522414243 0.917101955566125,125.065989211122 1.64325918213153,125.240500522972 1.41983612711761,124.437035353697 0.427881171058957,123.685504998877 0.235593166500891,122.723083123873 0.431136786293337,121.056724888189 0.381217352699394,120.183083123863 0.237246812334234,120.040869582195 -0.519657891444837,120.935905389491 -1.40890593832339,121.475820754076 -0.95596200928513,123.340564813328 -0.615672702643138,123.258399285984 -1.07621306722831,122.822715285332 -0.930950616055853,122.388529901215 -1.51685800538112,121.508273553556 -1.90448292400246,122.454572381684 -3.18605844484092,122.271896193532 -3.52950001385271,123.170962762547 -4.6836931290917,123.162332798354 -5.340603936386,122.628515252779 -5.63459115969447,122.236394484548 -5.28293303794827,122.719569126477 -4.46417164471583,121.738233677254 -4.85133147544654,121.489463332201 -4.57455250409127,121.619171177254 -4.18847787843868,120.898181593918 -3.60210540122279,120.972388950689 -2.62764291749494,120.30545291553 -2.93160369223573,120.390047235192 -4.09757903403727,120.430716587405 -5.52824106203779,119.796543410319 -5.67340016034566,119.366905552245 -5.37987802492782,119.6536063986 -4.45941741294497,119.498835483886 -3.49441171632653,119.078344354327 -3.48702198650879,118.767768996253 -2.80199920004772,119.180973748859 -2.14710377361281,119.323393996255 -1.35314706788046,119.825998976726 0.154254462073482,120.035701938966 0.566477362465761,120.885779250168 1.30922272379685,121.666816847827 1.01394358968109,122.927566766452 0.875192368977409)),((120.295014276207 -10.2586499976036,118.967808465655 -9.55796925215807,119.900309686362 -9.3613404272875,120.425755649905 -9.6659213192158,120.775501743657 -9.96967538822743,120.71560875863 -10.2395813940879,120.295014276207 -10.2586499976036)),((121.341668735847 -8.53673959720607,122.00736453663 -8.46062021244015,122.903537225436 -8.09423430749077,122.756982863456 -8.6498076310607,121.25449059457 -8.93366627363996,119.92439090381 -8.81041798262384,119.920928582846 -8.44485890059112,120.715091994308 -8.23696461348091,121.341668735847 -8.53673959720607)),((118.26061648974 -8.36238331465329,118.878459914222 -8.28068287519984,119.126506789223 -8.70582488366509,117.970401645989 -8.9066394995513,117.277730747549 -9.04089487064559,116.740140822417 -9.03293670007265,117.083737420725 -8.45715789147659,117.632024367342 -8.44930307376823,117.900018345208 -8.09568124759494,118.26061648974 -8.36238331465329)),((108.486846144649 -6.42198495852574,108.623478631629 -6.7776738419907,110.539227329553 -6.87735767988173,110.759575636846 -6.46518645592175,112.614811232556 -6.94603565839763,112.978768345188 -7.59421314863459,114.478935174621 -7.77652760176033,115.705526971501 -8.37080657311687,114.564511346496 -8.75181690840486,113.464733514461 -8.3489474422574,112.559672479301 -8.37618092207522,111.522061395312 -8.30212859460097,110.586149530074 -8.122604668819,109.427667270955 -7.74066415774976,108.693655226681 -7.64160043704624,108.277763299596 -7.76665740319258,106.454102004016 -7.35489959069093,106.280624220812 -6.92489999759025,105.365486281356 -6.85141611087121,106.051645949327 -5.89591887779447,107.26500857954 -5.95498503990408,108.072091099075 -6.34576222089522,108.486846144649 -6.42198495852574)),((104.369991489685 -1.08484303142106,104.539490187602 -1.78237151449677,104.887892694114 -2.34042530681671,105.622111444117 -2.4288436824681,106.108593377713 -3.06177662517896,105.857445916774 -4.30552499757977,105.817655063909 -5.85235564537242,104.710384149191 -5.87328460045063,103.868213332131 -5.037314955265,102.584260695407 -4.22025888429818,102.156173130301 -3.6141460099468,101.399113397225 -2.79977711345916,100.9025028829 -2.05026213949783,100.141980828861 -0.650347588710986,99.2637398620603 0.183141587724634,98.9700110209133 1.04288239176454,98.6013513529431 1.82350657796557,97.6995976094499 2.45318390544206,97.1769421732498 3.3087905948986,96.4240165547573 3.86885976807792,95.3808760925135 4.97078217205369,95.2930261576173 5.47982086834479,95.9368628275417 5.43951325115712,97.4848820332771 5.24632090903395,98.3691691426557 4.2683702661264,99.1425586283358 3.59034963624087,99.6939978373224 3.17432851807514,100.641433546962 2.09938121175574,101.658012323007 2.08369741455516,102.498271112073 1.39870046631023,103.076840448013 0.561361395668868,103.838396030698 0.104541734208695,103.437645298275 -0.711945896002902,104.010788608824 -1.05921152100429,104.369991489685 -1.08484303142106)))","ID","Indonesia","Asia","Asia","South-Eastern Asia","Sovereign country",1819251.32898731,255131116,68.856,10003.0890293448 +"MULTIPOLYGON (((-68.6340102275832 -52.6363704588745,-68.25 -53.1,-67.75 -53.85,-66.45 -54.45,-65.05 -54.7,-65.5 -55.2,-66.45 -55.25,-66.95992 -54.89681,-67.56244 -54.87001,-68.63335 -54.8695,-68.6340102275832 -52.6363704588745)),((-57.625133429583 -30.2162948544543,-57.8749373032819 -31.0165560849262,-58.1424403550408 -32.0445036760762,-58.1326476711214 -33.040566908502,-58.3496111720989 -33.2631889788154,-58.4270741441044 -33.9094544410576,-58.4954420640265 -34.4314897600701,-57.2258296372637 -35.2880266253079,-57.3623587713788 -35.9773902320815,-56.7374873521054 -36.4131259091666,-56.7882852850484 -36.9015715471893,-57.7491568670835 -38.1838705380799,-59.2318570624019 -38.7202202288372,-61.2374452378656 -38.9284245745412,-62.3359569973101 -38.8277072080043,-62.1257631089629 -39.4241049130848,-62.3305309719195 -40.1725863584003,-62.1459944322052 -40.6768966611367,-62.745802781817 -41.0287614886121,-63.7704947577325 -41.1667892392637,-64.7320898098197 -40.8026770973351,-65.1180352443916 -41.0643148740289,-64.9785605536358 -42.0580009905693,-64.3034079657425 -42.3590162086695,-63.7559478420424 -42.0436866188245,-63.4580590480959 -42.5631381162224,-64.3788038804563 -42.8735584449997,-65.1818039618397 -43.4953809547678,-65.3288234117101 -44.5013660621937,-65.5652689276616 -45.0367855771698,-66.5099657863893 -45.0396277809459,-67.2937939113925 -45.5518962542552,-67.5805464341801 -46.3017729632426,-66.5970664130173 -47.0339246559538,-65.6410265774015 -47.2361345355119,-65.9850882636008 -48.1332890765311,-67.1661789618477 -48.6973373349969,-67.8160876125664 -49.8696688779704,-68.7287450832732 -50.2642184385188,-69.1385391913478 -50.7325102679478,-68.8155614895236 -51.7711040115941,-68.1499948798204 -52.3499834061277,-68.5715453762413 -52.2994438553462,-69.4983621893961 -52.1427609126373,-71.9148038397964 -52.0090223058659,-72.3294038560741 -51.4259563128724,-72.3099735175323 -50.6770097796663,-72.9757468329647 -50.7414502907343,-73.3280509101145 -50.3787850889099,-73.4154357571201 -49.318436374713,-72.6482474433149 -48.8786182594768,-72.331160854772 -48.2442383766618,-72.4473553127803 -47.7385328102535,-71.9172584703302 -46.8848381487918,-71.5520094468913 -45.5607329241771,-71.6593155585454 -44.9736886533414,-71.2227788967598 -44.7842428525594,-71.3298007880362 -44.4075216611517,-71.7936226060719 -44.2071721331561,-71.4640561591305 -43.7876111793783,-71.9154239569839 -43.4085645485174,-72.1488980780786 -42.2548881976014,-71.7468037584155 -42.051386407236,-71.9157340155776 -40.8323393694707,-71.6807612779465 -39.808164157878,-71.4135166083491 -38.9160222307911,-70.8146642727347 -38.5529952939407,-71.1186250474755 -37.5768274879472,-71.1218806627099 -36.6581238746623,-70.3647692532016 -36.0050887997899,-70.3880494859491 -35.1696875953595,-69.8173091295015 -34.1935714657983,-69.8147769843192 -33.2738860002998,-70.0743993801536 -33.0912098121481,-70.5350689358195 -31.3650102678703,-69.9190083482519 -30.3363392066683,-70.0135503811299 -29.3679228655186,-69.6561303371832 -28.4591411272337,-69.0012349107483 -27.5212138811362,-68.2955415513704 -26.8993396949358,-68.5947997707727 -26.5069088681113,-68.3860011460974 -26.1850163713652,-68.4176529608761 -24.5185547828169,-67.3284429592442 -24.025303236591,-66.9852339341777 -22.9863485653628,-67.1066735500636 -22.7359245744764,-66.2733394029248 -21.8323104794207,-64.9648921372946 -22.0758615048123,-64.3770210435423 -22.7980913225235,-63.9868381415225 -21.9936443010359,-62.8464684719216 -22.0349854468694,-62.6850571356579 -22.2490292294224,-60.8465647040099 -23.8807125790383,-60.028966030504 -24.0327963192733,-58.807128465395 -24.7714592424533,-57.7772171698179 -25.162339776309,-57.6336600409111 -25.6036565080816,-58.6181735907197 -27.1237187639471,-57.6097596909761 -27.3958985328284,-56.486701626193 -27.5484990373863,-55.6958455063982 -27.3878370093909,-54.7887949285951 -26.6217855770961,-54.6252906968236 -25.7392554664155,-54.1300496079544 -25.5476392554773,-53.6283489650487 -26.1248650041775,-53.6487353175879 -26.9234725888161,-54.4907252671355 -27.4747567685058,-55.1622863429846 -27.8819153785335,-56.2908996242391 -28.8527605120009,-57.625133429583 -30.2162948544543)))","AR","Argentina","South America","Americas","South America","Sovereign country",2784468.58938384,42981515,76.252,18797.5479465897 +"MULTIPOLYGON (((-68.6340102275832 -52.6363704588745,-68.63335 -54.8695,-67.56244 -54.87001,-66.95992 -54.89681,-67.29103 -55.30124,-68.14863 -55.61183,-68.6399908108119 -55.5800179990869,-69.2321 -55.49906,-69.95809 -55.19843,-71.00568 -55.05383,-72.2639 -54.49514,-73.2852 -53.95752,-74.66253 -52.83749,-73.8381 -53.04743,-72.43418 -53.7154,-71.10773 -54.07433,-70.59178 -53.61583,-70.26748 -52.93123,-69.34565 -52.5183,-68.6340102275832 -52.6363704588745)),((-69.590423753524 -17.5800118954193,-69.1002469550195 -18.2601254208127,-68.9668184068419 -18.9816834449041,-68.4422251044309 -19.4050684546714,-68.7571671210337 -20.3726579729045,-68.2199130927113 -21.4943466122319,-67.8281798977227 -22.8729187964822,-67.1066735500636 -22.7359245744764,-66.9852339341777 -22.9863485653628,-67.3284429592442 -24.025303236591,-68.4176529608761 -24.5185547828169,-68.3860011460974 -26.1850163713652,-68.5947997707727 -26.5069088681113,-68.2955415513704 -26.8993396949358,-69.0012349107483 -27.5212138811362,-69.6561303371832 -28.4591411272337,-70.0135503811299 -29.3679228655186,-69.9190083482519 -30.3363392066683,-70.5350689358195 -31.3650102678703,-70.0743993801536 -33.0912098121481,-69.8147769843192 -33.2738860002998,-69.8173091295015 -34.1935714657983,-70.3880494859491 -35.1696875953595,-70.3647692532016 -36.0050887997899,-71.1218806627099 -36.6581238746623,-71.1186250474755 -37.5768274879472,-70.8146642727347 -38.5529952939407,-71.4135166083491 -38.9160222307911,-71.6807612779465 -39.808164157878,-71.9157340155776 -40.8323393694707,-71.7468037584155 -42.051386407236,-72.1488980780786 -42.2548881976014,-71.9154239569839 -43.4085645485174,-71.4640561591305 -43.7876111793783,-71.7936226060719 -44.2071721331561,-71.3298007880362 -44.4075216611517,-71.2227788967598 -44.7842428525594,-71.6593155585454 -44.9736886533414,-71.5520094468913 -45.5607329241771,-71.9172584703302 -46.8848381487918,-72.4473553127803 -47.7385328102535,-72.331160854772 -48.2442383766618,-72.6482474433149 -48.8786182594768,-73.4154357571201 -49.318436374713,-73.3280509101145 -50.3787850889099,-72.9757468329647 -50.7414502907343,-72.3099735175323 -50.6770097796663,-72.3294038560741 -51.4259563128724,-71.9148038397964 -52.0090223058659,-69.4983621893961 -52.1427609126373,-68.5715453762413 -52.2994438553462,-69.4612843492267 -52.2919507726639,-69.9427795071062 -52.5379305903732,-70.8451016913546 -52.8992005285257,-71.0063321601052 -53.8332520422013,-71.429794684521 -53.8564547603004,-72.5579428778849 -53.5314100011845,-73.7027567206629 -52.8350692686072,-73.7027567206629 -52.8350700760515,-74.9467634752252 -52.262753588419,-75.2600260077785 -51.6293547503733,-74.9766324530899 -51.0433956846157,-75.4797541978836 -50.3783716774516,-75.608015102832 -48.6737728818718,-75.1827697415022 -47.7119194476232,-74.1265809801047 -46.9392534319951,-75.6443953111655 -46.6476433245721,-74.6921536933231 -45.763976332381,-74.3517093573843 -44.1030441220879,-73.2403560045152 -44.4549606259956,-72.7178039211798 -42.383355808279,-73.3888999091382 -42.1175322405696,-73.7013356187749 -43.3657764625798,-74.3319431220326 -43.2249581845844,-74.0179571194272 -41.7948129209068,-73.67709937203 -39.9422128232432,-73.2175925360906 -39.2586886533186,-73.5055594550371 -38.2828825823511,-73.5880608791911 -37.156284681956,-73.1667170884993 -37.1237802060444,-72.5531369696817 -35.5088400204911,-71.8617321438326 -33.9090927060315,-71.4384504869299 -32.4188994280308,-71.6687206692225 -30.9206446265925,-71.3700825670077 -30.095682061485,-71.4898943752764 -28.8614421526259,-70.9051238674616 -27.6403797340012,-70.724953986276 -25.7059241675873,-70.403965827095 -23.6289966773446,-70.0912458970807 -21.3933191871013,-70.164419725206 -19.7564681942562,-70.3725723944777 -18.3479753557089,-69.8584435696059 -18.092693780187,-69.590423753524 -17.5800118954193)))","CL","Chile","South America","Americas","South America","Sovereign country",814844.220487802,17613798,79.117,22195.2743713617 +"MULTIPOLYGON (((29.3399975929003 -4.49998341229409,29.5199866065729 -5.41997893638631,29.4199927100882 -5.93999887453943,29.62003217949 -6.52001515058343,30.1999967791017 -7.07998097089816,30.7400154965518 -8.34000741947091,30.7400097314221 -8.34000593035372,30.3460860531908 -8.23825652428822,29.0029122250605 -8.40703175215347,28.7348665707625 -8.52655934004458,28.4498710466728 -9.16491830814608,28.6736816749289 -9.60592498132493,28.4960697771418 -10.789883721564,28.3722530453704 -11.7936467424014,28.6424174333924 -11.9715686987823,29.3415478858691 -12.3607439103724,29.6160014177712 -12.1788945451373,29.6996138852195 -13.2572266577718,28.9342859229768 -13.2489584286051,28.523561639121 -12.6986044246967,28.15510867688 -12.2724805640179,27.3887988624238 -12.1327474911007,27.1644197934125 -11.6087484676611,26.5530875993996 -11.9244397925321,25.7523096046047 -11.7849651017764,25.4181181169732 -11.33093596766,24.783169793403 -11.238693536019,24.314516228948 -11.2628264298993,24.257155389104 -10.9519926896637,23.9122152035557 -10.9268262671375,23.4567908057674 -10.8678634578925,22.8373454118847 -11.0176217586743,22.4027982927424 -10.9930754533357,22.1552681820643 -11.0848011206538,22.2087532894864 -9.89479623783651,21.8751819190423 -9.52370777754857,21.8018013851879 -8.90870655684298,21.949130893652 -8.30590097415828,21.7464559262033 -7.92008473066715,21.7281107927397 -7.2908724910813,20.5147481625265 -7.29960580813863,20.6018229509383 -6.93931772219968,20.0916215349206 -6.94309010175699,20.0377230160402 -7.11636117923165,19.4175024756732 -7.1554285620443,19.1666133968961 -7.73818368899975,19.0167517432497 -7.98824594486013,18.4641756527527 -7.84701425540644,18.1342216325691 -7.98767750410492,17.4729700049622 -8.0685511206417,17.0899959652472 -7.54568897871253,16.8601908708452 -7.22229786542999,16.5731799658961 -6.62264454511509,16.326528354567 -5.87747039146627,13.3755973649719 -5.86424122479955,13.024869419007 -5.98438892987816,12.7351713395787 -5.9656820613885,12.3224316748635 -6.10009246177966,12.1823368669203 -5.78993051516384,12.4366882666609 -5.68430388755925,12.4680041846297 -5.248361504745,12.6316117692658 -4.99127125409294,12.9955172054652 -4.78110320396188,13.258240187237 -4.88295745200917,13.6002348161447 -4.50013844159097,14.1449560889333 -4.51000864015872,14.2090348649752 -4.7930921362536,14.5826037940132 -4.97023894615014,15.1709916520884 -4.3435071753143,15.7535400733148 -3.8551648901561,16.0062895036543 -3.53513274497253,15.9728031755292 -2.71239226645361,16.4070919125101 -1.74092701579868,16.8653068376421 -1.22581633871329,17.5237162614729 -0.743830254726987,17.63864464689 -0.424831638189247,17.6635526872547 -0.058083998213817,17.8265401547033 0.288923244626105,17.7741919287916 0.855658677571085,17.8988354834796 1.74183197672828,18.0942757504074 2.36572154378806,18.3937923519711 2.90044342692822,18.4530652198099 3.50438589112335,18.5429822119978 4.20178518311832,18.9323124528848 4.70950613038598,19.4677836442931 5.03152781821278,20.2906791521089 4.69167776124529,20.9275911801063 4.32278554932974,21.65912275563 4.22434194581372,22.4051237321955 4.02916006104732,22.7041235694363 4.63305084881016,22.8414795264681 4.71012624757348,23.2972139828501 4.60969310141422,24.4105310401463 5.10878408448913,24.8050289242624 4.89724660890235,25.1288334490033 4.92724477784779,25.2787984555143 5.17040822999719,25.6504553565575 5.25608775473712,26.4027608578625 5.15087453859087,27.0440653826047 5.12785268800484,27.3742261085175 5.23394440350006,27.9799772478428 4.40841339763737,28.4289937680269 4.28715464926449,28.6966776872988 4.45507721599694,29.1590784034465 4.38926727947323,29.715995314256 4.60080475506015,29.9535001970695 4.17369904216768,30.8338524217154 3.50917160422246,30.8338598975938 3.50916596111034,30.77334679538 2.33988332764213,31.1741492042358 2.20446523682126,30.8526701189481 1.84939647054381,30.4685075212903 1.58380544677971,30.0861535987627 1.06231273030629,29.8757788429024 0.597379868976361,29.8195032081366 -0.205310153813372,29.5878377621722 -0.587405694179381,29.5794661801409 -1.34131316488563,29.2918868344366 -1.62005584066799,29.2548348324833 -2.21510995850891,29.1174788754516 -2.29221119548838,29.0249263852168 -2.83925790773016,29.2763839047491 -3.29390715903406,29.3399975929003 -4.49998341229409)))","CD","Democratic Republic of the Congo","Africa","Africa","Middle Africa","Sovereign country",2323492.47746214,73722860,58.782,785.347340663008 +"MULTIPOLYGON (((41.58513 -1.68325,40.993 -0.85829,40.98105 2.78452,41.855083092644 3.91891192048373,42.12861 4.23413,42.76967 4.25259,43.66087 4.95755,44.9636 5.00162,47.78942 8.003,48.486735874227 8.83762624758999,48.9381295102964 9.45174896894662,48.938232863161 9.97350006758151,48.9384912453225 10.9823273787835,48.9420052427184 11.3942660587981,48.9482047585097 11.410617281698,48.9482047585099 11.410617281698,49.26776 11.43033,49.72862 11.5789,50.25878 11.67957,50.73202 12.0219,51.1112 12.02464,51.13387 11.74815,51.04153 11.16651,51.04531 10.6409,50.83418 10.27972,50.55239 9.19874,50.07092 8.08173,49.4527 6.80466,48.59455 5.33911,47.74079 4.2194,46.56476 2.85529,45.56399 2.04576,44.06815 1.05283,43.13597 0.2922,42.04157 -0.91916,41.81095 -1.44647,41.58513 -1.68325)))","SO","Somalia","Africa","Africa","Eastern Africa","Sovereign country",484332.792984678,13513125,55.467,NA +"MULTIPOLYGON (((39.20222 -4.67677,37.7669 -3.67712,37.69869 -3.09699,34.07262 -1.05982,33.9037111971045 -0.95,33.8935689696669 0.109813537861896,34.18 0.515,34.6721 1.17694,35.03599 1.90584,34.59607 3.05374,34.47913 3.5556,34.005 4.24988494736205,34.6201962678539 4.84712274208199,35.298007118233 5.506,35.8174476623535 5.3382320827908,35.8174476623535 4.77696566346189,36.1590786328556 4.44786412767277,36.8550932380081 4.44786412767277,38.120915 3.598605,38.43697 3.58851,38.67114 3.61607,38.89251 3.50074,39.5593842587659 3.42206,39.85494 3.83879,40.76848 4.25702,41.1718 3.91909,41.855083092644 3.91891192048373,40.98105 2.78452,40.993 -0.85829,41.58513 -1.68325,40.88477 -2.08255,40.63785 -2.49979,40.26304 -2.57309,40.12119 -3.27768,39.80006 -3.68116,39.60489 -4.34653,39.20222 -4.67677)))","KE","Kenya","Africa","Africa","Eastern Africa","Sovereign country",590836.914195733,46024250,66.242,2753.23613475312 +"MULTIPOLYGON (((24.5673690121521 8.22918793378547,23.8058134294668 8.66631887454253,23.459012892356 8.95428579348889,23.3947790870172 9.26506785729222,23.5572497901428 9.68121816653868,23.5543042335022 10.0892552759153,22.9775435726926 10.7144625919985,22.8641654802442 11.1423951278075,22.87622 11.38461,22.50869 11.67936,22.49762 12.26024,22.28801 12.64605,21.93681 12.58818,22.03759 12.95546,22.29658 13.37232,22.18329 13.78648,22.51202 14.09318,22.30351 14.32682,22.56795 14.94429,23.02459 15.68072,23.88689 15.61084,23.83766 19.58047,23.85 20.0,25.0 20.00304,25 22,29.02 22.0,32.9 22.0,36.86623 22.0,37.18872 21.01885,36.96941 20.83744,37.1147 19.80796,37.48179 18.61409,37.86276 18.36786,38.4100899594732 17.9983073999703,37.904 17.42754,37.16747 17.26314,36.85253 16.95655,36.75389 16.29186,36.32322 14.82249,36.42951 14.42211,36.27022 13.56333,35.86363 12.57828,35.26049 12.08286,34.83163 11.31896,34.73115 10.91017,34.25745 10.63009,33.96162 9.58358,33.97498 8.68456,33.9633927949712 9.46428522942063,33.8249634809075 9.48406084571536,33.8421308530282 9.98191463721599,33.7219592481831 10.3252620796302,33.2069380845618 10.7201116384066,33.0867664797167 11.4411412674765,33.2069380845618 12.1793382686671,32.7434190373025 12.24800775715,32.6747495488196 12.0248319195807,32.0738915245948 11.9733298032185,32.3142347342848 11.6814844771665,32.4000715948883 11.0806264529415,31.8507156870255 10.5312705450788,31.3528618955249 9.81024091600869,30.8378407319034 9.70723668328452,29.9966394979886 10.2909273353887,29.6189573113328 10.0849188699402,29.5159530786086 9.79307354388806,29.0009319149872 9.60423245056029,28.9665971707458 9.39822398511166,27.9708895877444 9.39822398511166,27.8335506107788 9.60423245056029,27.1125209817089 9.63856719480162,26.7520061671738 9.4668934735945,26.4773282132425 9.55273033419809,25.962307049621 10.1364209863024,25.7906333284139 10.4110989402337,25.069603699344 10.273759963268,24.7949257454127 9.81024091600869,24.537415163602 8.91753756573172,24.1940677211877 8.7286964724039,23.8869795808607 8.61972971293307,24.5673690121521 8.22918793378547)))","SD","Sudan","Africa","Africa","Northern Africa","Sovereign country",1850885.56479243,37737913,64.002,4188.33481399507 +"MULTIPOLYGON (((23.83766 19.58047,23.88689 15.61084,23.02459 15.68072,22.56795 14.94429,22.30351 14.32682,22.51202 14.09318,22.18329 13.78648,22.29658 13.37232,22.03759 12.95546,21.93681 12.58818,22.28801 12.64605,22.49762 12.26024,22.50869 11.67936,22.87622 11.38461,22.8641654802442 11.1423951278075,22.2311291846688 10.9718887394606,21.7238216488595 10.567055568886,21.0008683610962 9.47598521569151,20.0596854997643 9.01270600019485,19.094008009526 9.07484691002584,18.8120097185093 8.9829145369786,18.9110217627805 8.63089468020635,18.3895548845232 8.28130361575182,17.9649296403809 7.89091400800299,16.7059883968863 7.50832754152998,16.4561845231873 7.73477366783297,16.2905615576919 7.75430735923942,16.1062317237067 7.49708791750646,15.2794604834691 7.42192454673797,15.4360917497457 7.69281240481189,15.1208655127653 8.38215017336944,14.9799955583377 8.79610423424347,14.5444665869818 8.96586131432227,13.954218377344 9.54949494062669,14.171466098699 10.0213782820999,14.6272005550811 9.92091929772454,14.9093538753947 9.99212942142273,15.4678727556052 9.98233673750354,14.923564894275 10.8913251815175,14.9601518083376 11.5555740421972,14.89336 12.21905,14.4957873877628 12.8593962671373,14.5957812842476 13.3304269474779,13.9544767595056 13.3534487980638,13.9566988460941 13.9966911890169,13.5403935075508 14.3671336939012,13.97217 15.68437,15.2477311540418 16.6273058130508,15.3004411149797 17.927949937405,15.6857405941478 19.9571800806424,15.9032466976643 20.3876189234175,15.4871480648501 20.7304145370256,15.47106 21.04845,15.0968876481818 21.3085187850749,14.8513 22.86295,15.86085 23.40972,19.84926 21.49509,23.83766 19.58047)))","TD","Chad","Africa","Africa","Middle Africa","Sovereign country",1271694.59820398,13569438,52.204,2076.65000798778 +"MULTIPOLYGON (((-71.712361416293 19.7144558781674,-71.6248732164228 19.1698379582433,-71.7013026597825 18.7854169784241,-71.9451120673356 18.6169001327203,-71.6877375963059 18.3166600611045,-71.7083048163581 18.0449970565461,-72.3724761623893 18.2149608423541,-72.8444111802949 18.1456110702184,-73.454554816365 18.2179063989947,-73.9224332343357 18.030992743395,-74.4580336168248 18.3425499536827,-74.3699252997671 18.6649075383194,-73.4495422024327 18.5260529647511,-72.6949370998906 18.4457994654019,-72.334881557897 18.6684215357153,-72.7916495429249 19.101625067618,-72.7841047838103 19.4835914169034,-73.4150223456618 19.6395508895603,-73.1897906155176 19.9156839055119,-72.5796728176636 19.8715005559024,-71.712361416293 19.7144558781674)))","HT","Haiti","North America","Americas","Caribbean","Sovereign country",28540.5459842261,10572466,62.757,1652.85480345734 +"MULTIPOLYGON (((-71.7083048163581 18.0449970565461,-71.6877375963059 18.3166600611045,-71.9451120673356 18.6169001327203,-71.7013026597825 18.7854169784241,-71.6248732164228 19.1698379582433,-71.712361416293 19.7144558781674,-71.5873044501466 19.8849105900821,-70.8067061021617 19.880285549392,-70.2143649970161 19.6228852401462,-69.9508151923276 19.64799998624,-69.7692500474701 19.2932671167724,-69.2221258205799 19.3132142196371,-69.2543460761138 19.0151962346099,-68.8094119940808 18.9790744084379,-68.317943284769 18.6121975773817,-68.6893159654345 18.2051423202186,-69.1649458482489 18.4226484237351,-69.6239875962976 18.3807129989302,-69.9529339260515 18.4283069930711,-70.1332329983179 18.2459150252969,-70.5171372138142 18.1842908797888,-70.6692984686976 18.426885891183,-70.9999501207172 18.2833287622762,-71.4002099270339 17.5985643579766,-71.657661912712 17.7575727401387,-71.7083048163581 18.0449970565461)))","DO","Dominican Republic","North America","Americas","Caribbean","Sovereign country",48157.8742821646,10405844,73.483,12663.0422473566 +"MULTIPOLYGON (((178.7253 71.0988,180.0 71.5157143364283,180.0 70.8321992085467,178.903425 70.78114,178.7253 71.0988)),((49.10116 46.39933,48.64541 45.80629,47.67591 45.64149,46.68201 44.6092,47.59094 43.66016,47.49252 42.98658,48.58437 41.80888,48.5843533961134 41.8088687916207,47.987283156126 41.4058192001942,47.8156657244846 41.1514161240214,47.3733154640662 41.2197323675112,46.6860705910166 41.8271371526699,46.4049507993488 41.8606751572273,45.7764 42.09244,45.4702791684857 42.50278066667,44.537622918482 42.7119927028036,43.93121 42.55496,43.75599 42.74083,42.3944 43.2203,40.92219 43.38215,40.0769649594798 43.5531041530023,39.9550085792709 43.4349976669992,38.68 44.28,37.53912 44.65721,36.67546 45.24469,37.40317 45.40451,38.23295 46.24087,37.67372 46.63657,39.14767 47.04475,39.1212 47.26336,38.2235380388993 47.1021898463759,38.2551123390298 47.5464004583569,38.77057 47.82562,39.7382776222389 47.898937079452,39.89562 48.23241,39.67465 48.78382,40.0807890154694 49.3074299179993,40.06904 49.60105,38.5949882342134 49.9264619004237,38.0106311378569 49.9156615260747,37.3934595069952 50.3839533555036,36.6261678403254 50.2255909287451,35.356116163888 50.577197374059,35.37791 50.77394,35.0221830584179 51.2075723333715,34.2248157081543 51.2559931504289,34.1419783871905 51.5664134792063,34.3917305844571 51.7688817409259,33.7526998227358 52.3350745713318,32.7157605323671 52.2384654811621,32.4120581397877 52.2886949733498,32.15944 52.06125,31.7859924475553 52.1016775699397,31.78597 52.10168,31.5400183448623 52.7420523138464,31.305200636528 53.0739958766732,31.49764 53.16743,32.3045194841882 53.1327261419729,32.693643019346 53.3514208034322,32.4055985857512 53.618045355842,31.7312728207745 53.794029446012,31.7914241879622 53.9746385768721,31.3844722836637 54.1570563828624,30.7575338070987 54.8117709417843,30.9718359718131 55.081547756564,30.87390913262 55.5509764675034,29.8962943865224 55.7894632025304,29.3715718930307 55.6700906439362,29.2295133806603 55.9183442246664,28.1767094255779 56.1691299505788,27.8552820167225 56.7593264837843,27.7700159034409 57.2442581244112,27.2881848487515 57.4745283067038,27.7166858253157 57.7918991156244,27.42015 58.72457,28.1316992530517 59.3008251003309,27.98112 59.47537,27.981126857001 59.4753733343253,29.1177 60.02805,28.0700019215257 60.5035191279682,28.07 60.50352,30.2111072120444 61.7800277777497,31.1399910824909 62.3576927761244,31.5160921567111 62.8676874864129,30.0358724301427 63.5528136257386,30.4446846860037 64.2044534369391,29.544429559047 64.9486715765905,30.21765 65.80598,29.0545886573523 66.9442862006221,29.9774263852206 67.6982970241928,28.4459436378187 68.364612942164,28.5919295590432 69.0647769232867,29.39955 69.15692,31.1010422025976 69.5581010880562,31.10108 69.55811,32.13272 69.90595,33.77547 69.30142,36.51396 69.06342,40.29234 67.9324,41.05987 67.45713,41.12595 66.79158,40.01583 66.26618,38.38295 65.99953,33.91871 66.75961,33.18444 66.63253,34.81477 65.90015,34.8785742530787 65.4362128770482,34.94391 64.41437,36.23129 64.10945,37.01273 63.84983,37.14197 64.33471,36.5395790350898 64.76446,37.17604 65.14322,39.59345 64.52079,40.4356 64.76446,39.7626 65.49682,42.09309 66.47623,43.01604 66.41858,43.94975 66.06908,44.53226 66.75634,43.69839 67.35245,44.18795 67.95051,43.45282 68.57079,46.25 68.25,46.82134 67.68997,45.55517 67.56652,45.56202 67.01005,46.34915 66.66767,47.89416 66.88455,48.13876 67.52238,50.22766 67.99867,53.71743 68.85738,54.47171 68.80815,53.48582 68.20131,54.72628 68.09702,55.44268 68.43866,57.31702 68.46628,58.802 68.88082,59.94142 68.27844,61.07784 68.94069,60.03 69.52,60.55 69.85,63.504 69.54739,64.888115 69.234835,68.51216 68.09233,69.18068 68.61563,68.16444 69.14436,68.13522 69.35649,66.93008 69.45461,67.25976 69.92873,66.72492 70.70889,66.69466 71.02897,68.54006 71.9345,69.19636 72.84336,69.94 73.04,72.58754 72.77629,72.79603 72.22006,71.84811 71.40898,72.47011 71.09019,72.79188 70.39114,72.5647 69.02085,73.66787 68.4079,73.2387 67.7404,71.28 66.32,72.42301 66.17267,72.82077 66.53267,73.92099 66.78946,74.18651 67.28429,75.052 67.76047,74.46926 68.32899,74.93584 68.98918,73.84236 69.07146,73.60187 69.62763,74.3998 70.63175,73.1011 71.44717,74.89082 72.12119,74.65926 72.83227,75.15801 72.85497,75.68351 72.30056,75.28898 71.33556,76.35911 71.15287,75.90313 71.87401,77.57665 72.26717,79.65202 72.32011,81.5 71.75,80.61071 72.58285,80.51109 73.6482,82.25 73.85,84.65526 73.80591,86.8223 73.93688,86.00956 74.45967,87.16682 75.11643,88.31571 75.14393,90.26 75.64,92.90058 75.77333,93.23421 76.0472,95.86 76.14,96.67821 75.91548,98.92254 76.44689,100.75967 76.43028,101.03532 76.86189,101.99084 77.28754,104.3516 77.69792,106.06664 77.37389,104.705 77.1274,106.97013 76.97419,107.24 76.48,108.1538 76.72335,111.07726 76.71,113.33151 76.22224,114.13417 75.84764,113.88539 75.32779,112.77918 75.03186,110.15125 74.47673,109.4 74.18,110.64 74.04,112.11919 73.78774,113.01954 73.97693,113.52958 73.33505,113.96881 73.59488,115.56782 73.75285,118.77633 73.58772,119.02 73.12,123.20066 72.97122,123.25777 73.73503,125.38 73.56,126.97644 73.56549,128.59126 73.03871,129.05157 72.39872,128.46 71.98,129.71599 71.19304,131.28858 70.78699,132.2535 71.8363,133.85766 71.38642,135.56193 71.65525,137.49755 71.34763,138.23409 71.62803,139.86983 71.48783,139.14791 72.41619,140.46817 72.84941,149.5 72.2,150.35118 71.60643,152.9689 70.84222,157.00688 71.03141,158.99779 70.86672,159.83031 70.45324,159.70866 69.72198,160.94053 69.43728,162.27907 69.64204,164.05248 69.66823,165.94037 69.47199,167.83567 69.58269,169.57763 68.6938,170.81688 69.01363,170.0082 69.65276,170.45345 70.09703,173.64391 69.81743,175.72403 69.87725,178.6 69.4,180.0 68.9636363636365,180.0 64.9797087021985,179.99281 64.97433,178.7072 64.53493,177.41128 64.60821,178.313 64.07593,178.90825 63.25197,179.37034 62.98262,179.48636 62.56894,179.22825 62.3041,177.3643 62.5219,174.56929 61.76915,173.68013 61.65261,172.15 60.95,170.6985 60.33618,170.33085 59.88177,168.90046 60.57355,166.29498 59.78855,165.84 60.16,164.87674 59.7316,163.53929 59.86871,163.21711 59.21101,162.01733 58.24328,162.05297 57.83912,163.19191 57.61503,163.05794 56.15924,162.12958 56.12219,161.70146 55.28568,162.11749 54.85514,160.36877 54.34433,160.02173 53.20257,158.53094 52.95868,158.23118 51.94269,156.78979 51.01105,156.42 51.7,155.99182 53.15895,155.43366 55.38103,155.91442 56.76792,156.75815 57.3647,156.81035 57.83204,158.36433 58.05575,160.15064 59.31477,161.87204 60.343,163.66969 61.1409,164.47355 62.55061,163.25842 62.46627,162.65791 61.6425,160.12148 60.54423,159.30232 61.77396,156.72068 61.43442,154.21806 59.75818,155.04375 59.14495,152.81185 58.88385,151.26573 58.78089,151.33815 59.50396,149.78371 59.65573,148.54481 59.16448,145.48722 59.33637,142.19782 59.03998,138.95848 57.08805,135.12619 54.72959,136.70171 54.60355,137.19342 53.97732,138.1647 53.75501,138.80463 54.25455,139.90151 54.18968,141.34531 53.08957,141.37923 52.23877,140.59742 51.23967,140.51308 50.04553,140.06193 48.44671,138.55472 46.99965,138.21971 46.30795,136.86232 45.1435,135.51535 43.989,134.86939 43.39821,133.53687 42.81147,132.90627 42.79849,132.27807 43.28456,130.93587 42.55274,130.780004853585 42.2200103610826,130.780003660047 42.2200078132032,130.78 42.22,130.779992316578 42.2200096042772,130.64 42.395,130.63999970691 42.3950242752218,130.63386640841 42.9030146347705,131.144687941615 42.9299897324269,131.288555129115 44.1115196803483,131.02519 44.96796,131.88345421766 45.3211616074365,133.09712 45.14409,133.769643996313 46.116926988299,134.11235 47.21248,134.50081 47.57845,135.026311476787 48.4782298854439,133.373595819228 48.1834416774349,132.50669 47.78896,130.98726 47.79013,130.582293328982 48.7296874049761,129.39781782442 49.4406000840154,127.6574 49.76027,127.287455682485 50.7397972682655,126.939156528838 51.3538941514059,126.564399041857 51.7842554795327,125.946348911646 52.792798570357,125.06821129771 53.1610448268689,123.57147 53.4588,122.245747918793 53.4317259792137,121.00308475147 53.2514010687312,120.177088657717 52.7538862168412,120.725789015792 52.5162263047309,120.7382 51.96411,120.18208 51.64355,119.27939 50.58292,119.288460728026 50.142882798862,117.879244419426 49.510983384797,116.678800897286 49.8885313991214,115.485695428531 49.8051773138347,114.96210981655 50.1402473008151,114.362456496235 50.2483027207374,112.897739699354 49.543565375357,111.581230910287 49.3779682480777,110.662010532679 49.1301280788059,109.402449171997 49.2929605169576,108.475167270951 49.2825477158507,107.868175897251 49.7937051458658,106.888804152455 50.2742959661803,105.886591424587 50.4060191920922,104.62158 50.27532,103.67654544476 50.0899661321951,102.25589 50.51056,102.06521 51.25991,100.889480421963 51.5168557806383,99.9817322123235 51.634006252644,98.8614905131003 52.0473660345467,97.8257397806743 51.0109951849332,98.2317615091916 50.4224006211287,97.25976 49.72605,95.81402 49.97746,94.8159493346987 50.0134333359709,94.1475663594356 50.4805366074572,93.10421 50.49529,92.2347115417197 50.8021707220417,90.7136674336407 50.3318118353211,88.8055668476955 49.4705207383124,87.7512642760767 49.2971979844055,87.3599703307626 49.2149807806291,86.8293567239896 49.8266747096682,85.5412699726825 49.6928585882482,85.115559523462 50.1173029648776,84.4163773945531 50.3113996445658,83.9351147806188 50.8892455104536,83.3830037780124 51.0691828476939,81.9459855488399 50.8121959499064,80.5684468932355 51.3883364935285,80.0355595234417 50.8647508815473,77.8009155618442 53.4044149847476,76.5251794778547 54.1770034857271,76.8911002949134 54.4905244004419,74.38482 53.54685,73.4256787454204 53.4898102891098,73.5085160663844 54.0356167669766,72.2241500182022 54.3766553818867,71.1801310566094 54.1332852240083,70.8652665546551 55.1697335882701,69.0681669452729 55.3852501491435,68.1691003762588 54.9703917507043,65.66687 54.60125,65.1785335630959 54.3542278102721,61.4366 54.00625,60.9780664406832 53.6649933945791,61.6999861998006 52.9799964463343,60.7399931171146 52.7199864772577,60.9272685077403 52.447548326215,59.9675338072155 51.9604204372157,61.5880033710242 51.2726587998432,61.3374243508409 50.7990701361043,59.9328072447155 50.8421941188519,59.6422823423706 50.5454422064157,58.36332 51.06364,56.77798 51.04355,55.71694 50.62171,54.5328784523762 51.0262397324593,52.328723585831 51.7186522487381,50.7666483905122 51.6927623561599,48.702381626181 50.6051284857128,48.5778414243575 49.8747596299157,47.5494804217493 50.4546983913111,46.7515963071627 49.3560057643538,47.0436715024765 49.1520388860976,46.4664457537763 48.3941523301049,47.31524 47.71585,48.05725 47.74377,48.6947335142017 47.0756281601779,48.59325 46.56104,49.10116 46.39933)),((93.77766 81.0246,95.940895 81.2504,97.88385 80.746975,100.186655 79.780135,99.93976 78.88094,97.75794 78.7562,94.97259 79.044745,93.31288 79.4265,92.5454 80.14379,91.18107 80.34146,93.77766 81.0246)),((102.837815 79.28129,105.37243 78.71334,105.07547 78.30689,99.43814 77.921,101.2649 79.23399,102.08635 79.34641,102.837815 79.28129)),((138.831075 76.13676,141.471615 76.09289,145.086285 75.562625,144.3 74.82,140.61381 74.84768,138.95544 74.61148,136.97439 75.26167,137.51176 75.94917,138.831075 76.13676)),((148.22223 75.345845,150.73167 75.08406,149.575925 74.68892,147.977465 74.778355,146.11919 75.17298,146.358485 75.49682,148.22223 75.345845)),((139.86312 73.36983,140.81171 73.76506,142.06207 73.85758,143.48283 73.47525,143.60385 73.21244,142.08763 73.20544,140.038155 73.31692,139.86312 73.36983)),((44.8469580421811 80.5898098823171,46.7991386248712 80.7719176297137,48.3184774106846 80.78400991487,48.5228060239667 80.5145689969002,49.0971895688909 80.7539859077084,50.0397676938946 80.9188854031518,51.5229329771037 80.6997256538019,51.1361865578313 80.5472801785409,49.7936845233207 80.4154277615482,48.8944112485775 80.3395667589437,48.7549365578218 80.1754682482009,47.5861190122442 80.0101811795153,46.5028259621096 80.2472468126543,47.0724552752629 80.5594241401295,44.8469580421811 80.5898098823171)),((22.7310986670927 54.3275369329933,20.8922445004186 54.3125249294125,19.6606400896064 54.4260838893739,19.8884814795813 54.8661603867715,21.2684489275035 55.1904816758353,22.3157235043306 55.0152985703659,22.7577637061553 54.8565744085814,22.6510518734725 54.5827409938667,22.7310986670927 54.3275369329933)),((53.5082898293252 73.7498139513002,55.9024589374077 74.6274864773454,55.6319328143597 75.0814122585972,57.8686438332489 75.6093903673233,61.1700443866475 76.2518834500081,64.4983683612702 76.4390554877693,66.2109770038551 76.8097822130312,68.1570597675348 76.9396967638129,68.8522111347251 76.5448113064546,68.1805725442276 76.2336416694091,64.637326287703 75.7377546251362,61.5835075214148 75.2608845079468,58.4770821470534 74.3090563015628,56.986785516188 73.3330435248662,55.4193359719109 72.371267605266,55.6228377622763 71.5405947943903,57.5356925799923 70.7204639757021,56.9449792824639 70.6327432318867,53.6773751157842 70.7626577826685,53.4120166359654 71.2066616889202,51.6018945656457 71.4747590196504,51.4557536151242 72.0148810899651,52.4782751808835 72.229441636841,52.4441687355709 72.7747313503848,54.4276135597976 73.6275475124976,53.5082898293252 73.7498139513002)),((142.914615513277 53.7045775417148,143.260847609632 52.7407604030391,143.235267775648 51.7566602646888,143.648007440363 50.7476004095415,144.654147577086 48.9763906927375,143.173927850517 49.3065514186503,142.55866824765 47.861575018905,143.533492466404 46.8367280136925,143.505277134373 46.1379076198095,142.747700636974 46.7407648789265,142.092030064055 45.9667552760588,141.906925083585 46.8059288600466,142.018442824471 47.780132961613,141.904444614835 48.8591885442996,142.135800002206 49.6151630722974,142.179983351815 50.9523424342819,141.59407596249 51.9354348822025,141.682546014574 53.3019664577288,142.606934035411 53.7621450872879,142.209748976815 54.2254759792169,142.654786411713 54.3658808457539,142.914615513277 53.7045775417148)),((-174.92825 67.20589,-175.01425 66.58435,-174.33983 66.33556,-174.57182 67.06219,-171.85731 66.91308,-169.89958 65.97724,-170.89107 65.54139,-172.53025 65.43791,-172.555 64.46079,-172.95533 64.25269,-173.89184 64.2826,-174.65392 64.63125,-175.98353 64.92288,-176.20716 65.35667,-177.22266 65.52024,-178.35993 65.39052,-178.90332 65.74044,-178.68611 66.11211,-179.88377 65.87456,-179.43268 65.40411,-180.0 64.9797087021984,-180.0 68.9636363636364,-177.55 68.2,-174.92825 67.20589)),((-178.69378 70.89302,-180.0 70.8321992085467,-180.0 71.5157143364283,-179.871875 71.55762,-179.02433 71.55553,-177.577945 71.26948,-177.663575 71.13277,-178.69378 70.89302)),((33.4359880947134 45.9719173707975,33.6994618491091 46.2195728315564,34.4104017285372 46.0051623917288,34.7320173882785 45.9656657317606,34.861792128174 45.7681824319196,35.0126589700474 45.7377251998255,35.0207877947461 45.6512189804847,35.5100085792531 45.4099933945461,36.5299979998302 45.4699897324372,36.3347127621993 45.113215643894,35.2399992205282 44.9399962428517,33.8825110206529 44.3614785833442,33.3264209327601 44.5648770208449,33.5469242693494 45.0347708196749,32.4541744321055 45.3274661321761,32.6308044776792 45.519185695979,33.5881620623184 45.8515685084802,33.4359880947134 45.9719173707975)))","RU","Russian Federation","Europe","Europe","Eastern Europe","Sovereign country",17018507.4094666,143819666,70.7436585365854,25284.5862019855 +"MULTIPOLYGON (((-78.98 26.79,-78.51 26.87,-77.85 26.84,-77.82 26.58,-78.91 26.42,-78.98 26.79)),((-77.79 27.04,-77.0 26.59,-77.17255 25.87918,-77.35641 26.00735,-77.34 26.53,-77.78802 26.92516,-77.79 27.04)),((-78.19087 25.2103,-77.89 25.17,-77.54 24.34,-77.53466 23.75975,-77.78 23.71,-78.03405 24.28615,-78.40848 24.57564,-78.19087 25.2103)))","BS","Bahamas","North America","Americas","Caribbean","Sovereign country",15584.7908248632,382169,75.379,28456.8165292476 +"MULTIPOLYGON (((-61.2 -51.85,-60.0 -51.25,-59.15 -51.5,-58.55 -51.1,-57.75 -51.55,-58.05 -51.9,-59.4 -52.2,-59.85 -51.85,-60.7 -52.3,-61.2 -51.85)))","FK","Falkland Islands","South America","Americas","South America","Dependency",16363.7987423901,NA,NA,NA +"MULTIPOLYGON (((15.14282 79.67431,15.52255 80.01608,16.99085 80.05086,18.25183 79.70175,21.54383 78.95611,19.02737 78.5626,18.47172 77.82669,17.59441 77.63796,17.1182 76.80941,15.91315 76.77045,13.76259 77.38035,14.66956 77.73565,13.1706 78.02493,11.22231 78.8693,10.44453 79.65239,13.17077 80.01046,13.71852 79.66039,15.14282 79.67431)),((31.1010422025976 69.5581010880562,29.39955 69.15692,28.5919295590432 69.0647769232867,29.015572950972 69.766491197378,27.7322921078679 70.1641930202963,26.1796220232262 69.8252989773261,25.6892126807764 69.092113755969,24.7356791521267 68.6495567898215,23.6620495948308 68.8912474636505,22.3562378272474 68.8417414415149,21.2449361508107 69.3704430202931,20.6455928890895 69.1062472602009,20.0252689958579 69.0651386583127,19.8785596045813 68.4071943223726,17.9938684424643 68.5673912624774,17.7291817562653 68.0105518663163,16.7688786149855 68.0139366726314,16.1087121924568 67.3024555528369,15.108411492583 66.1938668890955,13.5556897315091 64.7870276963815,13.9199052263022 64.4454206407161,13.5719161312487 64.0491140814697,12.5799353369739 64.0662189805583,11.9305692887942 63.128317572677,11.9920642432216 61.8003624538566,12.6311466813752 61.2935716823701,12.3003658382749 60.11793284773,11.4682719255111 59.432393296946,11.0273686051969 58.8561494004594,10.3565568376161 59.4698070339254,8.38200035974359 58.3132884792332,7.04874840661327 58.0788841823573,5.66583540205042 58.5881554225937,5.30823449059068 59.6632319199938,4.99207807782898 61.9709980332843,5.91290042483789 62.6144729681827,8.55341108565574 63.4540082871965,10.5277091813668 64.4860383164975,12.3583467953064 65.8797258571932,14.7611458675816 67.8106415879952,16.4359273617289 68.5632054714617,19.1840283545785 69.8174441596178,21.3784163754206 70.2551693793461,23.0237423031615 70.2020718451662,24.5465434099385 71.0304967312372,26.3700496762218 70.9862617051954,28.1655473162029 71.1854743516806,31.2934184099655 70.4537877468599,30.0054350115228 70.1862588568849,31.1010422025976 69.5581010880562)),((27.4075057309134 80.0564057482004,25.9246505062981 79.5178339708545,23.0244657732136 79.400011705229,20.0751884294518 79.5668232286672,19.8972664730709 79.8423619656475,18.4622636247579 79.8598802761944,17.3680151709775 80.318896186027,20.4559920590106 80.5981556261323,21.9079447771154 80.357679348462,22.9192525570674 80.6571442735934,25.4476253598119 80.4073403998945,27.4075057309134 80.0564057482004)),((24.72412 77.85385,22.49032 77.44493,20.72601 77.67704,21.41611 77.93504,20.8119 78.25463,22.88426 78.45494,23.28134 78.07954,24.72412 77.85385)))","","Norway","Europe","Europe","Northern Europe","Sovereign country",397994.628980977,NA,NA,NA +"MULTIPOLYGON (((-46.76379 82.62796,-43.40644 83.22516,-39.89753 83.18018,-38.62214 83.54905,-35.08787 83.64513,-27.10046 83.51966,-20.84539 82.72669,-22.69182 82.34165,-26.51753 82.29765,-31.9 82.2,-31.39646 82.02154,-27.85666 82.13178,-24.84448 81.78697,-22.90328 82.09317,-22.07175 81.73449,-23.16961 81.15271,-20.62363 81.52462,-15.76818 81.91245,-12.77018 81.71885,-12.20855 81.29154,-16.28533 80.58004,-16.85 80.35,-20.04624 80.17708,-17.73035 80.12912,-18.9 79.4,-19.70499 78.75128,-19.67353 77.63859,-18.47285 76.98565,-20.03503 76.94434,-21.67944 76.62795,-19.83407 76.09808,-19.59896 75.24838,-20.66818 75.15585,-19.37281 74.29561,-21.59422 74.22382,-20.43454 73.81713,-20.76234 73.46436,-22.17221 73.30955,-23.56593 73.30663,-22.31311 72.62928,-22.29954 72.18409,-24.27834 72.59788,-24.79296 72.3302,-23.44296 72.08016,-22.13281 71.46898,-21.75356 70.66369,-23.53603 70.471,-24.30702 70.85649,-25.54341 71.43094,-25.20135 70.75226,-26.36276 70.22646,-23.72742 70.18401,-22.34902 70.12946,-25.02927 69.2588,-27.74737 68.47046,-30.67371 68.12503,-31.77665 68.12078,-32.81105 67.73547,-34.20196 66.67974,-36.35284 65.9789,-37.04378 65.93768,-38.37505 65.69213,-39.81222 65.45848,-40.66899 64.83997,-40.68281 64.13902,-41.1887 63.48246,-42.81938 62.68233,-42.41666 61.90093,-42.86619 61.07404,-43.3784 60.09772,-44.7875 60.03676,-46.26364 60.85328,-48.26294 60.85843,-49.23308 61.40681,-49.90039 62.38336,-51.63325 63.62691,-52.14014 64.27842,-52.27659 65.1767,-53.66166 66.09957,-53.30161 66.8365,-53.96911 67.18899,-52.9804 68.35759,-51.47536 68.72958,-51.08041 69.14781,-50.87122 69.9291,-52.013585 69.574925,-52.55792 69.42616,-53.45629 69.283625,-54.68336 69.61003,-54.75001 70.28932,-54.35884 70.821315,-53.431315 70.835755,-51.39014 70.56978,-53.10937 71.20485,-54.00422 71.54719,-55.0 71.4065369672726,-55.83468 71.65444,-54.71819 72.58625,-55.32634 72.95861,-56.12003 73.64977,-57.32363 74.71026,-58.59679 75.09861,-58.58516 75.51727,-61.26861 76.10238,-63.39165 76.1752,-66.06427 76.13486,-68.50438 76.06141,-69.66485 76.37975,-71.40257 77.00857,-68.77671 77.32312,-66.76397 77.37595,-71.04293 77.63595,-73.297 78.04419,-73.15938 78.43271,-69.37345 78.91388,-65.7107 79.39436,-65.3239 79.75814,-68.02298 80.11721,-67.15129 80.51582,-63.68925 81.21396,-62.23444 81.3211,-62.65116 81.77042,-60.28249 82.03363,-57.20744 82.19074,-54.13442 82.19962,-53.04328 81.88833,-50.39061 82.43883,-48.00386 82.06481,-46.59984 81.985945,-44.523 81.6607,-46.9007 82.19979,-46.76379 82.62796)))","GL","Greenland","North America","Americas","Northern America","Country",2206644.43953262,56295,NA,NA +"MULTIPOLYGON (((68.935 -48.625,69.58 -48.94,70.525 -49.065,70.56 -49.255,70.28 -49.71,68.745 -49.775,68.72 -49.2425,68.8675 -48.83,68.935 -48.625)))","TF","French Southern and Antarctic Lands","Seven seas (open ocean)","Seven seas (open ocean)","Seven seas (open ocean)","Dependency",11602.5718467462,NA,NA,NA +"MULTIPOLYGON (((124.968682489116 -8.89279021569708,125.08624637258 -8.65688730228468,125.947072381698 -8.43209482181503,126.644704217639 -8.39824675866385,126.95724328014 -8.2733448218144,127.335928175975 -8.3973165828826,126.967991978057 -8.66825611738889,125.925885044459 -9.10600717533335,125.088520135601 -9.39317310957929,125.070019972841 -9.08998748132287,124.968682489116 -8.89279021569708)))","TL","Timor-Leste","Asia","Asia","South-Eastern Asia","Sovereign country",14714.9313315426,1212814,68.285,6262.90551556596 +"MULTIPOLYGON (((16.3449768408952 -28.5767050106977,16.8240173682409 -28.0821615536645,17.2189286638154 -28.3559432919468,17.3874971859515 -28.7835140927298,17.8361519711095 -28.8563778622613,18.4648991228048 -29.0454619280173,19.0021273129111 -28.9724431291889,19.8947343278886 -28.4611048316608,19.8957678565344 -24.7677902157606,20.1657255388272 -24.9179619280008,20.7586092465118 -25.8681364885514,20.6664701677354 -26.4774533017049,20.8896090023717 -26.8285429826959,21.6058960303694 -26.7265337053518,22.1059688656579 -26.2802560360791,22.5795316911806 -25.9794475237081,22.8242712745149 -25.5004586727948,23.3120967953502 -25.2686898739657,23.7335697771227 -25.3901294898516,24.2112667172288 -25.6702157528736,25.0251705258258 -25.7196700985769,25.6646663754377 -25.4868160946697,25.7658488298652 -25.1748454729237,25.9416520525222 -24.6963733863332,26.4857532081233 -24.6163265927131,26.7864066911974 -24.2406906063835,27.1194096208862 -23.5743230119798,28.0172359555253 -22.8277535946591,29.432188348109 -22.0913127580676,29.839036899543 -22.1022164852812,30.3228833350918 -22.2716118303339,30.6598653500671 -22.1515674781199,31.1914091326213 -22.2515096981724,31.6703979835347 -23.6589690080739,31.9305888201243 -24.3694165992225,31.7524084815819 -25.4842839494874,31.8377779477281 -25.8433318010513,31.3331575863979 -25.660190525009,31.0440796241571 -25.7314523251394,30.9496667823599 -26.0226490211042,30.6766085141296 -26.3980783017046,30.6859619483745 -26.7438453101695,31.2827730649133 -27.285879408479,31.8680603370511 -27.1779273414213,32.0716654802811 -26.7338200823049,32.8301204770289 -26.7421916643362,32.5802649268977 -27.4701575660318,32.4621326026785 -28.3010112444206,32.203388706193 -28.7524048804901,31.5210014177789 -29.2573869768463,31.325561150851 -29.4019776343989,30.9017627296253 -29.909956963828,30.6228133481138 -30.4237757301061,30.0557161801428 -31.140269463833,28.9255526059195 -32.1720411109725,28.2197558936771 -32.7719528134489,27.464608188596 -33.2269637997788,26.4194523454928 -33.6149504534262,25.9096643409335 -33.6670402971764,25.7806282895007 -33.9446460914483,25.172861769316 -33.7968514950936,24.6778532243921 -33.9871757952246,23.5940434099346 -33.7944743792082,22.9881889177447 -33.916430759417,22.5741573422222 -33.8640825335053,21.542799106541 -34.2588387997829,20.689052768647 -34.4171753883252,20.0712610205976 -34.795136814108,19.6164050635646 -34.8191663551237,19.1932784359587 -34.4625989723098,18.8553145687699 -34.4443055152785,18.4246431820494 -33.997872816709,18.3774109229346 -34.1365206845481,18.2444991390799 -33.867751560198,18.2500801937674 -33.2814307594144,17.9251904639484 -32.6112907854534,18.2479097836112 -32.4291313616246,18.2217615088715 -31.6616329892257,17.5669177588689 -30.7257211239875,17.0644161312627 -29.8786410458592,17.0629175147262 -29.87595387138,16.3449768408952 -28.5767050106977),(28.9782625668572 -28.9555966122617,28.5417000668555 -28.6475017229376,28.0743384132078 -28.8514686011936,27.5325110206275 -29.2427108700754,26.9992619158076 -29.87595387138,27.7493970069565 -30.6451058896122,28.1072046241454 -30.545732110315,28.2910693702399 -30.2262167294543,28.8483996925077 -30.0700505510683,29.018415154748 -29.7437655575774,29.3251664568326 -29.2573869768463,28.9782625668572 -28.9555966122617)))","ZA","South Africa","Africa","Africa","Southern Africa","Sovereign country",1216400.83108031,54539571,60.993,12389.7146679241 +"MULTIPOLYGON (((28.9782625668572 -28.9555966122617,29.3251664568326 -29.2573869768463,29.018415154748 -29.7437655575774,28.8483996925077 -30.0700505510683,28.2910693702399 -30.2262167294543,28.1072046241454 -30.545732110315,27.7493970069565 -30.6451058896122,26.9992619158076 -29.87595387138,27.5325110206275 -29.2427108700754,28.0743384132078 -28.8514686011936,28.5417000668555 -28.6475017229376,28.9782625668572 -28.9555966122617)))","LS","Lesotho","Africa","Africa","Southern Africa","Sovereign country",27505.6549786909,2145785,53.268,2677.19807805197 +"MULTIPOLYGON (((-117.12776 32.53534,-115.99135 32.61239,-114.72139 32.72083,-114.815 32.52528,-113.30498 32.03914,-111.02361 31.33472,-109.035 31.34194,-108.24194 31.34222,-108.24 31.7548537181664,-106.50759 31.75452,-106.1429 31.39995,-105.63159 31.08383,-105.03737 30.64402,-104.70575 30.12173,-104.45697 29.57196,-103.94 29.27,-103.11 28.97,-102.48 29.76,-101.6624 29.7793,-100.9576 29.38071,-100.45584 28.69612,-100.11 28.11,-99.52 27.54,-99.3 26.84,-99.02 26.37,-98.24 26.06,-97.53 25.84,-97.1400083076707 25.8699974634784,-97.5280724759666 24.9921440699203,-97.7029455228422 24.2723430445267,-97.7760418363191 22.9325798609277,-97.8723667061111 22.4442117375534,-97.6990439522042 21.8986894800643,-97.3889595202368 21.4110189885258,-97.1893334622933 20.6354332544731,-96.5255755277203 19.8909308944441,-96.2921272448418 19.3203714055095,-95.90088497596 18.8280241968487,-94.8390634834427 18.5627173934622,-94.4257295397562 18.1443708358433,-93.5486512926824 18.4238369816779,-92.7861138577835 18.5248385685923,-92.0373481920904 18.7045692001034,-91.4079034085593 18.8760832788802,-90.7718698799109 19.2841203882568,-90.5335898506131 19.8674181177513,-90.4514759997012 20.7075218775204,-90.2786183336849 20.9998554549956,-89.6013211738515 21.2617257756345,-88.5438663398629 21.4936754419766,-87.6584165107577 21.458845526612,-87.0518902249481 21.5435431991383,-86.811982388033 21.3315147974448,-86.8459079658326 20.8498646102684,-87.3832911852359 20.2554047713987,-87.6210544502107 19.6465530461359,-87.4367504544418 19.4724034693123,-87.5865604316559 19.0401301131907,-87.8371911282715 18.2598159855834,-88.0906640286632 18.5166478540741,-88.3000310940937 18.4999822046599,-88.4901228502793 18.4868305526416,-88.8483438789266 17.8831981470402,-89.0298573473518 18.0015113387725,-89.1509093899955 17.9554676376004,-89.1430804105033 17.8083189966494,-90.067933519231 17.8193260767275,-91.001519945016 17.8175949162457,-91.0022692532842 17.2546577010742,-91.4539212715152 17.2521772323242,-91.0816700915007 16.9184766707994,-90.7118218655877 16.6874830184547,-90.6008467272409 16.4707778996388,-90.438866950222 16.4101097681281,-90.4644726224227 16.0695620793247,-91.747960171256 16.0665648462518,-92.2292486234063 15.2514466414959,-92.0872159492521 15.0645846623284,-92.2032295397473 14.8301028508041,-92.2277500068698 14.5388286401909,-93.3594638740618 15.6154295923437,-93.8751688301185 15.9401642928659,-94.6916564603301 16.2009752466429,-95.250227016973 16.1283181828406,-96.0533821276533 15.7520879175396,-96.5574340482283 15.6535151229428,-97.2635924954967 15.9170649276313,-98.0130299548096 16.1073117131139,-98.9476757474565 16.5660434025688,-99.6973974271471 16.7061640487282,-100.829498867581 17.1710710718421,-101.666088629954 17.6490263941096,-101.9185280017 17.916090196194,-102.478132086989 17.9757506372751,-103.500989549558 18.2922946232788,-103.917527432047 18.7485716822,-104.992009650475 19.3161339380617,-105.493038499761 19.9467672795354,-105.731396043708 20.4341018742641,-105.397772996831 20.5317186548634,-105.500660773524 20.8168950464661,-105.270752326258 21.0762848983551,-105.265817226974 21.4221035832524,-105.603160976975 21.8711459416526,-105.693413865973 22.2690803085162,-106.028716396899 22.7737523462786,-106.909980434988 23.7677743596289,-107.915448778091 24.5489153101529,-108.401904873471 25.1723139511059,-109.260198737407 25.5806094426441,-109.444089321717 25.8248839380877,-109.291643846456 26.4429340682984,-109.801457689232 26.6761756454479,-110.391731737086 27.1621149765045,-110.641018846462 27.8598760035255,-111.178918830188 27.9412405461691,-111.759606899852 28.467952582304,-112.22823462609 28.9544086776835,-112.271823696729 29.2668443873201,-112.809594489374 30.0211135930523,-113.163810594519 30.7868808049694,-113.148669399857 31.1709658879789,-113.871881069782 31.5676083440352,-114.205736660604 31.5240451116131,-114.776451178835 31.7995321721612,-114.936699795372 31.3934846054276,-114.771231859173 30.9136172551653,-114.673899298952 30.162681179316,-114.330974494263 29.7504324407074,-113.588875088335 29.061611436473,-113.424053107541 28.8261736109512,-113.271969367306 28.7547826197399,-113.140039435664 28.411289374296,-112.962298346797 28.4251903345825,-112.761587083775 27.7802167831475,-112.457910529412 27.5258137069748,-112.244951951937 27.1717267929108,-111.616489020619 26.6628172877005,-111.284674648873 25.7325898300144,-110.987819383572 25.2946062281246,-110.710006883571 24.8260043401019,-110.655048997829 24.2985946721311,-110.172856208113 24.2655475936804,-109.771847093529 23.8111825627542,-109.409104377056 23.3646723495362,-109.433392300233 23.1855876734287,-109.854219326602 22.8182715926981,-110.031391974714 22.8230775009012,-110.295070970484 23.4309732121667,-110.949501309028 24.000964260346,-111.670568407013 24.4844231226525,-112.182035895621 24.7384127873672,-112.148988817171 25.4701252304041,-112.30071082238 26.0120042994166,-112.777296719192 26.3219595403032,-113.464670783322 26.7681855331434,-113.596729906044 26.6394595403045,-113.848936733844 26.9000637883524,-114.46574662968 27.1420903589914,-115.055142178185 27.7227267522229,-114.982252570437 27.7982001815851,-114.570365566855 27.7414852971449,-114.199328782999 28.1150025497506,-114.162018398885 28.5661119654423,-114.931842210737 29.2794792750155,-115.518653937627 29.5563615992354,-115.88736528203 30.1807937688342,-116.258350389453 30.8364643417536,-116.721526252085 31.635743720012,-117.12776 32.53534)))","MX","Mexico","North America","Americas","Central America","Sovereign country",1969480.30676826,124221600,76.753,16622.5970457658 +"MULTIPOLYGON (((-57.625133429583 -30.2162948544543,-56.9760257635647 -30.1096863746361,-55.9732445949409 -30.8830758603163,-55.6015101792493 -30.8538786760714,-54.5724515448051 -31.4945114071937,-53.7879516261822 -32.0472425269876,-53.2095889959715 -32.7276661109747,-53.6505439927181 -33.2020040829818,-53.3736616684982 -33.7683777809008,-53.8064259507265 -34.3968148740022,-54.9358660548977 -34.9526465797336,-55.6740897284033 -34.7526587867641,-56.2152970037961 -34.8598357073374,-57.1396850246331 -34.4304562314242,-57.8178606838155 -34.4625472958775,-58.4270741441044 -33.9094544410576,-58.3496111720989 -33.2631889788154,-58.1326476711214 -33.040566908502,-58.1424403550408 -32.0445036760762,-57.8749373032819 -31.0165560849262,-57.625133429583 -30.2162948544543)))","UY","Uruguay","South America","Americas","South America","Sovereign country",176853.635919616,3419546,77.19,19827.5649886027 +"MULTIPOLYGON (((-53.3736616684982 -33.7683777809008,-53.6505439927181 -33.2020040829818,-53.2095889959715 -32.7276661109747,-53.7879516261822 -32.0472425269876,-54.5724515448051 -31.4945114071937,-55.6015101792493 -30.8538786760714,-55.9732445949409 -30.8830758603163,-56.9760257635647 -30.1096863746361,-57.625133429583 -30.2162948544543,-56.2908996242391 -28.8527605120009,-55.1622863429846 -27.8819153785335,-54.4907252671355 -27.4747567685058,-53.6487353175879 -26.9234725888161,-53.6283489650487 -26.1248650041775,-54.1300496079544 -25.5476392554773,-54.6252906968236 -25.7392554664155,-54.4289460923306 -25.1621847470122,-54.2934763250774 -24.570799655864,-54.2929595607545 -24.0210140927107,-54.6528342352351 -23.839578138934,-55.0279017808096 -24.0012736955752,-55.4007472397954 -23.9569353166688,-55.5176393296396 -23.5719975725266,-55.6106827459811 -22.6556193986948,-55.7979581366069 -22.3569296200478,-56.4733174302294 -22.0863001441353,-56.8815095689029 -22.2821538225215,-57.9371557277613 -22.0901758765572,-57.8706739976178 -20.732687676682,-58.166392381408 -20.1767009416537,-57.8538016424745 -19.9699952124862,-57.9499973211858 -19.4000041643068,-57.6760088771743 -18.961839694904,-57.498371141171 -18.1741875139113,-57.734558274961 -17.5524683570078,-58.2808040025023 -17.271710300366,-58.388058437724 -16.8771090633853,-58.2412198553667 -16.2995732560913,-60.158389655179 -16.2582837866901,-60.5429656642952 -15.0939104142896,-60.2511488511429 -15.0772189266593,-60.2643263413774 -14.6459790991836,-60.45919816755 -14.3540072567346,-60.5033040025111 -13.7759546851177,-61.0841212632557 -13.4793836401946,-61.7132043117608 -13.4892021623301,-62.1270808579864 -13.1987806128497,-62.8030602687964 -13.0006531714427,-63.1964987860506 -12.6270325659724,-64.3163529120316 -12.4619780412322,-65.402281460213 -11.5662704403172,-65.321898769783 -10.8958720841947,-65.4448370022054 -10.5114511043754,-65.3384352281164 -9.76198780684639,-66.6469083319628 -9.93133147546686,-67.1738012356107 -10.3068124324996,-68.0481923082054 -10.7120590145325,-68.2712536281933 -11.0145211727368,-68.7861575995495 -11.0363803035963,-69.529678107365 -10.9517343075022,-70.0937522040469 -11.123971856331,-70.5486856757284 -11.0091468237785,-70.4818938869912 -9.49011809655885,-71.3024122789215 -10.0794361304154,-72.1848907131698 -10.0535979142694,-72.5630330064656 -9.52019378015272,-73.2267134263902 -9.46221282312123,-73.0153826565326 -9.03283334720806,-73.5710593329671 -8.42444670983583,-73.9872354804297 -7.52382984785307,-73.7234014553635 -7.34099863040441,-73.7244866604416 -6.91859547285064,-73.1200274319236 -6.62993092206824,-73.2197112698146 -6.08918873456608,-72.9645072089412 -5.74125131594489,-72.8919276597873 -5.27456145591698,-71.7484057278165 -4.59398284263301,-70.9288433498836 -4.40159148521037,-70.7947688463023 -4.2512647436733,-69.8936352199966 -4.29818694419433,-69.4441019354896 -1.55628712321982,-69.4204858059322 -1.12261850342641,-69.5770653957766 -0.549991957200163,-70.0206558905701 -0.185156345219539,-70.0155657619893 0.541414292804205,-69.4523960028725 0.706158758950693,-69.2524340481191 0.602650865070075,-69.2186376614002 0.985676581217433,-69.8045967271577 1.08908112223347,-69.8169732326916 1.71480520263962,-67.8685650295588 1.69245514567339,-67.5378100246747 2.03716278727633,-67.2599975246736 1.71999868408496,-67.0650481838525 1.13011220947322,-66.8763258531226 1.25336050048934,-66.325765143485 0.724452215982012,-65.5482673814376 0.78925446207603,-65.3547133042884 1.0952822941085,-64.6110119289599 1.32873057698704,-64.1993057928905 1.49285492594602,-64.0830854966661 1.91636912679408,-63.3687880113117 2.20089956299313,-63.4228673977051 2.41106761312417,-64.2699991522658 2.49700552002557,-64.4088278876179 3.12678620036662,-64.3684944322141 3.79721039470525,-64.816064012294 4.05644521729742,-64.6286594305875 4.14848094320925,-63.8883428615742 4.02053009685457,-63.0931975978991 3.77057119385879,-62.8045330471167 4.00696503337795,-62.0854296535591 4.16212352133431,-60.9668932766015 4.53646759685664,-60.6011791652719 4.91809804933213,-60.7335741848037 5.2002772078619,-60.2136834377313 5.2444863956876,-59.9809586249049 5.01406118409814,-60.1110023667674 4.57496653891408,-59.7674057684587 4.42350291586661,-59.5380399237312 3.95880259848194,-59.8154131740579 3.60649852133209,-59.9745249090846 2.75523265218806,-59.7185457017267 2.24963043864436,-59.6460436672213 1.78689382568679,-59.0308615790026 1.31769765869272,-58.5400129868783 1.26808828369252,-58.429477098206 1.46394196207872,-58.113449876525 1.50719513590703,-57.6609710353774 1.68258494710564,-57.3358229233969 1.94853770589576,-56.7827042303608 1.86371084228865,-56.5393857489146 1.89952260986692,-55.9956980047718 1.8176671411166,-55.9056001450709 2.02199575439866,-56.0733418442903 2.2207949894255,-55.9733221095894 2.51036387777302,-55.569755011606 2.42150625244713,-55.0975874497551 2.52374807373661,-54.5247541977997 2.31184886312379,-54.0880625067173 2.10555654541463,-53.7785206772889 2.37670278565008,-53.5548392401135 2.33489655192595,-53.4184651352953 2.05338918701598,-52.939657151895 2.12485769287564,-52.5564247300184 2.50470530843705,-52.249337531124 3.24109446859624,-51.6577974106789 4.15623240805303,-51.3171463690109 4.20349050538395,-51.0697712876297 3.65039765056403,-50.5088752915337 1.90156382894246,-49.9740758937451 1.73648346598607,-49.9471007960887 1.04618968343122,-50.6992512680969 0.222984117021682,-50.3882108221321 -0.078444512536819,-48.6205667791563 -0.235489190271821,-48.5844966294166 -1.237805271005,-47.8249564275906 -0.5816179337628,-46.5665836248512 -0.941027520352776,-44.9057030909904 -1.55173959717813,-44.4176191879937 -2.13775033936798,-44.5815885076558 -2.69130828207852,-43.4187912664402 -2.38311003988979,-41.4726568263282 -2.91201832439712,-39.978665330554 -2.87305429444904,-38.5003834701966 -3.7006523576034,-37.2232521225352 -4.82094573325892,-36.4529373845764 -5.10940357831215,-35.5977957830105 -5.14950448977065,-35.2353889633476 -5.46493743248025,-34.8960298324868 -6.73819304771971,-34.729993455533 -7.34322071699297,-35.1282120427742 -8.99640146244229,-35.6369665186877 -9.64928150801781,-37.046518724097 -11.0407211239088,-37.6836116196074 -12.1711947567258,-38.4238765121884 -13.0381185848543,-38.6738870916165 -13.0576522762606,-38.9532757228025 -13.7933696428,-38.8822981430497 -15.6670537248388,-39.1610924952643 -17.2084066708085,-39.2673392400564 -17.8677462704205,-39.5835214910342 -18.2622958309689,-39.7608233302276 -19.5991134579274,-40.7747407700103 -20.9045118140524,-40.9447562322506 -21.9373169898378,-41.7541641912382 -22.3706755510375,-41.9882842677366 -22.9700704891909,-43.0747037420248 -22.9676933733055,-44.6478118556378 -23.3519593238278,-45.3521357895599 -23.7968417294286,-46.4720932684055 -24.0889686011745,-47.6489723374207 -24.8851990699277,-48.4954581365777 -25.8770248349057,-48.6410048081277 -26.6236976050909,-48.4747358872287 -27.1759119605619,-48.6615203517476 -28.1861345354357,-48.8884574041574 -28.6741150855679,-49.5873294744727 -29.2244690894763,-50.6968741522115 -30.984465020473,-51.5762261623062 -31.7776982561532,-52.256081305538 -32.2453699683947,-52.7120999822977 -33.1965780575912,-53.3736616684982 -33.7683777809008)))","BR","Brazil","South America","Americas","South America","Sovereign country",8508557.09182573,204213133,75.042,15374.2615071807 +"MULTIPOLYGON (((-69.529678107365 -10.9517343075022,-68.7861575995495 -11.0363803035963,-68.2712536281933 -11.0145211727368,-68.0481923082054 -10.7120590145325,-67.1738012356107 -10.3068124324996,-66.6469083319628 -9.93133147546686,-65.3384352281164 -9.76198780684639,-65.4448370022054 -10.5114511043754,-65.321898769783 -10.8958720841947,-65.402281460213 -11.5662704403172,-64.3163529120316 -12.4619780412322,-63.1964987860506 -12.6270325659724,-62.8030602687964 -13.0006531714427,-62.1270808579864 -13.1987806128497,-61.7132043117608 -13.4892021623301,-61.0841212632557 -13.4793836401946,-60.5033040025111 -13.7759546851177,-60.45919816755 -14.3540072567346,-60.2643263413774 -14.6459790991836,-60.2511488511429 -15.0772189266593,-60.5429656642952 -15.0939104142896,-60.158389655179 -16.2582837866901,-58.2412198553667 -16.2995732560913,-58.388058437724 -16.8771090633853,-58.2808040025023 -17.271710300366,-57.734558274961 -17.5524683570078,-57.498371141171 -18.1741875139113,-57.6760088771743 -18.961839694904,-57.9499973211858 -19.4000041643068,-57.8538016424745 -19.9699952124862,-58.166392381408 -20.1767009416537,-58.1834714422805 -19.8683993466004,-59.1150424872061 -19.3569060197754,-60.0435646226265 -19.3427466773274,-61.7863264634538 -19.633736667563,-62.2659612697708 -20.5137346330613,-62.2911793687292 -21.0516346167874,-62.6850571356579 -22.2490292294224,-62.8464684719216 -22.0349854468694,-63.9868381415225 -21.9936443010359,-64.3770210435423 -22.7980913225235,-64.9648921372946 -22.0758615048123,-66.2733394029248 -21.8323104794207,-67.1066735500636 -22.7359245744764,-67.8281798977227 -22.8729187964822,-68.2199130927113 -21.4943466122319,-68.7571671210337 -20.3726579729045,-68.4422251044309 -19.4050684546714,-68.9668184068419 -18.9816834449041,-69.1002469550195 -18.2601254208127,-69.590423753524 -17.5800118954193,-68.9596353827533 -16.5006979305713,-69.3897641669347 -15.6601290829117,-69.160346645775 -15.323973890853,-69.339534674747 -14.9531954891588,-68.9488866848366 -14.4536394181933,-68.9292238023495 -13.602683607643,-68.88007951524 -12.8997290991767,-68.6650797186896 -12.5613001440972,-69.529678107365 -10.9517343075022)))","BO","Bolivia","South America","Americas","South America","Sovereign country",1085269.59559136,10562159,68.357,6324.82725807651 +"MULTIPOLYGON (((-69.8936352199966 -4.29818694419433,-70.7947688463023 -4.2512647436733,-70.9288433498836 -4.40159148521037,-71.7484057278165 -4.59398284263301,-72.8919276597873 -5.27456145591698,-72.9645072089412 -5.74125131594489,-73.2197112698146 -6.08918873456608,-73.1200274319236 -6.62993092206824,-73.7244866604416 -6.91859547285064,-73.7234014553635 -7.34099863040441,-73.9872354804297 -7.52382984785307,-73.5710593329671 -8.42444670983583,-73.0153826565326 -9.03283334720806,-73.2267134263902 -9.46221282312123,-72.5630330064656 -9.52019378015272,-72.1848907131698 -10.0535979142694,-71.3024122789215 -10.0794361304154,-70.4818938869912 -9.49011809655885,-70.5486856757284 -11.0091468237785,-70.0937522040469 -11.123971856331,-69.529678107365 -10.9517343075022,-68.6650797186896 -12.5613001440972,-68.88007951524 -12.8997290991767,-68.9292238023495 -13.602683607643,-68.9488866848366 -14.4536394181933,-69.339534674747 -14.9531954891588,-69.160346645775 -15.323973890853,-69.3897641669347 -15.6601290829117,-68.9596353827533 -16.5006979305713,-69.590423753524 -17.5800118954193,-69.8584435696059 -18.092693780187,-70.3725723944777 -18.3479753557089,-71.3752502102369 -17.7737985165139,-71.4620407782711 -17.3634876441164,-73.4445295885004 -16.359362888253,-75.2378826565414 -15.2656828752278,-76.0092050849299 -14.6492863908503,-76.4234692043977 -13.8231869442324,-76.2592415025742 -13.5350391577729,-77.1061923896218 -12.2227161597208,-78.0921528795346 -10.3777124976041,-79.0369530911269 -8.38656788496589,-79.4459203762848 -7.93083342858386,-79.7605781725101 -7.19434091556008,-80.5374816555861 -6.54166757571372,-81.2499963040264 -6.13683440513918,-80.9263468085824 -5.69055673586656,-81.4109425523995 -4.73676482505546,-81.0996695624894 -4.0363941382037,-80.3025605943872 -3.40485645916471,-80.1840148587097 -3.82116179770804,-80.4692946031769 -4.059286797709,-80.4422419908722 -4.42572437909067,-80.0289080471856 -4.34609099692889,-79.6249792141762 -4.45419809328349,-79.2052890693177 -4.95912851320739,-78.6398972236123 -4.54778411216407,-78.4506839667756 -3.87309661216138,-77.8379048326586 -3.0030205216631,-76.6353942532267 -2.60867766684382,-75.544995693652 -1.56160979574588,-75.2337227037419 -0.911416924649529,-75.3732232327139 -0.15203175212045,-75.1066245185201 -0.05720549886486,-74.441600511356 -0.530820000819887,-74.1223951890891 -1.00283253337385,-73.6595035468346 -1.26049122478113,-73.0703922187072 -2.30895435955095,-72.3257865058137 -2.43421803142645,-71.7747607082854 -2.16978972738894,-71.4136457994298 -2.34280242270213,-70.813475714792 -2.25686451580074,-70.0477085028749 -2.7251563452297,-70.6926820543097 -3.74287200278586,-70.394043952095 -3.76659148520783,-69.8936352199966 -4.29818694419433)))","PE","Peru","South America","Americas","South America","Sovereign country",1309699.63635968,30973354,74.518,11547.8342162709 +"MULTIPOLYGON (((-66.8763258531226 1.25336050048934,-67.0650481838525 1.13011220947322,-67.2599975246736 1.71999868408496,-67.5378100246747 2.03716278727633,-67.8685650295588 1.69245514567339,-69.8169732326916 1.71480520263962,-69.8045967271577 1.08908112223347,-69.2186376614002 0.985676581217433,-69.2524340481191 0.602650865070075,-69.4523960028725 0.706158758950693,-70.0155657619893 0.541414292804205,-70.0206558905701 -0.185156345219539,-69.5770653957766 -0.549991957200163,-69.4204858059322 -1.12261850342641,-69.4441019354896 -1.55628712321982,-69.8936352199966 -4.29818694419433,-70.394043952095 -3.76659148520783,-70.6926820543097 -3.74287200278586,-70.0477085028749 -2.7251563452297,-70.813475714792 -2.25686451580074,-71.4136457994298 -2.34280242270213,-71.7747607082854 -2.16978972738894,-72.3257865058137 -2.43421803142645,-73.0703922187072 -2.30895435955095,-73.6595035468346 -1.26049122478113,-74.1223951890891 -1.00283253337385,-74.441600511356 -0.530820000819887,-75.1066245185201 -0.05720549886486,-75.3732232327139 -0.15203175212045,-75.8014658271166 0.084801337073202,-76.292314419241 0.416047268064119,-76.5763797675494 0.256935533037435,-77.4249843004304 0.395686753741117,-77.6686128404704 0.825893052570962,-77.8550614081795 0.809925034992773,-78.8552587551887 1.38092377360182,-78.990935228171 1.69136994059525,-78.6178313870237 1.76640412028306,-78.6621180894979 2.26735545492048,-78.4276104397573 2.62955556885422,-77.9315425279715 2.69660573975293,-77.510431281225 3.32501699463825,-77.1276897854553 3.84963613526536,-77.496271938777 4.08760610596943,-77.3076012844794 4.66798411703945,-77.5332205878657 5.5828119979025,-77.3188150702867 5.84535411216136,-77.4766607327223 6.6911164412663,-77.8815714179453 7.22377126711478,-77.7534138658614 7.70983978925214,-77.431107957657 7.63806122479873,-77.2425664944401 7.93527822512544,-77.4747228665113 8.52428620038822,-77.3533607652739 8.67050466555807,-76.8366739570036 8.63874949791472,-76.0863838365579 9.33682058352949,-75.6746001858401 9.4432481958346,-75.6647041490562 9.77400320071874,-75.4804259915034 10.6189903833393,-74.906895107712 11.0830447453203,-74.2767526923449 11.1020358341876,-74.1972226630477 11.3104727238369,-73.4147639635003 11.2270152856855,-72.6278352525596 11.7319715438255,-72.2381949530789 11.9555496281363,-71.7540901353686 12.4373031681773,-71.3998223537917 12.3760407576953,-71.1374611070459 12.1129818791135,-71.3315836249503 11.7762840845158,-71.9739216783383 11.6086715763771,-72.2275754462429 11.1087020939532,-72.6146577623252 10.8219754093818,-72.9052860175347 10.4503443465548,-73.0276041327696 9.73677033125244,-73.3049515448801 9.15199982343761,-72.7887298245004 9.08502716718733,-72.6604947577681 8.62528778730268,-72.439862230098 8.40527537682003,-72.360900641556 8.00263845461789,-72.4796789211788 7.63250600832735,-72.4444872707881 7.42378489830048,-72.1983524237819 7.34043081301368,-71.9601757473486 6.99161489504354,-70.6742335679815 7.08778473553872,-70.0933129543724 6.96037649172311,-69.3894799465571 6.09986054119884,-68.9853185696024 6.20680491782686,-68.2650524563182 6.15326813397247,-67.695087246355 6.26731802004065,-67.3414395819656 6.09546804445402,-67.5215319485028 5.55687042889197,-67.7446966213552 5.22112864829167,-67.8230122544935 4.5039372827289,-67.6218359035813 3.83948171631999,-67.3375638495437 3.54234223064172,-67.3031731838534 3.31845408773718,-67.8099381171237 2.82065501546957,-67.4470920477863 2.60028086996087,-67.1812943182931 2.25063812907406,-66.8763258531226 1.25336050048934)))","CO","Colombia","South America","Americas","South America","Sovereign country",1151882.92596349,47791911,74.022,12715.9673914398 +"MULTIPOLYGON (((-77.3533607652739 8.67050466555807,-77.4747228665113 8.52428620038822,-77.2425664944401 7.93527822512544,-77.431107957657 7.63806122479873,-77.7534138658614 7.70983978925214,-77.8815714179453 7.22377126711478,-78.2149360826601 7.51225495038416,-78.4291607327261 8.05204112388893,-78.1820957099386 8.31918244062177,-78.4354652574657 8.38770538984079,-78.6221205309039 8.71812449791503,-79.1203071764137 8.99609202721302,-79.5578773668452 8.93237498619715,-79.7605781725101 8.5845150822244,-80.1644811673033 8.3333159448536,-80.3826590644396 8.29840851484043,-80.4806892564973 8.09030752200107,-80.0036899482272 7.54752411542337,-80.276670701809 7.41975413658172,-80.4211580064971 7.27157196698476,-80.8864009264208 7.22054149009654,-81.0595428128147 7.8179210473906,-81.189715745758 7.64790558515034,-81.5195147366447 7.70661001223391,-81.7213112047445 8.10896271405844,-82.1314412096289 8.17539276776964,-82.3909344143826 8.29236237226229,-82.8200813463504 8.29086375572582,-82.8509580146448 8.07382274009996,-82.9657830471974 8.22502798098598,-82.9131764391242 8.42351715741907,-82.8297706774052 8.62629547773237,-82.8686571927048 8.80726634361852,-82.7191831123005 8.92570872643149,-82.9271549140592 9.07433014570292,-82.9328909980436 9.47681203860817,-82.5461962552035 9.56613475182468,-82.1871225654234 9.20744863528678,-82.207586432611 8.9955752628901,-81.8085668606693 8.95061676679617,-81.714154018872 9.03195547122358,-81.4392870755115 8.78623403567572,-80.9473016018768 8.85850352623591,-80.5219012112501 9.11107208906243,-79.914599778956 9.31276520429762,-79.5733027818843 9.61161001224153,-79.0211917792779 9.5529314233741,-79.0584504869604 9.45456533450653,-78.5008876207472 9.42045888919388,-78.055927700498 9.2477304142583,-77.7295135159264 8.94684438723887,-77.3533607652739 8.67050466555807)))","PA","Panama","North America","Americas","Central America","Sovereign country",75265.4490305216,3903986,77.61,20017.9943624961 +"MULTIPOLYGON (((-82.5461962552035 9.56613475182468,-82.9328909980436 9.47681203860817,-82.9271549140592 9.07433014570292,-82.7191831123005 8.92570872643149,-82.8686571927048 8.80726634361852,-82.8297706774052 8.62629547773237,-82.9131764391242 8.42351715741907,-82.9657830471974 8.22502798098598,-83.5084372626943 8.44692658124728,-83.7114739651691 8.65683624921687,-83.5963130358066 8.83044322350142,-83.6326415677078 9.05138580976532,-83.9098856269537 9.29080272057358,-84.3034016588564 9.48735403079571,-84.6476442125687 9.61553742109571,-84.7133507962278 9.90805186608385,-84.9756603665413 10.086723130733,-84.9113748847702 9.79599152265892,-85.1109234280653 9.55703969974131,-85.3394882880923 9.83454214114866,-85.660786505867 9.93334747969072,-85.7974448310628 10.134885565629,-85.7917087470784 10.4393372664766,-85.6593137275467 10.7543309595117,-85.9417254300218 10.8952784285878,-85.7125404528073 11.0884449324948,-85.5618519762442 11.2171192489016,-84.903003302739 10.9523033716219,-84.6730690172563 11.0826571720781,-84.355930752281 10.9992255721429,-84.1901785957049 10.7934500187567,-83.895054490886 10.7268390975324,-83.6556117418616 10.9387641463614,-83.402319708983 10.3954381372447,-83.0156766425752 9.99298208255556,-82.5461962552035 9.56613475182468)))","CR","Costa Rica","North America","Americas","Central America","Sovereign country",53832.1357021123,4757575,79.44,14372.4007814474 +"MULTIPOLYGON (((-83.6556117418616 10.9387641463614,-83.895054490886 10.7268390975324,-84.1901785957049 10.7934500187567,-84.355930752281 10.9992255721429,-84.6730690172563 11.0826571720781,-84.903003302739 10.9523033716219,-85.5618519762442 11.2171192489016,-85.7125404528073 11.0884449324948,-86.0584883287853 11.4034386255299,-86.525849982433 11.8068765324326,-86.7459915839963 12.1439619002725,-87.1675162422012 12.4582579614717,-87.6684934150547 12.9099099797026,-87.5574666002756 13.0645517033361,-87.3923862373192 12.9140182560698,-87.3166544257955 12.984685777229,-87.0057690091276 13.0257943791172,-86.8805570136844 13.2542042098472,-86.7338217841916 13.2630925562014,-86.7550866360797 13.7548454858909,-86.5207081774199 13.7784874536645,-86.3121420966899 13.7713561060082,-86.0962638007906 14.0381873641472,-85.8012947252686 13.8360549992376,-85.698665330737 13.960078436738,-85.5144130114003 14.0790117456579,-85.1653645494848 14.3543696151251,-85.148750576503 14.5601968449436,-85.0527874417369 14.5515410425347,-84.9245006985724 14.7904928654524,-84.8200367906944 14.8195866968327,-84.6495820787796 14.6668053247619,-84.4493359036486 14.6216142847225,-84.2283416409524 14.7487641463766,-83.9757214016936 14.7494359399965,-83.6285849677729 14.8800739608303,-83.4899887763661 15.0162671981355,-83.1472190009741 14.9958291691641,-83.2332344225239 14.8998660343981,-83.2841615465476 14.6766238468972,-83.1821264309873 14.3107030298385,-83.4124999661445 13.9700778263866,-83.5198319160147 13.5676992863459,-83.5522072008455 13.1270543481931,-83.4985153876943 12.8692923039212,-83.473323126952 12.4190872257944,-83.6261044990229 12.3208503280076,-83.7196130032551 11.8931244979277,-83.6508575100907 11.6290320907001,-83.8554703437504 11.3733112655038,-83.8089357164716 11.1030435246173,-83.6556117418616 10.9387641463614)))","NI","Nicaragua","North America","Americas","Central America","Sovereign country",129540.211674483,6013997,74.884,4784.83046366078 +"MULTIPOLYGON (((-83.1472190009741 14.9958291691641,-83.4899887763661 15.0162671981355,-83.6285849677729 14.8800739608303,-83.9757214016936 14.7494359399965,-84.2283416409524 14.7487641463766,-84.4493359036486 14.6216142847225,-84.6495820787796 14.6668053247619,-84.8200367906944 14.8195866968327,-84.9245006985724 14.7904928654524,-85.0527874417369 14.5515410425347,-85.148750576503 14.5601968449436,-85.1653645494848 14.3543696151251,-85.5144130114003 14.0790117456579,-85.698665330737 13.960078436738,-85.8012947252686 13.8360549992376,-86.0962638007906 14.0381873641472,-86.3121420966899 13.7713561060082,-86.5207081774199 13.7784874536645,-86.7550866360797 13.7548454858909,-86.7338217841916 13.2630925562014,-86.8805570136844 13.2542042098472,-87.0057690091276 13.0257943791172,-87.3166544257955 12.984685777229,-87.4894087389471 13.2975348983239,-87.7931111315266 13.3844804956551,-87.7235029772294 13.7850503605655,-87.8595153470216 13.8933124862171,-88.0653425768401 13.9646259627798,-88.5039979723497 13.8454859481309,-88.541230841816 13.9801547306835,-88.8430728828328 14.1405067000852,-89.0585119290577 14.3400294051641,-89.3533259752828 14.4241327987191,-89.1455350410372 14.6780191105692,-89.2252200996313 14.8742862004136,-89.1548109606336 15.0664191756748,-88.6806796943556 15.3462470565353,-88.225022752622 15.7277224797139,-88.1211531237154 15.6886550969014,-87.9018125068524 15.8644583195582,-87.6156801012523 15.8787985295192,-87.5229209052885 15.7972789575788,-87.3677624173321 15.8469400090113,-86.9031912910282 15.7567129582296,-86.4409456041774 15.7828353947532,-86.1192339749443 15.893448798074,-86.0019543118578 16.0054057886344,-85.6833174303463 15.953651841694,-85.4440038724026 15.8857490096624,-85.1824436103572 15.9091584334906,-84.9837218899788 15.9959231633087,-84.5269797431671 15.8572236190374,-84.3682555813826 15.8351577824487,-84.0630545722668 15.6482441268491,-83.7739766100261 15.4240717635669,-83.4103812324204 15.2709028182538,-83.1472190009741 14.9958291691641)))","HN","Honduras","North America","Americas","Central America","Sovereign country",113789.774793235,8809216,73.181,4231.32506716223 +"MULTIPOLYGON (((-89.3533259752828 14.4241327987191,-89.0585119290577 14.3400294051641,-88.8430728828328 14.1405067000852,-88.541230841816 13.9801547306835,-88.5039979723497 13.8454859481309,-88.0653425768401 13.9646259627798,-87.8595153470216 13.8933124862171,-87.7235029772294 13.7850503605655,-87.7931111315266 13.3844804956551,-87.9041121080895 13.1490168319171,-88.4833015612168 13.1639513208495,-88.8432279121297 13.2597335881025,-89.2567427233293 13.4585328231293,-89.8123935615477 13.520622056528,-90.095554572291 13.7353376327007,-90.0646779039966 13.8819695093289,-89.7219339668207 14.1342280135617,-89.5342193265205 14.2448155786663,-89.5873426989166 14.3625861678595,-89.3533259752828 14.4241327987191)))","SV","El Salvador","North America","Americas","Central America","Sovereign country",20893.3402330773,6281189,73.015,6890.72322429183 +"MULTIPOLYGON (((-92.2277500068698 14.5388286401909,-92.2032295397473 14.8301028508041,-92.0872159492521 15.0645846623284,-92.2292486234063 15.2514466414959,-91.747960171256 16.0665648462518,-90.4644726224227 16.0695620793247,-90.438866950222 16.4101097681281,-90.6008467272409 16.4707778996388,-90.7118218655877 16.6874830184547,-91.0816700915007 16.9184766707994,-91.4539212715152 17.2521772323242,-91.0022692532842 17.2546577010742,-91.001519945016 17.8175949162457,-90.067933519231 17.8193260767275,-89.1430804105033 17.8083189966494,-89.1508060371309 17.0155766870758,-89.2291216702693 15.8869375676052,-88.9306127591353 15.8872734644151,-88.6045861478058 15.7063801131774,-88.5183640205269 15.855389105691,-88.225022752622 15.7277224797139,-88.6806796943556 15.3462470565353,-89.1548109606336 15.0664191756748,-89.2252200996313 14.8742862004136,-89.1455350410372 14.6780191105692,-89.3533259752828 14.4241327987191,-89.5873426989166 14.3625861678595,-89.5342193265205 14.2448155786663,-89.7219339668207 14.1342280135617,-90.0646779039966 13.8819695093289,-90.095554572291 13.7353376327007,-90.6086240303008 13.909771429902,-91.2324102444961 13.927832342988,-91.6897466702791 14.1262181665565,-92.2277500068698 14.5388286401909)))","GT","Guatemala","North America","Americas","Central America","Sovereign country",109459.048786204,15923559,72.869,7147.42922806486 +"MULTIPOLYGON (((-89.1430804105033 17.8083189966494,-89.1509093899955 17.9554676376004,-89.0298573473518 18.0015113387725,-88.8483438789266 17.8831981470402,-88.4901228502793 18.4868305526416,-88.3000310940937 18.4999822046599,-88.2963362291848 18.3532728133833,-88.1068129137544 18.3486736109093,-88.1234785631685 18.076674709541,-88.2853549873228 17.644142971258,-88.1978667874527 17.4894754094085,-88.3026407539244 17.1316936304357,-88.2395179918799 17.0360663924796,-88.3554282295106 16.5307742375296,-88.5518245104358 16.2654674341431,-88.7324336412959 16.2336347518514,-88.9306127591353 15.8872734644151,-89.2291216702693 15.8869375676052,-89.1508060371309 17.0155766870758,-89.1430804105033 17.8083189966494)))","BZ","Belize","North America","Americas","Central America","Sovereign country",22045.4508313613,351694,70.027,7999.57369198528 +"MULTIPOLYGON (((-60.7335741848037 5.2002772078619,-60.6011791652719 4.91809804933213,-60.9668932766015 4.53646759685664,-62.0854296535591 4.16212352133431,-62.8045330471167 4.00696503337795,-63.0931975978991 3.77057119385879,-63.8883428615742 4.02053009685457,-64.6286594305875 4.14848094320925,-64.816064012294 4.05644521729742,-64.3684944322141 3.79721039470525,-64.4088278876179 3.12678620036662,-64.2699991522658 2.49700552002557,-63.4228673977051 2.41106761312417,-63.3687880113117 2.20089956299313,-64.0830854966661 1.91636912679408,-64.1993057928905 1.49285492594602,-64.6110119289599 1.32873057698704,-65.3547133042884 1.0952822941085,-65.5482673814376 0.78925446207603,-66.325765143485 0.724452215982012,-66.8763258531226 1.25336050048934,-67.1812943182931 2.25063812907406,-67.4470920477863 2.60028086996087,-67.8099381171237 2.82065501546957,-67.3031731838534 3.31845408773718,-67.3375638495437 3.54234223064172,-67.6218359035813 3.83948171631999,-67.8230122544935 4.5039372827289,-67.7446966213552 5.22112864829167,-67.5215319485028 5.55687042889197,-67.3414395819656 6.09546804445402,-67.695087246355 6.26731802004065,-68.2650524563182 6.15326813397247,-68.9853185696024 6.20680491782686,-69.3894799465571 6.09986054119884,-70.0933129543724 6.96037649172311,-70.6742335679815 7.08778473553872,-71.9601757473486 6.99161489504354,-72.1983524237819 7.34043081301368,-72.4444872707881 7.42378489830048,-72.4796789211788 7.63250600832735,-72.360900641556 8.00263845461789,-72.439862230098 8.40527537682003,-72.6604947577681 8.62528778730268,-72.7887298245004 9.08502716718733,-73.3049515448801 9.15199982343761,-73.0276041327696 9.73677033125244,-72.9052860175347 10.4503443465548,-72.6146577623252 10.8219754093818,-72.2275754462429 11.1087020939532,-71.9739216783383 11.6086715763771,-71.3315836249503 11.7762840845158,-71.3600056627108 11.5399935978612,-71.9470499335465 11.42328237553,-71.6208682929202 10.9694599471428,-71.6330639309411 10.446494452349,-72.0741739569845 9.86565135338837,-71.6956440904465 9.07226308841125,-71.2645592922677 9.13719452558598,-71.0399993557434 9.85999278405241,-71.3500837877108 10.2119351261762,-71.4006233384922 10.968969021036,-70.1552988349065 11.37548167566,-70.293843349881 11.8468224145942,-69.9432445949968 12.1623070337361,-69.5843000962975 11.4596109074312,-68.8829992336644 11.4433845076916,-68.2332714504587 10.8857441268299,-68.1941265529976 10.5546532251359,-67.2962485419263 10.5458682316463,-66.227864142508 10.6486268172587,-65.6552375962818 10.2007988550173,-64.8904522365782 10.0772146671913,-64.3294787258337 10.3895987003957,-64.3180065578649 10.641417954954,-63.0793224758287 10.7017243514386,-61.8809460109802 10.7156253117251,-62.7301189846164 10.4202686629609,-62.388511928951 9.94820445397464,-61.5887674628019 9.87306692142226,-60.8305966864317 9.38133982994894,-60.6712524074597 8.58017426191188,-60.1500955877962 8.60275686282343,-59.7582848781592 8.36703481692405,-60.5505879380582 7.77960297284618,-60.6379727850638 7.41499990481086,-60.2956680975624 7.04391144452292,-60.543999192941 6.85658437746488,-61.1593363104565 6.69607737876632,-61.139415045808 6.23429677980614,-61.410302903882 5.95906810141962,-60.7335741848037 5.2002772078619)))","VE","Venezuela","South America","Americas","South America","Sovereign country",908499.070492869,30738378,74.196,16745.0219796981 +"MULTIPOLYGON (((-56.5393857489146 1.89952260986692,-56.7827042303608 1.86371084228865,-57.3358229233969 1.94853770589576,-57.6609710353774 1.68258494710564,-58.113449876525 1.50719513590703,-58.429477098206 1.46394196207872,-58.5400129868783 1.26808828369252,-59.0308615790026 1.31769765869272,-59.6460436672213 1.78689382568679,-59.7185457017267 2.24963043864436,-59.9745249090846 2.75523265218806,-59.8154131740579 3.60649852133209,-59.5380399237312 3.95880259848194,-59.7674057684587 4.42350291586661,-60.1110023667674 4.57496653891408,-59.9809586249049 5.01406118409814,-60.2136834377313 5.2444863956876,-60.7335741848037 5.2002772078619,-61.410302903882 5.95906810141962,-61.139415045808 6.23429677980614,-61.1593363104565 6.69607737876632,-60.543999192941 6.85658437746488,-60.2956680975624 7.04391144452292,-60.6379727850638 7.41499990481086,-60.5505879380582 7.77960297284618,-59.7582848781592 8.36703481692405,-59.1016841294587 7.99920197187049,-58.4829622056281 7.3476913517507,-58.4548760646774 6.83278738039446,-58.0781031968374 6.80909373618864,-57.5422185939706 6.32126821535336,-57.1474364894769 5.97314992921916,-57.3072458563395 5.07356659588223,-57.9142889064721 4.81262645102441,-57.8602095200787 4.57680105226045,-58.0446943833607 4.06086355225838,-57.6015689764579 3.33465464926068,-57.2814334784097 3.33349192953412,-57.1500978257399 2.76892690674541,-56.5393857489146 1.89952260986692)))","GY","Guyana","South America","Americas","South America","Sovereign country",209801.857246846,763393,66.425,6906.01230864481 +"MULTIPOLYGON (((-54.5247541977997 2.31184886312379,-55.0975874497551 2.52374807373661,-55.569755011606 2.42150625244713,-55.9733221095894 2.51036387777302,-56.0733418442903 2.2207949894255,-55.9056001450709 2.02199575439866,-55.9956980047718 1.8176671411166,-56.5393857489146 1.89952260986692,-57.1500978257399 2.76892690674541,-57.2814334784097 3.33349192953412,-57.6015689764579 3.33465464926068,-58.0446943833607 4.06086355225838,-57.8602095200787 4.57680105226045,-57.9142889064721 4.81262645102441,-57.3072458563395 5.07356659588223,-57.1474364894769 5.97314992921916,-55.9493184067898 5.772877915872,-55.8417797511904 5.95312531170606,-55.0332502915518 6.02529144940166,-53.9580446030709 5.75654816326777,-54.4786329819792 4.89675568279559,-54.3995422023565 4.21261139568347,-54.006930508019 3.62003774659256,-54.1817260402463 3.18977977133042,-54.2697051662232 2.73239166911505,-54.5247541977997 2.31184886312379)))","SR","Suriname","South America","Americas","South America","Sovereign country",144268.722604462,547928,71.138,15306.6924367639 +"MULTIPOLYGON (((-51.6577974106789 4.15623240805303,-52.249337531124 3.24109446859624,-52.5564247300184 2.50470530843705,-52.939657151895 2.12485769287564,-53.4184651352953 2.05338918701598,-53.5548392401135 2.33489655192595,-53.7785206772889 2.37670278565008,-54.0880625067173 2.10555654541463,-54.5247541977997 2.31184886312379,-54.2697051662232 2.73239166911505,-54.1817260402463 3.18977977133042,-54.006930508019 3.62003774659256,-54.3995422023565 4.21261139568347,-54.4786329819792 4.89675568279559,-53.9580446030709 5.75654816326777,-53.6184529282648 5.64652903891837,-52.8821412827541 5.40985097902158,-51.8233428615259 4.56576813396613,-51.6577974106789 4.15623240805303)),((6.18632042809418 49.4638028021145,6.65822960778357 49.2019583196916,8.09927859867474 49.0177835150033,7.59367638513106 48.3330191107037,7.46675906742223 47.6205819769118,7.19220218265551 47.449765529971,6.73657107913806 47.5418012558828,6.76871382002361 47.2877082383037,6.037388950229 46.7257787135619,6.02260949059354 46.2729898138205,6.50009972497043 46.4296727565294,6.84359297041451 45.9911465521006,6.80235517744561 45.7085798203286,7.09665245934784 45.3330988632959,6.74995527510166 45.0285179713676,7.00756229007663 44.2547667506614,7.54959638838611 44.1279011093848,7.43518476729187 43.6938449163492,6.52924523278304 43.1288923203183,4.55696251793142 43.3996509873116,3.10041059735266 43.0752005071671,2.98599897625846 42.4730150416699,1.82679324708715 42.3433847112657,0.701590610363894 42.7957343613326,0.338046909190581 42.5795460068395,-1.50277096191053 43.0340143906304,-1.90135128417776 43.4228020289783,-1.38422522623299 44.0226103785901,-1.19379757323742 46.0149177109549,-2.22572424967385 47.0643626979382,-2.9632761295596 47.570326646508,-4.49155493815948 47.9549543320564,-4.59234981934478 48.684160468127,-3.2958139713578 48.9016924098596,-1.61651078938496 48.6444212916945,-1.93349402506331 49.7763418646157,-0.98946895995536 49.3473758001609,1.3387610205227 50.1271731634453,1.6390010921385 50.9466063502975,2.51357303224614 51.1485061712618,2.65842207196027 50.7968480495157,3.12325158042569 50.7803632676145,3.58818444175566 50.3789924180036,4.28602298342508 49.9074966497726,4.79922163251572 49.9853730332364,5.67405195478483 49.5294835475575,5.89775923017635 49.4426671413071,6.18632042809418 49.4638028021145)),((8.74600914880756 42.6281218531939,9.39000084802888 43.0099848496147,9.56001631026913 42.1524919703795,9.22975223149177 41.3800068222645,8.77572309737536 41.5836119654944,8.54421268070777 42.2565166285831,8.74600914880756 42.6281218531939)))","","France","Europe","Europe","Western Europe","Country",644847.882258842,NA,NA,NA +"MULTIPOLYGON (((-75.3732232327139 -0.15203175212045,-75.2337227037419 -0.911416924649529,-75.544995693652 -1.56160979574588,-76.6353942532267 -2.60867766684382,-77.8379048326586 -3.0030205216631,-78.4506839667756 -3.87309661216138,-78.6398972236123 -4.54778411216407,-79.2052890693177 -4.95912851320739,-79.6249792141762 -4.45419809328349,-80.0289080471856 -4.34609099692889,-80.4422419908722 -4.42572437909067,-80.4692946031769 -4.059286797709,-80.1840148587097 -3.82116179770804,-80.3025605943872 -3.40485645916471,-79.7702933417809 -2.65751189535964,-79.9865592109224 -2.22079436606101,-80.3687839423692 -2.68515878663579,-80.9677654690644 -2.2469426408007,-80.764806281238 -1.96504770264853,-80.9336590237517 -1.05745452230636,-80.5833703274613 -0.906662692878683,-80.3993247138538 -0.283703301600141,-80.0208982001804 0.360340074053468,-80.0906097073421 0.768428859862397,-79.5427620103998 0.982937730305963,-78.8552587551887 1.38092377360182,-77.8550614081795 0.809925034992773,-77.6686128404704 0.825893052570962,-77.4249843004304 0.395686753741117,-76.5763797675494 0.256935533037435,-76.292314419241 0.416047268064119,-75.8014658271166 0.084801337073202,-75.3732232327139 -0.15203175212045)))","EC","Ecuador","South America","Americas","South America","Sovereign country",250747.109536984,15903112,75.879,10901.4185562194 +"MULTIPOLYGON (((-66.2824344550082 18.5147616642954,-65.7713028632093 18.4266791854539,-65.5910037909429 18.2280349797239,-65.8471638658138 17.9759056665719,-66.5999344550095 17.9818226180693,-67.1841623602853 17.9465534530301,-67.2424275376944 18.3744601506229,-67.1006790839177 18.5206011011444,-66.2824344550082 18.5147616642954)))","PR","Puerto Rico","North America","Americas","Caribbean","Dependency",9224.66316707476,3534874,79.3901219512195,35066.0463763697 +"MULTIPOLYGON (((-77.5696007961992 18.4905254175505,-76.8966186184621 18.4008668075241,-76.3653590562855 18.1607005884476,-76.1996585761416 17.886867173733,-76.9025614081757 17.8682378198917,-77.2063413154035 17.7011162378598,-77.7660229153406 17.8615973983422,-78.3377192857856 18.2259679224322,-78.2177266100039 18.4545327824592,-77.7973646715256 18.5242184514048,-77.5696007961992 18.4905254175505)))","JM","Jamaica","North America","Americas","Caribbean","Sovereign country",12460.5868709093,2862087,75.689,8051.24402830602 +"MULTIPOLYGON (((-82.2681512112571 23.1886107447177,-81.4044571601468 23.1172714299388,-80.6187686835812 23.105980129483,-79.6795236884603 22.7653032495988,-79.2814859687321 22.3992015650271,-78.3474344550565 22.5121662460171,-77.9932958645603 22.2771935083859,-77.1464224921611 21.6578514673678,-76.5238248359086 21.2068195663244,-76.1946201239932 21.220565497314,-75.5982224189127 21.0166244572741,-75.6710603502281 20.735091254148,-74.9338960435845 20.6939051376114,-74.1780248684513 20.2846277938597,-74.2966481187773 20.0503785262807,-74.9615946112929 19.9234353703557,-75.6346801418946 19.8737743189232,-76.323656175426 19.9528909367621,-77.7554809231531 19.8554808618919,-77.0851084052467 20.4133537866988,-77.4926545885166 20.6731053736139,-78.1372922431416 20.7399488387834,-78.4828267076612 21.0286133895659,-78.719866502584 21.5981135116384,-79.2849999661279 21.5591753199065,-80.2174753486186 21.827324327069,-80.5175345527214 22.0370789657418,-81.8209433662032 22.1920565861851,-82.1699918281186 22.3871092798708,-81.7950017971927 22.636964830002,-82.7758979967409 22.6881503361871,-83.4944587877594 22.1685179712761,-83.9088004218756 22.1545653345573,-84.0521508450533 21.9105750594913,-84.5470301988964 21.8012277287616,-84.9749110582731 21.8960281438011,-84.4470621406278 22.2049498560419,-84.2303570218118 22.5657547063038,-83.7782399156902 22.7881183944557,-83.2675475735657 22.9830418970606,-82.5104361640575 23.0787466496652,-82.2681512112571 23.1886107447177)))","CU","Cuba","North America","Americas","Caribbean","Sovereign country",114866.218150043,11439767,79.415,NA +"MULTIPOLYGON (((31.1914091326213 -22.2515096981724,30.6598653500671 -22.1515674781199,30.3228833350918 -22.2716118303339,29.839036899543 -22.1022164852812,29.432188348109 -22.0913127580676,28.7946562029242 -21.6394540341075,28.0213700701086 -21.4859750302006,27.7272278175033 -20.8518018531147,27.7247473487533 -20.4990585262904,27.2965047543505 -20.391519870691,26.1647908871585 -19.2930856258949,25.8503914730947 -18.7144129370905,25.6491634457502 -18.536025892819,25.264225701608 -17.7365398088314,26.3819352556489 -17.8460421688579,26.7067733090356 -17.9612289364365,27.0444271176307 -17.9380262183374,27.5982434425028 -17.290830580314,28.4679061215427 -16.4684001603888,28.8258687680285 -16.3897486304406,28.9474634132113 -16.0430514461944,29.5168343442031 -15.6446778296564,30.2742558123051 -15.5077869605152,30.3389547055345 -15.8808391252302,31.1730639991577 -15.8609436987979,31.6364982439512 -16.0719902482779,31.8520406430406 -16.3194170060914,32.3282389666102 -16.3920740698938,32.8476387875758 -16.7133981258846,32.8498608741644 -17.9790573055772,32.6548856951271 -18.6720899390435,32.6119942563249 -19.4193828264163,32.7727079607526 -19.7155921363133,32.6597432797626 -20.3042900529823,32.5086930681734 -20.3952922502483,32.244988234188 -21.1164885393137,31.1914091326213 -22.2515096981724)))","ZW","Zimbabwe","Africa","Africa","Eastern Africa","Sovereign country",376328.488742711,15411675,59.36,1925.138698418 +"MULTIPOLYGON (((29.432188348109 -22.0913127580676,28.0172359555253 -22.8277535946591,27.1194096208862 -23.5743230119798,26.7864066911974 -24.2406906063835,26.4857532081233 -24.6163265927131,25.9416520525222 -24.6963733863332,25.7658488298652 -25.1748454729237,25.6646663754377 -25.4868160946697,25.0251705258258 -25.7196700985769,24.2112667172288 -25.6702157528736,23.7335697771227 -25.3901294898516,23.3120967953502 -25.2686898739657,22.8242712745149 -25.5004586727948,22.5795316911806 -25.9794475237081,22.1059688656579 -26.2802560360791,21.6058960303694 -26.7265337053518,20.8896090023717 -26.8285429826959,20.6664701677354 -26.4774533017049,20.7586092465118 -25.8681364885514,20.1657255388272 -24.9179619280008,19.8957678565344 -24.7677902157606,19.8954577979407 -21.8491569963479,20.8811340674759 -21.8143270809831,20.9106413103145 -18.252218926672,21.655040317479 -18.2191460100052,23.1968583513393 -17.8690381812278,23.5790055681377 -18.2812610816201,24.2173645362392 -17.8893470191185,24.5207051937925 -17.8871249325299,25.0844433936646 -17.6618156877374,25.264225701608 -17.7365398088314,25.6491634457502 -18.536025892819,25.8503914730947 -18.7144129370905,26.1647908871585 -19.2930856258949,27.2965047543505 -20.391519870691,27.7247473487533 -20.4990585262904,27.7272278175033 -20.8518018531147,28.0213700701086 -21.4859750302006,28.7946562029242 -21.6394540341075,29.432188348109 -22.0913127580676)))","BW","Botswana","Africa","Africa","Southern Africa","Sovereign country",591912.017166329,2168573,64.78,15914.6702328332 +"MULTIPOLYGON (((19.8957678565344 -24.7677902157606,19.8947343278886 -28.4611048316608,19.0021273129111 -28.9724431291889,18.4648991228048 -29.0454619280173,17.8361519711095 -28.8563778622613,17.3874971859515 -28.7835140927298,17.2189286638154 -28.3559432919468,16.8240173682409 -28.0821615536645,16.3449768408952 -28.5767050106977,15.6018180681058 -27.8212472470228,15.2104724463595 -27.090955905874,14.9897107276086 -26.1173719214952,14.7432141455763 -25.3929200171954,14.4081441585958 -23.8530140113298,14.3857165869811 -22.6566529273407,14.2577140641942 -22.1112081845,13.8686422054687 -21.69903696054,13.3524979997374 -20.8728341610575,12.8268453304645 -19.6731657854017,12.6085640804636 -19.0453488094877,11.7949186540281 -18.0691293270619,11.7341988460851 -17.3018893368245,12.2154614600194 -17.1116683895581,12.8140812516884 -16.9413428687241,13.46236209479 -16.9712118465888,14.058501417709 -17.4233806291427,14.209706658595 -17.3531006812257,18.2633093604342 -17.309950860262,18.9561869646036 -17.7890947404723,21.3771761410456 -17.9306364885197,23.2150484555061 -17.523116143466,24.0338615251708 -17.2958431942463,24.6823490740015 -17.3534107398195,25.0769503109823 -17.5788233374766,25.0844433936646 -17.6618156877374,24.5207051937925 -17.8871249325299,24.2173645362392 -17.8893470191185,23.5790055681377 -18.2812610816201,23.1968583513393 -17.8690381812278,21.655040317479 -18.2191460100052,20.9106413103145 -18.252218926672,20.8811340674759 -21.8143270809831,19.8954577979407 -21.8491569963479,19.8957678565344 -24.7677902157606)))",NA,"Namibia","Africa","Africa","Southern Africa","Sovereign country",824886.560992482,2370992,62.981,9617.3969565111 +"MULTIPOLYGON (((-16.7137288070235 13.5949586043799,-17.1261067367126 14.3735157332892,-17.6250426904907 14.7295405135641,-17.1851728988222 14.9194772404529,-16.7007063460859 15.6215274113541,-16.4630981104079 16.1350361190385,-16.1206900700419 16.4556625431934,-15.6236661442587 16.3693370630498,-15.1357372705588 16.5872824162408,-14.577347581429 16.5982636581028,-14.0995214502422 16.3043022730105,-13.4357376774531 16.0393830428662,-12.8306583317475 15.3036915145429,-12.1707502913803 14.6168342147355,-12.1248874577213 13.9947274845898,-11.9277160303116 13.4220751001474,-11.5533977930054 13.1412136906411,-11.4678991357785 12.754518947801,-11.5139428369506 12.4429875757294,-11.6583009505579 12.3865827498828,-12.2035648258856 12.4656476912894,-12.2785990055734 12.3544400089973,-12.4990506657306 12.3320899520311,-13.2178181624782 12.575873521368,-13.7004760400843 12.5861829696102,-15.548476935274 12.6281700708473,-15.8165742660043 12.5155671248833,-16.1477168441306 12.5477615422012,-16.6774519515546 12.3848515894011,-16.8415246240813 13.1513939478026,-15.9312959456922 13.1302841252113,-15.691000535535 13.2703530949385,-15.5118125065629 13.2785696476729,-15.1411632959495 13.5095116235852,-14.7121972314946 13.2982066919438,-14.2777017887846 13.2805850285322,-13.8449633447724 13.505041612192,-14.0469923568175 13.7940678980004,-14.3767138330558 13.6256802433774,-14.6870308089685 13.6303569604998,-15.0817353988138 13.876491807506,-15.3987703109245 13.8603687606309,-15.6245963200399 13.6235873478696,-16.7137288070235 13.5949586043799)))","SN","Senegal","Africa","Africa","Western Africa","Sovereign country",194390.438881923,14546111,66.376,2218.55191733521 +"MULTIPOLYGON (((-11.5139428369506 12.4429875757294,-11.4678991357785 12.754518947801,-11.5533977930054 13.1412136906411,-11.9277160303116 13.4220751001474,-12.1248874577213 13.9947274845898,-12.1707502913803 14.6168342147355,-11.8342075260795 14.7990969914289,-11.6660782536179 15.3882083195563,-11.3490950179395 15.4112560083585,-10.6507913883794 15.1327458765214,-10.0868464827782 15.3304857446863,-9.70025509280271 15.2641073674074,-9.55023840985939 15.4864968937754,-5.53774430990845 15.5016897648693,-5.31527726889193 16.2018537459918,-5.48852250815044 16.325102037008,-5.97112870932425 20.6408334416476,-6.45378658693033 24.9565906845034,-4.92333736817423 24.974574082941,-1.55005489745761 22.7926659204974,1.82322757325903 20.610809434486,2.06099083823392 20.1422333846795,2.68358849448643 19.8562301701601,3.1466610042539 19.6935785995214,3.1581331722227 19.05736420336,4.26741946780004 19.155265204337,4.2702099951438 16.8522274846012,3.72342166506348 16.1842837590126,3.63825890464648 15.5681198185805,2.74999270998148 15.4095248478767,1.38552819174686 15.3235611027592,1.01578331869848 14.968182277888,0.374892205414682 14.9289081893461,-0.26625729003058 14.9243089868721,-0.515854458000348 15.1161577417557,-1.06636349120566 14.9738150090078,-2.00103512206877 14.5590082870009,-2.19182451009038 14.2464175480674,-2.96769446452058 13.7981503361515,-3.10370683431276 13.5412667912286,-3.52280270019986 13.3376616479986,-4.00639075358723 13.4724854598481,-4.28040503581488 13.2284435083497,-4.4271661035238 12.5426455754043,-5.22094194174312 11.7138589543072,-5.19784257650865 11.3751457788501,-5.47056494792901 10.951269842976,-5.40434159994697 10.3707368026091,-5.81692623536529 10.2225546330122,-6.05045203289227 10.0963607853554,-6.20522294760643 10.5240607772191,-6.49396501303727 10.4113028019583,-6.66646094402755 10.4308106551484,-6.85050655763506 10.1389938419962,-7.62275916180481 10.1472362329468,-7.89958980959237 10.2973821069708,-8.02994361004862 10.2065349390017,-8.33537716310974 10.4948119165419,-8.28235714357828 10.7925973576238,-8.40731075686003 10.9092569035228,-8.62032101076713 10.8108908146552,-8.58130530438677 11.1362456323648,-8.37630489748491 11.3936459416106,-8.78609900555946 11.8125609399847,-8.90526485842453 12.0883580591264,-9.12747351727958 12.3080604110153,-9.32761633954601 12.3342862004035,-9.56791174970321 12.1942430688925,-9.89099280439201 12.060478623905,-10.1652137923488 11.8440835636827,-10.5932238428063 11.923975328006,-10.8708296370782 12.1778874780721,-11.0365559554383 12.2112446151165,-11.2975736149445 12.0779710962358,-11.4561685856483 12.0768342147253,-11.5139428369506 12.4429875757294)))","ML","Mali","Africa","Africa","Western Africa","Sovereign country",1235561.37340316,16962846,57.007,1865.16062183071 +"MULTIPOLYGON (((-17.0634232243426 20.9997521021308,-16.845193650774 21.3333234725749,-12.9291019352635 21.3270706242676,-13.1187544417747 22.7712202010963,-12.8742215641696 23.2848322616452,-11.9372244938533 23.3745942245362,-11.9694189111712 25.9333527694683,-8.6872936670174 25.8810562199889,-8.68439978680905 27.395744126896,-4.92333736817423 24.974574082941,-6.45378658693033 24.9565906845034,-5.97112870932425 20.6408334416476,-5.48852250815044 16.325102037008,-5.31527726889193 16.2018537459918,-5.53774430990845 15.5016897648693,-9.55023840985939 15.4864968937754,-9.70025509280271 15.2641073674074,-10.0868464827782 15.3304857446863,-10.6507913883794 15.1327458765214,-11.3490950179395 15.4112560083585,-11.6660782536179 15.3882083195563,-11.8342075260795 14.7990969914289,-12.1707502913803 14.6168342147355,-12.8306583317475 15.3036915145429,-13.4357376774531 16.0393830428662,-14.0995214502422 16.3043022730105,-14.577347581429 16.5982636581028,-15.1357372705588 16.5872824162408,-15.6236661442587 16.3693370630498,-16.1206900700419 16.4556625431934,-16.4630981104079 16.1350361190385,-16.5497078109291 16.673892116762,-16.2705517236884 17.1669627954749,-16.1463474186748 18.1084815536167,-16.2568833073472 19.0967158065503,-16.3776511296133 19.593817246982,-16.2778381006415 20.0925206568147,-16.5363236149655 20.5678663192515,-17.0634232243426 20.9997521021308)))","MR","Mauritania","Africa","Africa","Western Africa","Sovereign country",1054107.1940836,4063920,62.907,3655.38850923143 +"MULTIPOLYGON (((2.69170169435625 6.25881724692863,1.86524051271232 6.14215770102973,1.61895063640924 6.83203807212624,1.66447757325838 9.12859039960938,1.46304284018467 9.33462433515709,1.42506066245014 9.825395412633,1.07779503744874 10.175606594275,0.772335646171484 10.4708082137424,0.899563022474069 10.9973393823643,1.24346967937649 11.1105107690835,1.44717817547107 11.5477192244889,1.93598554851988 11.6411502140726,2.15447350424992 11.9401500513133,2.49016360841793 12.2330520695437,2.84864301922659 12.2356358911582,3.61118045412556 11.660167141156,3.57221642417747 11.3279393579515,3.79711225751171 10.7347455916731,3.6000700211828 10.3321861841194,3.70543826662592 10.0632103540402,3.2203515967021 9.4441525333997,2.91230838381026 9.13760793704432,2.72379275880951 8.50684540448971,2.74906253420022 7.87073436119289,2.69170169435625 6.25881724692863)))","BJ","Benin","Africa","Africa","Western Africa","Sovereign country",116998.712578633,10286712,60.373,2001.0772890116 +"MULTIPOLYGON (((14.8513 22.86295,15.0968876481818 21.3085187850749,15.47106 21.04845,15.4871480648501 20.7304145370256,15.9032466976643 20.3876189234175,15.6857405941478 19.9571800806424,15.3004411149797 17.927949937405,15.2477311540418 16.6273058130508,13.97217 15.68437,13.5403935075508 14.3671336939012,13.9566988460941 13.9966911890169,13.9544767595056 13.3534487980638,14.5957812842476 13.3304269474779,14.4957873877628 12.8593962671373,14.2135307145846 12.8020354272933,14.1813362972668 12.4836569279431,13.9953528174483 12.4615652531383,13.3187016130186 13.5563563094578,13.0839872575488 13.5961471623225,12.3020711605405 13.0371890324375,11.5278031755114 13.3289800073736,10.9895931331915 13.3873226994312,10.7010319352737 13.2469178328941,10.1148144873547 13.2772518986494,9.52492801274295 12.8511021997545,9.01493330245444 12.8266592472804,7.80467125817879 13.3435269230637,7.33074669763002 13.0980380314612,6.82044192874775 13.1150912541175,6.44542605960564 13.4927684595227,5.44305830244014 13.8659239771022,4.36834354006601 13.7474815942894,4.10794599774732 13.5312157251478,3.96728274904885 12.9561087101716,3.68063357912581 12.5529033472142,3.61118045412556 11.660167141156,2.84864301922659 12.2356358911582,2.49016360841793 12.2330520695437,2.15447350424992 11.9401500513133,2.17710778159378 12.6250178084775,1.02410322429748 12.8518256698066,0.993045688490071 13.3357496200038,0.429927605805517 13.9887330184439,0.295646396495101 14.4442349308807,0.374892205414682 14.9289081893461,1.01578331869848 14.968182277888,1.38552819174686 15.3235611027592,2.74999270998148 15.4095248478767,3.63825890464648 15.5681198185805,3.72342166506348 16.1842837590126,4.2702099951438 16.8522274846012,4.26741946780004 19.155265204337,5.67756595218069 19.6012069767997,8.57289310062978 21.5656607121591,11.9995056494716 23.4716684025964,13.5814245947905 23.0405060897693,14.1438708838552 22.4912889673711,14.8513 22.86295)))","NE","Niger","Africa","Africa","Western Africa","Sovereign country",1182269.64800007,19148219,59.228,904.456729989966 +"MULTIPOLYGON (((2.69170169435625 6.25881724692863,2.74906253420022 7.87073436119289,2.72379275880951 8.50684540448971,2.91230838381026 9.13760793704432,3.2203515967021 9.4441525333997,3.70543826662592 10.0632103540402,3.6000700211828 10.3321861841194,3.79711225751171 10.7347455916731,3.57221642417747 11.3279393579515,3.61118045412556 11.660167141156,3.68063357912581 12.5529033472142,3.96728274904885 12.9561087101716,4.10794599774732 13.5312157251478,4.36834354006601 13.7474815942894,5.44305830244014 13.8659239771022,6.44542605960564 13.4927684595227,6.82044192874775 13.1150912541175,7.33074669763002 13.0980380314612,7.80467125817879 13.3435269230637,9.01493330245444 12.8266592472804,9.52492801274295 12.8511021997545,10.1148144873547 13.2772518986494,10.7010319352737 13.2469178328941,10.9895931331915 13.3873226994312,11.5278031755114 13.3289800073736,12.3020711605405 13.0371890324375,13.0839872575488 13.5961471623225,13.3187016130186 13.5563563094578,13.9953528174483 12.4615652531383,14.1813362972668 12.4836569279431,14.5771777686225 12.0853608260535,14.468192172919 11.9047516951934,14.4153788591167 11.5723688826921,13.5729496598946 10.7985659855536,13.3086763851539 10.1603620467489,13.1675997249971 9.64062632897341,12.955467970439 9.4177717147147,12.7536715023392 8.717762762889,12.2188721045506 8.30582408287432,12.0639461605396 7.7998084578723,11.8393087093668 7.39704234458944,11.7457743669185 6.98138296144975,11.0587878760304 6.64442678469059,10.4973751156114 7.05535777427556,10.1182768083183 7.03876963950988,9.5227059261544 6.45348236737212,9.23316287602304 6.44449066815334,8.75753299320863 5.47966583904791,8.5002877132597 4.77198293702685,7.46210818851594 4.41210826254624,7.08259646976444 4.46468903240323,6.6980721370806 4.24059418376952,5.89817264163469 4.26245331462898,5.36280480309088 4.88797068930596,5.03357425295937 5.61180247641823,4.32560713056068 6.27065114992347,3.57418012860455 6.25830048260572,2.69170169435625 6.25881724692863)))","NG","Nigeria","Africa","Africa","Western Africa","Sovereign country",905071.739171952,176460502,52.549,5671.9006010195 +"MULTIPOLYGON (((14.4957873877628 12.8593962671373,14.89336 12.21905,14.9601518083376 11.5555740421972,14.923564894275 10.8913251815175,15.4678727556052 9.98233673750354,14.9093538753947 9.99212942142273,14.6272005550811 9.92091929772454,14.171466098699 10.0213782820999,13.954218377344 9.54949494062669,14.5444665869818 8.96586131432227,14.9799955583377 8.79610423424347,15.1208655127653 8.38215017336944,15.4360917497457 7.69281240481189,15.2794604834691 7.42192454673797,14.7765454444046 6.40849803306205,14.5365600928411 6.22695872642069,14.4594071794293 5.4517605656103,14.5589359880235 5.03059764243153,14.4783724300805 4.73260549562045,14.9509534033897 4.21038930909492,15.0362195166713 3.85136729574712,15.4053959489644 3.33530060466434,15.8627323747475 3.01353729899898,15.9073808122477 2.55738943115861,16.0128524105554 2.26763967529808,15.9409188168051 1.7276726342803,15.1463419938852 1.96401479736718,14.3378125342466 2.22787466064949,13.0758223812468 2.26709707275901,12.9513338558556 2.32161570882694,12.3593803239522 2.19281220133945,11.7516654801998 2.32675751383999,11.2764490088437 2.26105093018087,9.64915815597263 2.28386607503774,9.79519575362946 3.07340444580912,9.404366896206 3.7345268823352,8.94811567550107 3.90412893311714,8.74492394372942 4.35221527751996,8.48881554529089 4.49561737712992,8.5002877132597 4.77198293702685,8.75753299320863 5.47966583904791,9.23316287602304 6.44449066815334,9.5227059261544 6.45348236737212,10.1182768083183 7.03876963950988,10.4973751156114 7.05535777427556,11.0587878760304 6.64442678469059,11.7457743669185 6.98138296144975,11.8393087093668 7.39704234458944,12.0639461605396 7.7998084578723,12.2188721045506 8.30582408287432,12.7536715023392 8.717762762889,12.955467970439 9.4177717147147,13.1675997249971 9.64062632897341,13.3086763851539 10.1603620467489,13.5729496598946 10.7985659855536,14.4153788591167 11.5723688826921,14.468192172919 11.9047516951934,14.5771777686225 12.0853608260535,14.1813362972668 12.4836569279431,14.2135307145846 12.8020354272933,14.4957873877628 12.8593962671373)))","CM","Cameroon","Africa","Africa","Middle Africa","Sovereign country",460324.701614163,22239904,57.111,3196.36152634263 +"MULTIPOLYGON (((0.899563022474069 10.9973393823643,0.772335646171484 10.4708082137424,1.07779503744874 10.175606594275,1.42506066245014 9.825395412633,1.46304284018467 9.33462433515709,1.66447757325838 9.12859039960938,1.61895063640924 6.83203807212624,1.86524051271232 6.14215770102973,1.06012169760493 5.92883738852888,0.836931186536333 6.27997874595215,0.570384148774849 6.91435862876719,0.490957472342245 7.41174428957648,0.712029249686879 8.31246450442383,0.461191847342121 8.67722260175601,0.365900506195885 9.46500397382948,0.367579990245389 10.1912128768272,-0.049784715159944 10.7069178328839,0.023802524423701 11.0186817489008,0.899563022474069 10.9973393823643)))","TG","Togo","Africa","Africa","Western Africa","Sovereign country",60966.9622339568,7228915,59.601,1315.3402595533 +"MULTIPOLYGON (((0.023802524423701 11.0186817489008,-0.049784715159944 10.7069178328839,0.367579990245389 10.1912128768272,0.365900506195885 9.46500397382948,0.461191847342121 8.67722260175601,0.712029249686879 8.31246450442383,0.490957472342245 7.41174428957648,0.570384148774849 6.91435862876719,0.836931186536333 6.27997874595215,1.06012169760493 5.92883738852888,-0.507637905265938 5.34347260174268,-1.06362464029419 5.00054779705381,-1.96470659016759 4.71046214438337,-2.8561250472024 4.99447581625951,-2.81070146321784 5.38905121502411,-3.24437008301126 6.2504715031135,-2.98358496745033 7.37970490155551,-2.56218950032624 8.21962779381148,-2.82749630371271 9.64246084231978,-2.96389624674711 10.3953347843801,-2.94040930827046 10.9626903345126,-1.20335771321143 11.0098192407627,-0.761575893548183 10.9369296330151,-0.438701544588582 11.0983409692787,0.023802524423701 11.0186817489008)))","GH","Ghana","Africa","Africa","Western Africa","Sovereign country",243473.120281533,26962563,62.154,3868.60089371873 +"MULTIPOLYGON (((-8.02994361004862 10.2065349390017,-7.89958980959237 10.2973821069708,-7.62275916180481 10.1472362329468,-6.85050655763506 10.1389938419962,-6.66646094402755 10.4308106551484,-6.49396501303727 10.4113028019583,-6.20522294760643 10.5240607772191,-6.05045203289227 10.0963607853554,-5.81692623536529 10.2225546330122,-5.40434159994697 10.3707368026091,-4.9546532861431 10.1527139347697,-4.77988359213197 9.82198476810174,-4.33024695476038 9.61083486575714,-3.98044918457668 9.8623440617217,-3.51189897298627 9.90032623945622,-2.82749630371271 9.64246084231978,-2.56218950032624 8.21962779381148,-2.98358496745033 7.37970490155551,-3.24437008301126 6.2504715031135,-2.81070146321784 5.38905121502411,-2.8561250472024 4.99447581625951,-3.31108435710007 4.98429555909802,-4.00881954590494 5.17981334067431,-4.64991736491791 5.16826365805709,-5.83449622234453 4.99370066977514,-6.52876909018585 4.70508779542502,-7.51894120933044 4.33828847901731,-7.71215938966975 4.36456594483772,-7.63536821128403 5.18815908448946,-7.53971513511176 5.31334524171652,-7.57015255373169 5.7073521997259,-7.99369259279588 6.12618968345154,-8.31134762209402 6.19303314862108,-8.60288021486862 6.46756419517166,-8.38545162600057 6.91180064536874,-8.48544552248535 7.39520783124307,-8.4392984684487 7.68604279218174,-8.28070349774494 7.68717967369216,-8.2217923649322 8.12332876223557,-8.29904863120856 8.3164435897103,-8.20349890790088 8.45545319257545,-7.83210038901919 8.57570425051863,-8.07911373537435 9.37622386315203,-8.30961646161225 9.78953196862244,-8.22933712404682 10.1290202905639,-8.02994361004862 10.2065349390017)))","CI","Côte d'Ivoire","Africa","Africa","Western Africa","Sovereign country",329825.951440485,22531350,52.52,3054.53487386428 +"MULTIPOLYGON (((-13.7004760400843 12.5861829696102,-13.2178181624782 12.575873521368,-12.4990506657306 12.3320899520311,-12.2785990055734 12.3544400089973,-12.2035648258856 12.4656476912894,-11.6583009505579 12.3865827498828,-11.5139428369506 12.4429875757294,-11.4561685856483 12.0768342147253,-11.2975736149445 12.0779710962358,-11.0365559554383 12.2112446151165,-10.8708296370782 12.1778874780721,-10.5932238428063 11.923975328006,-10.1652137923488 11.8440835636827,-9.89099280439201 12.060478623905,-9.56791174970321 12.1942430688925,-9.32761633954601 12.3342862004035,-9.12747351727958 12.3080604110153,-8.90526485842453 12.0883580591264,-8.78609900555946 11.8125609399847,-8.37630489748491 11.3936459416106,-8.58130530438677 11.1362456323648,-8.62032101076713 10.8108908146552,-8.40731075686003 10.9092569035228,-8.28235714357828 10.7925973576238,-8.33537716310974 10.4948119165419,-8.02994361004862 10.2065349390017,-8.22933712404682 10.1290202905639,-8.30961646161225 9.78953196862244,-8.07911373537435 9.37622386315203,-7.83210038901919 8.57570425051863,-8.20349890790088 8.45545319257545,-8.29904863120856 8.3164435897103,-8.2217923649322 8.12332876223557,-8.28070349774494 7.68717967369216,-8.4392984684487 7.68604279218174,-8.72212358238212 7.71167430259851,-8.926064622422 7.30903738039638,-9.20878638349085 7.31392080324795,-9.40334815106975 7.52690521893891,-9.33727983238458 7.92853445071135,-9.75534216962583 8.54105520266693,-10.0165665348613 8.42850393313523,-10.2300935530913 8.40620555260129,-10.5054772607747 8.3488963891896,-10.4943151513996 8.71554067630044,-10.6547704736659 8.9771784529942,-10.622395188835 9.26791006106828,-10.8391519840833 9.68824616133037,-11.1174812484073 10.0458729110063,-11.9172773909887 10.0469839543006,-12.150338100625 9.85857168216438,-12.4259285140376 9.83583405195596,-12.5967191227622 9.62018830000197,-12.7119575667731 9.34271169681077,-13.2465502588325 8.90304861087151,-13.6851539779098 9.49474376061346,-14.0740449691223 9.88616689700825,-14.3300758529124 10.015719712764,-14.5796988590983 10.2144672713585,-14.6932319808435 10.656300767454,-14.8395537988779 10.8765715600981,-15.1303112451682 11.0404116886795,-14.6856872217289 11.5278237980565,-14.3821915348787 11.5092719588637,-14.1214064193178 11.6771170109477,-13.9007997298638 11.6787189803487,-13.7431607731574 11.8112690291774,-13.8282718571421 12.142644151249,-13.7187436588995 12.2471855737755,-13.7004760400843 12.5861829696102)))","GN","Guinea","Africa","Africa","Western Africa","Sovereign country",239565.079458458,11805509,58.846,1734.73674695657 +"MULTIPOLYGON (((-16.6774519515546 12.3848515894011,-16.1477168441306 12.5477615422012,-15.8165742660043 12.5155671248833,-15.548476935274 12.6281700708473,-13.7004760400843 12.5861829696102,-13.7187436588995 12.2471855737755,-13.8282718571421 12.142644151249,-13.7431607731574 11.8112690291774,-13.9007997298638 11.6787189803487,-14.1214064193178 11.6771170109477,-14.3821915348787 11.5092719588637,-14.6856872217289 11.5278237980565,-15.1303112451682 11.0404116886795,-15.6641804671755 11.4584740259208,-16.0852141992736 11.5245940210382,-16.3147867497302 11.8065147974065,-16.3089473128812 11.9587018905061,-16.6138382634033 12.1709111597127,-16.6774519515546 12.3848515894011)))","GW","Guinea-Bissau","Africa","Africa","Western Africa","Sovereign country",36191.8856963154,1725744,56.598,1398.25480632738 +"MULTIPOLYGON (((-8.4392984684487 7.68604279218174,-8.48544552248535 7.39520783124307,-8.38545162600057 6.91180064536874,-8.60288021486862 6.46756419517166,-8.31134762209402 6.19303314862108,-7.99369259279588 6.12618968345154,-7.57015255373169 5.7073521997259,-7.53971513511176 5.31334524171652,-7.63536821128403 5.18815908448946,-7.71215938966975 4.36456594483772,-7.97410722495725 4.35575511313196,-9.00479366701867 4.8324185245922,-9.91342037600668 5.59356069581921,-10.7653838769866 6.14071076092556,-11.4387794661821 6.78591685630575,-11.1998018050483 7.10584564862474,-11.1467042708684 7.39670644777954,-10.6955948551765 7.93946401614109,-10.2300935530913 8.40620555260129,-10.0165665348613 8.42850393313523,-9.75534216962583 8.54105520266693,-9.33727983238458 7.92853445071135,-9.40334815106975 7.52690521893891,-9.20878638349085 7.31392080324795,-8.926064622422 7.30903738039638,-8.72212358238212 7.71167430259851,-8.4392984684487 7.68604279218174)))","LR","Liberia","Africa","Africa","Western Africa","Sovereign country",98206.7829620829,4390737,61.527,804.719886747093 +"MULTIPOLYGON (((-13.2465502588325 8.90304861087151,-12.7119575667731 9.34271169681077,-12.5967191227622 9.62018830000197,-12.4259285140376 9.83583405195596,-12.150338100625 9.85857168216438,-11.9172773909887 10.0469839543006,-11.1174812484073 10.0458729110063,-10.8391519840833 9.68824616133037,-10.622395188835 9.26791006106828,-10.6547704736659 8.9771784529942,-10.4943151513996 8.71554067630044,-10.5054772607747 8.3488963891896,-10.2300935530913 8.40620555260129,-10.6955948551765 7.93946401614109,-11.1467042708684 7.39670644777954,-11.1998018050483 7.10584564862474,-11.4387794661821 6.78591685630575,-11.7081945459357 6.86009837486073,-12.4280989241938 7.26294200279203,-12.9490490381282 7.79864573814574,-13.1240254378685 8.16394643801698,-13.2465502588325 8.90304861087151)))","SL","Sierra Leone","Africa","Africa","Western Africa","Sovereign country",75980.3314665435,7079162,50.951,1692.14206707555 +"MULTIPOLYGON (((-5.40434159994697 10.3707368026091,-5.47056494792901 10.951269842976,-5.19784257650865 11.3751457788501,-5.22094194174312 11.7138589543072,-4.4271661035238 12.5426455754043,-4.28040503581488 13.2284435083497,-4.00639075358723 13.4724854598481,-3.52280270019986 13.3376616479986,-3.10370683431276 13.5412667912286,-2.96769446452058 13.7981503361515,-2.19182451009038 14.2464175480674,-2.00103512206877 14.5590082870009,-1.06636349120566 14.9738150090078,-0.515854458000348 15.1161577417557,-0.26625729003058 14.9243089868721,0.374892205414682 14.9289081893461,0.295646396495101 14.4442349308807,0.429927605805517 13.9887330184439,0.993045688490071 13.3357496200038,1.02410322429748 12.8518256698066,2.17710778159378 12.6250178084775,2.15447350424992 11.9401500513133,1.93598554851988 11.6411502140726,1.44717817547107 11.5477192244889,1.24346967937649 11.1105107690835,0.899563022474069 10.9973393823643,0.023802524423701 11.0186817489008,-0.438701544588582 11.0983409692787,-0.761575893548183 10.9369296330151,-1.20335771321143 11.0098192407627,-2.94040930827046 10.9626903345126,-2.96389624674711 10.3953347843801,-2.82749630371271 9.64246084231978,-3.51189897298627 9.90032623945622,-3.98044918457668 9.8623440617217,-4.33024695476038 9.61083486575714,-4.77988359213197 9.82198476810174,-4.9546532861431 10.1527139347697,-5.40434159994697 10.3707368026091)))","BF","Burkina Faso","Africa","Africa","Western Africa","Sovereign country",271593.671943161,17585977,59.457,1582.33369667322 +"MULTIPOLYGON (((27.3742261085175 5.23394440350006,27.0440653826047 5.12785268800484,26.4027608578625 5.15087453859087,25.6504553565575 5.25608775473712,25.2787984555143 5.17040822999719,25.1288334490033 4.92724477784779,24.8050289242624 4.89724660890235,24.4105310401463 5.10878408448913,23.2972139828501 4.60969310141422,22.8414795264681 4.71012624757348,22.7041235694363 4.63305084881016,22.4051237321955 4.02916006104732,21.65912275563 4.22434194581372,20.9275911801063 4.32278554932974,20.2906791521089 4.69167776124529,19.4677836442931 5.03152781821278,18.9323124528848 4.70950613038598,18.5429822119978 4.20178518311832,18.4530652198099 3.50438589112335,17.8099003435053 3.56019643799857,17.1330424333463 3.72819651937945,16.5370581397241 3.19825470622628,16.0128524105554 2.26763967529808,15.9073808122477 2.55738943115861,15.8627323747475 3.01353729899898,15.4053959489644 3.33530060466434,15.0362195166713 3.85136729574712,14.9509534033897 4.21038930909492,14.4783724300805 4.73260549562045,14.5589359880235 5.03059764243153,14.4594071794293 5.4517605656103,14.5365600928411 6.22695872642069,14.7765454444046 6.40849803306205,15.2794604834691 7.42192454673797,16.1062317237067 7.49708791750646,16.2905615576919 7.75430735923942,16.4561845231873 7.73477366783297,16.7059883968863 7.50832754152998,17.9649296403809 7.89091400800299,18.3895548845232 8.28130361575182,18.9110217627805 8.63089468020635,18.8120097185093 8.9829145369786,19.094008009526 9.07484691002584,20.0596854997643 9.01270600019485,21.0008683610962 9.47598521569151,21.7238216488595 10.567055568886,22.2311291846688 10.9718887394606,22.8641654802442 11.1423951278075,22.9775435726926 10.7144625919985,23.5543042335022 10.0892552759153,23.5572497901428 9.68121816653868,23.3947790870172 9.26506785729222,23.459012892356 8.95428579348889,23.8058134294668 8.66631887454253,24.5673690121521 8.22918793378547,25.1149324887168 7.82510407147917,25.1241308936647 7.50008515057944,25.7966479835112 6.97931590415807,26.2134184099451 6.54660329836207,26.4659094581232 5.94671743410187,27.2134090512252 5.55095347739456,27.3742261085175 5.23394440350006)))","CF","Central African Republic","Africa","Africa","Middle Africa","Sovereign country",621860.349185054,4515392,50.621,597.135168986395 +"MULTIPOLYGON (((18.4530652198099 3.50438589112335,18.3937923519711 2.90044342692822,18.0942757504074 2.36572154378806,17.8988354834796 1.74183197672828,17.7741919287916 0.855658677571085,17.8265401547033 0.288923244626105,17.6635526872547 -0.058083998213817,17.63864464689 -0.424831638189247,17.5237162614729 -0.743830254726987,16.8653068376421 -1.22581633871329,16.4070919125101 -1.74092701579868,15.9728031755292 -2.71239226645361,16.0062895036543 -3.53513274497253,15.7535400733148 -3.8551648901561,15.1709916520884 -4.3435071753143,14.5826037940132 -4.97023894615014,14.2090348649752 -4.7930921362536,14.1449560889333 -4.51000864015872,13.6002348161447 -4.50013844159097,13.258240187237 -4.88295745200917,12.9955172054652 -4.78110320396188,12.6207597184845 -4.43802336997614,12.3186076188739 -4.60623015708619,11.9149630062421 -5.03798674888479,11.0937728206919 -3.97882659263055,11.8551216976481 -3.42687061932105,11.4780387712143 -2.76561899171424,11.8209635759032 -2.51416147218198,12.4957027523382 -2.39168832765024,12.5752844580676 -1.94851124431513,13.1096187679656 -2.42874032960351,13.9924072608077 -2.4708049454891,14.2992102393246 -1.99827564861221,14.4254557634136 -1.33340667074497,14.3164184912777 -0.552627455247048,13.8433207536457 0.038757635901149,14.276265903387 1.19692983642662,14.0266687354172 1.39567739502115,13.2826314632788 1.31418366129688,13.0031136410121 1.83089630778332,13.0758223812468 2.26709707275901,14.3378125342466 2.22787466064949,15.1463419938852 1.96401479736718,15.9409188168051 1.7276726342803,16.0128524105554 2.26763967529808,16.5370581397241 3.19825470622628,17.1330424333463 3.72819651937945,17.8099003435053 3.56019643799857,18.4530652198099 3.50438589112335)))","CG","Republic of the Congo","Africa","Africa","Middle Africa","Sovereign country",339681.855452815,4871101,63.536,5538.05294137178 +"MULTIPOLYGON (((11.2764490088437 2.26105093018087,11.7516654801998 2.32675751383999,12.3593803239522 2.19281220133945,12.9513338558556 2.32161570882694,13.0758223812468 2.26709707275901,13.0031136410121 1.83089630778332,13.2826314632788 1.31418366129688,14.0266687354172 1.39567739502115,14.276265903387 1.19692983642662,13.8433207536457 0.038757635901149,14.3164184912777 -0.552627455247048,14.4254557634136 -1.33340667074497,14.2992102393246 -1.99827564861221,13.9924072608077 -2.4708049454891,13.1096187679656 -2.42874032960351,12.5752844580676 -1.94851124431513,12.4957027523382 -2.39168832765024,11.8209635759032 -2.51416147218198,11.4780387712143 -2.76561899171424,11.8551216976481 -3.42687061932105,11.0937728206919 -3.97882659263055,10.0661352881357 -2.96948251710568,9.40524539555497 -2.14431324626904,8.79799563969317 -1.1113013647545,8.83008670414642 -0.779073581550037,9.04841963057959 -0.459351494960217,9.29135053878369 0.268666083167687,9.49288862472199 1.01011953369149,9.83028405115564 1.0678937849938,11.2850789730365 1.05766185140001,11.2764490088437 2.26105093018087)))","GA","Gabon","Africa","Africa","Middle Africa","Sovereign country",269475.797919465,1875713,65.211,16678.6381326502 +"MULTIPOLYGON (((9.64915815597263 2.28386607503774,11.2764490088437 2.26105093018087,11.2850789730365 1.05766185140001,9.83028405115564 1.0678937849938,9.49288862472199 1.01011953369149,9.30561323409626 1.16091136311918,9.64915815597263 2.28386607503774)))","GQ","Equatorial Guinea","Africa","Africa","Middle Africa","Sovereign country",27120.5747694609,1129424,57.18,31542.5107726021 +"MULTIPOLYGON (((30.7400097314221 -8.34000593035372,31.15775133695 -8.59457874731737,31.5563480974665 -8.76204884199864,32.1918648617919 -8.93035898197326,32.7593754412213 -9.23059905358906,33.2313879737753 -9.6767216935648,33.4856876970836 -10.5255587703911,33.3153104998173 -10.7965499813297,33.1142891782019 -11.6071981746923,33.3064221534631 -12.4357780900602,32.9917643572379 -12.7838705379783,32.6881653175231 -13.7128577612893,33.2140246925252 -13.9718600399362,30.1794812354818 -14.7960991349915,30.2742558123051 -15.5077869605152,29.5168343442031 -15.6446778296564,28.9474634132113 -16.0430514461944,28.8258687680285 -16.3897486304406,28.4679061215427 -16.4684001603888,27.5982434425028 -17.290830580314,27.0444271176307 -17.9380262183374,26.7067733090356 -17.9612289364365,26.3819352556489 -17.8460421688579,25.264225701608 -17.7365398088314,25.0844433936646 -17.6618156877374,25.0769503109823 -17.5788233374766,24.6823490740015 -17.3534107398195,24.0338615251708 -17.2958431942463,23.2150484555061 -17.523116143466,22.5624784685243 -16.8984514299218,21.8878426449539 -16.0803101538769,21.9338863461259 -12.8984371883694,24.0161365088947 -12.9110462378486,23.9309220720454 -12.5658476701389,24.0799052263428 -12.1912968888874,23.9041536801182 -11.7222815894063,24.0178935075926 -11.2372982723471,23.9122152035557 -10.9268262671375,24.257155389104 -10.9519926896637,24.314516228948 -11.2628264298993,24.783169793403 -11.238693536019,25.4181181169732 -11.33093596766,25.7523096046047 -11.7849651017764,26.5530875993996 -11.9244397925321,27.1644197934125 -11.6087484676611,27.3887988624238 -12.1327474911007,28.15510867688 -12.2724805640179,28.523561639121 -12.6986044246967,28.9342859229768 -13.2489584286051,29.6996138852195 -13.2572266577718,29.6160014177712 -12.1788945451373,29.3415478858691 -12.3607439103724,28.6424174333924 -11.9715686987823,28.3722530453704 -11.7936467424014,28.4960697771418 -10.789883721564,28.6736816749289 -9.60592498132493,28.4498710466728 -9.16491830814608,28.7348665707625 -8.52655934004458,29.0029122250605 -8.40703175215347,30.3460860531908 -8.23825652428822,30.7400097314221 -8.34000593035372)))","ZM","Zambia","Africa","Africa","Eastern Africa","Sovereign country",751921.215016539,15620974,60.775,3632.50375331402 +"MULTIPOLYGON (((32.7593754412213 -9.23059905358906,33.73972 -9.41715,33.9408377240965 -9.69367384198029,34.28 -10.16,34.5599890479994 -11.5200200334159,34.280006137842 -12.2800253231325,34.5599890479994 -13.5799976538669,34.9071513201362 -13.5654248999606,35.267956170398 -13.8878341610296,35.6868453305559 -14.6110458309543,35.7719047381084 -15.8968588192407,35.3390629412316 -16.1074402808301,35.0338102556835 -16.8012997372131,34.3812919451341 -16.183559665596,34.3072912940921 -15.4786414527026,34.5176660499523 -15.0137085913726,34.4596334164885 -14.6130095353814,34.0648254737786 -14.3599500464481,33.7897001482567 -14.4518307430631,33.2140246925252 -13.9718600399362,32.6881653175231 -13.7128577612893,32.9917643572379 -12.7838705379783,33.3064221534631 -12.4357780900602,33.1142891782019 -11.6071981746923,33.3153104998173 -10.7965499813297,33.4856876970836 -10.5255587703911,33.2313879737753 -9.6767216935648,32.7593754412213 -9.23059905358906)))","MW","Malawi","Africa","Africa","Eastern Africa","Sovereign country",111197.018347598,17068838,61.932,1090.3672076732 +"MULTIPOLYGON (((34.5599890479994 -11.5200200334159,35.312397902169 -11.4391464168791,36.5140816586843 -11.7209380021667,36.7751509946228 -11.5945374487808,37.47129 -11.56876,37.82764 -11.26879,38.4275565935878 -11.2852023250817,39.521 -10.89688,40.31659 -10.3171,40.3165862291109 -10.3170977528175,40.3165885760172 -10.3170960425257,40.478387485523 -10.76544076909,40.4372530454187 -11.761710707245,40.5608113950286 -12.639176527561,40.5996203956798 -14.2019751929319,40.775475294769 -14.6917644181942,40.4772506040126 -15.406294447494,40.0892639503652 -16.1007740210645,39.4525586280971 -16.7208912085669,38.5383508644215 -17.101023044506,37.4111328468389 -17.5863680965912,36.2812793312094 -18.6596875952934,35.8964966163641 -18.8422604305806,35.1983996925331 -19.5528113745939,34.78638349787 -19.7840117326677,34.7018925310728 -20.497043145431,35.1761271502154 -21.2543612606684,35.3734277687057 -21.8408370907489,35.3858482537054 -22.14,35.5625455363691 -22.09,35.5339347674043 -23.0707878557278,35.3717741228724 -23.5353589820317,35.6074703305556 -23.7065630022147,35.4587455584196 -24.1226099585965,35.0407348976107 -24.4783505184938,34.2158240089355 -24.8163143856827,33.013210076639 -25.3575733375077,32.5746321957779 -25.7273182105561,32.6603633969501 -26.1485844865994,32.9159550310657 -26.2158672014435,32.8301204770289 -26.7421916643362,32.0716654802811 -26.7338200823049,31.985779249812 -26.2917798804802,31.8377779477281 -25.8433318010513,31.7524084815819 -25.4842839494874,31.9305888201243 -24.3694165992225,31.6703979835347 -23.6589690080739,31.1914091326213 -22.2515096981724,32.244988234188 -21.1164885393137,32.5086930681734 -20.3952922502483,32.6597432797626 -20.3042900529823,32.7727079607526 -19.7155921363133,32.6119942563249 -19.4193828264163,32.6548856951271 -18.6720899390435,32.8498608741644 -17.9790573055772,32.8476387875758 -16.7133981258846,32.3282389666102 -16.3920740698938,31.8520406430406 -16.3194170060914,31.6364982439512 -16.0719902482779,31.1730639991577 -15.8609436987979,30.3389547055345 -15.8808391252302,30.2742558123051 -15.5077869605152,30.1794812354818 -14.7960991349915,33.2140246925252 -13.9718600399362,33.7897001482567 -14.4518307430631,34.0648254737786 -14.3599500464481,34.4596334164885 -14.6130095353814,34.5176660499523 -15.0137085913726,34.3072912940921 -15.4786414527026,34.3812919451341 -16.183559665596,35.0338102556835 -16.8012997372131,35.3390629412316 -16.1074402808301,35.7719047381084 -15.8968588192407,35.6868453305559 -14.6110458309543,35.267956170398 -13.8878341610296,34.9071513201362 -13.5654248999606,34.5599890479994 -13.5799976538669,34.280006137842 -12.2800253231325,34.5599890479994 -11.5200200334159)))","MZ","Mozambique","Africa","Africa","Eastern Africa","Sovereign country",810994.757216461,27212382,57.099,1079.82386564737 +"MULTIPOLYGON (((32.0716654802811 -26.7338200823049,31.8680603370511 -27.1779273414213,31.2827730649133 -27.285879408479,30.6859619483745 -26.7438453101695,30.6766085141296 -26.3980783017046,30.9496667823599 -26.0226490211042,31.0440796241571 -25.7314523251394,31.3331575863979 -25.660190525009,31.8377779477281 -25.8433318010513,31.985779249812 -26.2917798804802,32.0716654802811 -26.7338200823049)))","SZ","eSwatini","Africa","Africa","Southern Africa","Sovereign country",18118.6341282849,1295097,56.287,7870.97074814257 +"MULTIPOLYGON (((12.9955172054652 -4.78110320396188,12.6316117692658 -4.99127125409294,12.4680041846297 -5.248361504745,12.4366882666609 -5.68430388755925,12.1823368669203 -5.78993051516384,11.9149630062421 -5.03798674888479,12.3186076188739 -4.60623015708619,12.6207597184845 -4.43802336997614,12.9955172054652 -4.78110320396188)),((12.3224316748635 -6.10009246177966,12.7351713395787 -5.9656820613885,13.024869419007 -5.98438892987816,13.3755973649719 -5.86424122479955,16.326528354567 -5.87747039146627,16.5731799658961 -6.62264454511509,16.8601908708452 -7.22229786542999,17.0899959652472 -7.54568897871253,17.4729700049622 -8.0685511206417,18.1342216325691 -7.98767750410492,18.4641756527527 -7.84701425540644,19.0167517432497 -7.98824594486013,19.1666133968961 -7.73818368899975,19.4175024756732 -7.1554285620443,20.0377230160402 -7.11636117923165,20.0916215349206 -6.94309010175699,20.6018229509383 -6.93931772219968,20.5147481625265 -7.29960580813863,21.7281107927397 -7.2908724910813,21.7464559262033 -7.92008473066715,21.949130893652 -8.30590097415828,21.8018013851879 -8.90870655684298,21.8751819190423 -9.52370777754857,22.2087532894864 -9.89479623783651,22.1552681820643 -11.0848011206538,22.4027982927424 -10.9930754533357,22.8373454118847 -11.0176217586743,23.4567908057674 -10.8678634578925,23.9122152035557 -10.9268262671375,24.0178935075926 -11.2372982723471,23.9041536801182 -11.7222815894063,24.0799052263428 -12.1912968888874,23.9309220720454 -12.5658476701389,24.0161365088947 -12.9110462378486,21.9338863461259 -12.8984371883694,21.8878426449539 -16.0803101538769,22.5624784685243 -16.8984514299218,23.2150484555061 -17.523116143466,21.3771761410456 -17.9306364885197,18.9561869646036 -17.7890947404723,18.2633093604342 -17.309950860262,14.209706658595 -17.3531006812257,14.058501417709 -17.4233806291427,13.46236209479 -16.9712118465888,12.8140812516884 -16.9413428687241,12.2154614600194 -17.1116683895581,11.7341988460851 -17.3018893368245,11.6400960628816 -16.6731421851293,11.7785372249915 -15.7938160132507,12.1235807634044 -14.8783163387679,12.1756189307223 -14.4491435685839,12.500095249083 -13.5476998836844,12.7384786312454 -13.1379057756099,13.3129138526019 -12.4836304663625,13.6337211442698 -12.0386447078972,13.7387276546869 -11.2978630509932,13.6863794287752 -10.7310759416159,13.3873279151022 -10.3735783830207,13.1209875830698 -9.76689706791412,12.8753695003866 -9.16693368900547,12.9290613135378 -8.95909107832755,13.2364327328099 -8.56262948978431,12.9330403988243 -7.59653858808773,12.7282983740839 -6.92712208417881,12.2273470394465 -6.29444752362939,12.3224316748635 -6.10009246177966)))","AO","Angola","Africa","Africa","Middle Africa","Sovereign country",1245463.74769785,26920466,60.858,6257.15287433489 +"MULTIPOLYGON (((30.4696736457612 -2.41385475710134,30.52766 -2.80762,30.74301 -3.03431,30.75224 -3.35931,30.50554 -3.56858,30.11632 -4.09012,29.7535124040999 -4.4523894181533,29.3399975929003 -4.49998341229409,29.2763839047491 -3.29390715903406,29.0249263852168 -2.83925790773016,29.6321761410786 -2.9178577612461,29.9383590024079 -2.34848683025424,30.4696736457612 -2.41385475710134)))","BI","Burundi","Africa","Africa","Eastern Africa","Sovereign country",26238.9478592737,9891790,56.688,803.172837396172 +"MULTIPOLYGON (((35.7199182472228 32.7091924097949,35.5456653175345 32.3939920110306,35.1839302914914 32.5325106877889,34.9746407407093 31.8665823430597,35.2258915545124 31.7543411321218,34.970506626126 31.6167784693608,34.9274084815946 31.3534353704014,35.397560662586 31.4890860051676,35.420918409982 31.1000658228744,34.9226025733914 29.5013261988445,34.8232432887838 29.7610807617182,34.26544 31.21936,34.2654347446462 31.2193573095203,34.2654333839357 31.2193608668202,34.5563716977389 31.548823960897,34.4881071306814 31.6055388453373,34.7525871111512 32.0729263372012,34.9554171078968 32.8273764104464,35.0984574724807 33.0805392522443,35.1260526873245 33.0909003769188,35.4607092628467 33.0890400253563,35.5527966651908 33.264274807258,35.8211007016502 33.2774264592763,35.8363969256086 32.8681232773085,35.7007979672748 32.7160136988574,35.7199182472228 32.7091924097949)))","IL","Israel","Asia","Asia","Western Asia","Country",22991.165807789,8215700,82.1536585365854,31702.0835366295 +"MULTIPOLYGON (((35.8211007016502 33.2774264592763,35.5527966651908 33.264274807258,35.4607092628467 33.0890400253563,35.1260526873245 33.0909003769188,35.4822066586801 33.9054501409194,35.9795923194894 34.6100582952191,35.9984025408436 34.6449140488,36.4481942075121 34.5939352483441,36.6117501157159 34.2017886418972,36.0664604021721 33.8249124211926,35.8211007016502 33.2774264592763)))","LB","Lebanon","Asia","Asia","Western Asia","Sovereign country",10099.0030328829,5603279,79.231,13831.3752293893 +"MULTIPOLYGON (((49.5435189145958 -12.4698328589406,49.8089807472791 -12.8952849259996,50.0565108579572 -13.555761407122,50.2174312681141 -14.7587887508768,50.4765368996255 -15.2265121395505,50.377111443896 -15.7060694312191,50.2002746925932 -16.0002633602568,49.8606055031387 -15.4142526180669,49.6726066424609 -15.7102035458025,49.8633443540502 -16.4510368791388,49.7745642433727 -16.8750420060936,49.4986120949341 -17.1060356584383,49.4356185239703 -17.9530640601344,49.0417924334739 -19.1187810197744,48.548540887248 -20.4968881161341,47.9307491391987 -22.3915011532511,47.5477234230513 -23.7819589169285,47.0957613462266 -24.9416297339905,46.2824776548171 -25.1784628231841,45.4095076841105 -25.6014344214931,44.8335738462176 -25.3461011695389,44.0397204933498 -24.9883452287823,43.7637683449112 -24.46067717865,43.6977775408745 -23.5741163062506,43.3456543312376 -22.7769039852839,43.254187046081 -22.0574130184841,43.4332975604046 -21.3364751115802,43.8936828956929 -21.1633073869701,43.8963700701721 -20.8304594865782,44.3743253924397 -20.0723662248564,44.4643974139244 -19.435454196859,44.2324219093662 -18.9619947242009,44.0429761085842 -18.3313872209432,43.9630843442609 -17.4099447567468,44.3124687029863 -16.850495700755,44.4465173683514 -16.2162191708045,44.9449365578065 -16.1793738745804,45.502731967965 -15.9743734676785,45.8729936053363 -15.7934542782247,46.3122432798172 -15.7800184058288,46.8821826515643 -15.2101823869463,47.7051298358124 -14.5943026668918,48.0052148781313 -14.0912325985304,47.8690474790422 -13.6638685034766,48.2938277524814 -13.7840678849875,48.8450602557388 -13.0891748999587,48.863508742067 -12.4878679338104,49.1946513201933 -12.040556735892,49.5435189145958 -12.4698328589406)))","MG","Madagascar","Africa","Africa","Eastern Africa","Sovereign country",589382.827011519,23589801,65.133,1372.02096124513 +"MULTIPOLYGON (((35.397560662586 31.4890860051676,34.9274084815946 31.3534353704014,34.970506626126 31.6167784693608,35.2258915545124 31.7543411321218,34.9746407407093 31.8665823430597,35.1839302914914 32.5325106877889,35.5456653175345 32.3939920110306,35.5452519060762 31.7825047877208,35.397560662586 31.4890860051676)))","PS","Palestine","Asia","Asia","Western Asia","Disputed",5037.10382587155,4294682,73.126,4319.52828287882 +"MULTIPOLYGON (((-16.7137288070235 13.5949586043799,-15.6245963200399 13.6235873478696,-15.3987703109245 13.8603687606309,-15.0817353988138 13.876491807506,-14.6870308089685 13.6303569604998,-14.3767138330558 13.6256802433774,-14.0469923568175 13.7940678980004,-13.8449633447724 13.505041612192,-14.2777017887846 13.2805850285322,-14.7121972314946 13.2982066919438,-15.1411632959495 13.5095116235852,-15.5118125065629 13.2785696476729,-15.691000535535 13.2703530949385,-15.9312959456922 13.1302841252113,-16.8415246240813 13.1513939478026,-16.7137288070235 13.5949586043799)))","GM","The Gambia","Africa","Africa","Western Africa","Sovereign country",14031.2844514589,1917852,60.707,1550.21843235512 +"MULTIPOLYGON (((9.48213992680527 30.3075560572462,9.05560265466815 32.1026919622013,8.43910281742612 32.5062848984008,8.43047285323337 32.748337307256,7.61264163578218 33.344114895149,7.52448164229224 34.0973764104515,8.1409814795343 34.6551459823938,8.37636762862377 35.4798760035559,8.21782433435231 36.4331769882603,8.42096438969168 36.9464273137832,9.50999352381061 37.3499944117665,10.2100024756363 37.2300017359848,10.1806502620945 36.7240377874151,11.0288672217333 37.092103176414,11.1000256689993 36.8999960393689,10.6000045101431 36.4100001083774,10.5932865739451 35.9474443629328,10.9395186703007 35.6989840764735,10.807847120821 34.8335071884492,10.1495927262871 34.3307730168977,10.3396586442566 33.7857416855153,10.8568363786337 33.7687401392913,11.1085006038951 33.2933428004222,11.488787469131 33.1369957545232,11.4322534522037 32.3689031031529,10.9447896663945 32.0818146835554,10.6369014827995 31.7614208033458,9.95022505050508 31.3760696477453,10.0565751481617 30.9618313664935,9.97001712407285 30.5393248560752,9.48213992680527 30.3075560572462)))","TN","Tunisia","Africa","Africa","Northern Africa","Sovereign country",156237.321647096,11143908,75.335,10767.0276518537 +"MULTIPOLYGON (((-8.68439978680905 27.395744126896,-8.66512447756419 27.5894790715582,-8.66558956545481 27.6564258895924,-8.67411617678297 28.8412889673966,-7.05922766766196 29.5792284205246,-6.06063229005377 29.7316997340017,-5.24212927898279 30.0004430201356,-4.85964616537447 30.5011876490438,-3.69044104655472 30.8969516057512,-3.64749793132015 31.6372940129807,-3.06898027181265 31.7244979924732,-2.61660478352957 32.0943462183862,-1.30789913573787 32.2628889023061,-1.12455115396631 32.6515215113571,-1.3880492822226 32.8640150009414,-1.73345455566147 33.9197128362321,-1.79298580566171 34.5279186060913,-2.16991370279862 35.1683963079167,-1.20860287108906 35.7148487411871,-0.127454392894606 35.8886624212008,0.503876580415209 36.3012728948353,1.46691857260655 36.6056470810344,3.16169884605083 36.7839049342252,4.81575809084913 36.8650369329235,5.32012007001779 36.7165188665166,6.26181969567261 37.1106550156067,7.33038496260397 37.1183806422344,7.73707848474101 36.8857075058402,8.42096438969168 36.9464273137832,8.21782433435231 36.4331769882603,8.37636762862377 35.4798760035559,8.1409814795343 34.6551459823938,7.52448164229224 34.0973764104515,7.61264163578218 33.344114895149,8.43047285323337 32.748337307256,8.43910281742612 32.5062848984008,9.05560265466815 32.1026919622013,9.48213992680527 30.3075560572462,9.80563439295236 29.4246383733234,9.85999799972345 28.959989732371,9.68388471847277 28.1441738957792,9.75612837081678 27.6882585718842,9.62905602381107 27.1409534774809,9.71628584151966 26.5122063257857,9.31941084151816 26.0943248560575,9.91069257980178 25.3654546167968,9.94826134607797 24.9369536402325,10.3038468766784 24.3793132593709,10.7713635596229 24.5625320500618,11.560669386449 24.0979092473255,11.9995056494716 23.4716684025964,8.57289310062978 21.5656607121591,5.67756595218069 19.6012069767997,4.26741946780004 19.155265204337,3.1581331722227 19.05736420336,3.1466610042539 19.6935785995214,2.68358849448643 19.8562301701601,2.06099083823392 20.1422333846795,1.82322757325903 20.610809434486,-1.55005489745761 22.7926659204974,-4.92333736817423 24.974574082941,-8.68439978680905 27.395744126896)))","DZ","Algeria","Africa","Africa","Northern Africa","Sovereign country",2315916.65788588,39113313,75.641,13483.3378622219 +"MULTIPOLYGON (((35.5456653175345 32.3939920110306,35.7199182472228 32.7091924097949,36.8340621274355 32.3129375269808,38.7923405291361 33.3786864283522,39.195468377445 32.1610088160427,39.0048856951526 32.010216986615,37.002165561681 31.5084129908447,37.9988489112944 30.5084998642131,37.6681197446264 30.3386652694859,37.503581984209 30.0037761500184,36.7405277849873 29.8652833114762,36.5012142270436 29.5052536076987,36.0689408709221 29.1974946151845,34.9560372250843 29.3565546737788,34.9226025733914 29.5013261988445,35.420918409982 31.1000658228744,35.397560662586 31.4890860051676,35.5452519060762 31.7825047877208,35.5456653175345 32.3939920110306)))","JO","Jordan","Asia","Asia","Western Asia","Sovereign country",89207.1369063166,8809306,74.034,8622.18546801292 +"MULTIPOLYGON (((51.5795186704633 24.2454971379511,51.7574406268442 24.2940729843055,51.7943892759329 24.0198261581325,52.5770805194256 24.1774392766227,53.4040067889601 24.1513168400992,54.0080009295876 24.1217579208282,54.6930237160486 24.7978923609351,55.4390246926141 25.4391452092449,56.0708207538146 26.055464178974,56.261041701081 25.7146064315768,56.396847365144 24.9247321639955,55.886232537668 24.9208305933574,55.8041186867562 24.2696041936153,55.9812138202205 24.1305429143178,55.5286316262082 23.9336040308535,55.5258410988645 23.5248692896409,55.2344893736029 23.1109927434153,55.2083410988632 22.708329982997,55.0068030129249 22.4969475367071,52.0007332700743 23.0011544865789,51.617707553927 24.0142192652288,51.5795186704633 24.2454971379511)))","AE","United Arab Emirates","Asia","Asia","Western Asia","Sovereign country",79880.7382809669,9070867,76.948,63943.1858285789 +"MULTIPOLYGON (((50.8101082700696 24.7547425399714,50.7439107603037 25.4824242212894,51.0133516782735 26.0069916854842,51.2864616229361 26.1145820175159,51.5890788104373 25.8011127792334,51.6067004738488 25.2156704777987,51.3896077817906 24.6273859725881,51.112415398977 24.5563308781867,50.8101082700696 24.7547425399714)))","QA","Qatar","Asia","Asia","Western Asia","Sovereign country",11327.854664807,2374419,77.888,120860.06755829 +"MULTIPOLYGON (((47.9745190773499 29.9758192001485,48.1831885109445 29.5344766301598,48.0939433123764 29.306299343375,48.4160941912839 28.5520042994267,47.7088505389374 28.5260627304161,47.4598218117228 29.0025194361472,46.5687134132818 29.0990251734523,47.302622104691 30.0590699325707,47.9745190773499 29.9758192001485)))","KW","Kuwait","Asia","Asia","Western Asia","Sovereign country",16652.1196912198,3782450,74.458,70832.3683645207 +"MULTIPOLYGON (((39.195468377445 32.1610088160427,38.7923405291361 33.3786864283522,41.0061588885199 34.4193722600621,41.3839652850058 35.6283165553144,41.2897074725055 36.3588146021923,41.837064243341 36.6058537867636,42.3495910988118 37.2298725449041,42.7791256040218 37.3852635768058,43.9422587420473 37.2562275253729,44.2934517759029 37.0015143906063,44.772677101595 37.1704369256168,45.4206181170532 35.9775458847428,46.0763403664048 35.6773833277755,46.1517879575509 35.0932587753643,45.6484595070281 34.748137722303,45.416690708199 33.9677977564796,46.1093616066393 33.017287299119,47.3346614927119 32.4691553817991,47.8492037290421 31.7091759302987,47.6852860858123 30.9848532170796,48.0046981138083 30.9851374374572,48.0145683123761 30.4524567733926,48.5679712257898 29.9267782659035,47.9745190773499 29.9758192001485,47.302622104691 30.0590699325707,46.5687134132818 29.0990251734523,44.7094987322847 29.1788910995594,41.8899809100078 31.1900086532784,40.3999943377362 31.8899917668879,39.195468377445 32.1610088160427)))","IQ","Iraq","Asia","Asia","Western Asia","Sovereign country",436965.03416826,35006080,69.458,14838.3829483763 +"MULTIPOLYGON (((55.2083410988632 22.708329982997,55.2344893736029 23.1109927434153,55.5258410988645 23.5248692896409,55.5286316262082 23.9336040308535,55.9812138202205 24.1305429143178,55.8041186867562 24.2696041936153,55.886232537668 24.9208305933574,56.396847365144 24.9247321639955,56.845140415276 24.2416730819615,57.4034525897574 23.8785944686788,58.1369478697083 23.7479306096288,58.7292114602054 23.5656678329354,59.1805017434103 22.9923953313055,59.450097690677 22.6602709009656,59.8080603371629 22.5336119654182,59.8061483091681 22.3105248072142,59.4421911965364 21.714540513592,59.2824076678899 21.4338858098148,58.8611413918466 21.1140345321443,58.4879858742669 20.4289859074671,58.0343184751766 20.4814374862433,57.8263725116341 20.2430024276486,57.665762160071 19.7360049504331,57.7887003924933 19.0675702987377,57.6943909035606 18.9447095809638,57.2342639504338 18.9479910344143,56.6096509133219 18.5742670760795,56.5121891620195 18.087113348864,56.2835209491279 17.876066799384,55.6614917336306 17.8841283228215,55.2699394061551 17.6323090682632,55.2749003436551 17.2283543970376,54.791002231674 16.9506969263334,54.2392529640937 17.0449805770499,53.5705082538046 16.7076626652647,53.1085726255475 16.651051133689,52.7821842791921 17.3497423364912,52.0000098000222 19.0000033635161,54.9999817238624 19.9999940047961,55.6666593768598 22.0000011255723,55.2083410988632 22.708329982997)),((56.261041701081 25.7146064315768,56.0708207538146 26.055464178974,56.3620174497793 26.395934353129,56.4856791522537 26.3091179468786,56.3914213397534 25.8959907089212,56.261041701081 25.7146064315768)))","OM","Oman","Asia","Asia","Western Asia","Sovereign country",309302.033595231,3960925,76.578,40365.2732623193 +"MULTIPOLYGON (((167.21680138577 -15.8918462053084,167.844876743845 -16.4663331030972,167.515181105823 -16.59784962328,167.180007765978 -16.1599952124709,167.21680138577 -15.8918462053084)),((166.793157993841 -15.6688107235367,166.649859247095 -15.3927035458012,166.629136997746 -14.6264970842096,167.107712437201 -14.933920179914,167.27002811103 -15.7400208472349,167.001207310248 -15.6146021460625,166.793157993841 -15.6688107235367)))","VU","Vanuatu","Oceania","Oceania","Melanesia","Sovereign country",7490.040146716,258850,71.709,2892.34160435097 +"MULTIPOLYGON (((102.584932489027 12.1865949569133,102.348099399833 13.3942473413582,102.988422072362 14.2257211369345,104.281418084737 14.4167430689014,105.218776890079 14.2732117782107,106.043946160916 13.88109100998,106.496373325631 14.5705838078343,107.382727492301 14.202440904187,107.614547967562 13.5355307072442,107.491403029411 12.3372059188279,105.810523716253 11.5676146509212,106.249670037869 10.9618118351636,105.199914992292 10.8893098006581,104.334334751403 10.4865436873752,103.49727990114 10.6325554468159,103.090689731867 11.1536605900472,102.584932489027 12.1865949569133)))","KH","Cambodia","Asia","Asia","South-Eastern Asia","Sovereign country",182235.977782045,15270790,68.251,3124.31929344274 +"MULTIPOLYGON (((105.218776890079 14.2732117782107,104.281418084737 14.4167430689014,102.988422072362 14.2257211369345,102.348099399833 13.3942473413582,102.584932489027 12.1865949569133,101.68715783082 12.6457400578266,100.831809523525 12.6270848657692,100.978467238369 13.4127216659026,100.097797479251 13.4068563908374,100.018732537845 12.3070010441534,99.4789205261236 10.8463666854235,99.1537724141432 9.96306142825856,99.2223987162268 9.23925547936243,99.8738318216981 9.20786204674512,100.279646844486 8.29515289960605,100.459274123133 7.42957265871718,101.017327915453 6.85686859784248,101.623079054778 6.74062246340192,102.141186964936 6.22163605389463,101.814281854258 5.81080841717424,101.154218784594 5.69138418214771,101.075515578213 6.20486705161592,100.259596388757 6.64282481528954,100.085756870527 6.46448944745029,99.6906905456558 6.8482127954336,99.5196415547696 7.34345388430276,98.9882528015123 7.90799306887533,98.503786248776 8.38230520266629,98.339661899817 7.79451162356239,98.1500093933058 8.35000743248388,98.2591500183063 8.9739228377598,98.553550653073 9.93295990644854,99.038120558674 10.9605457625724,99.5872860046397 11.8927627629017,99.1963537943517 12.8047484399887,99.2120117533361 13.2692937280765,99.0977551615388 13.8275025496933,98.4308191263799 14.6220276961808,98.1920740091914 15.1237025008704,98.5373759297657 15.3084974227461,98.9033484232568 16.1778242049761,98.4937610209114 16.8378355982079,97.8591227559349 17.5679460718437,97.3758964375735 18.4454377303758,97.7977828308044 18.6270803898818,98.2537239929156 19.70820302986,98.9596757344549 19.7529806584409,99.5433093607593 20.1865976018021,100.115987583418 20.4178496363082,100.548881056727 20.1092379826611,100.606293573003 19.5083444279712,101.282014601652 19.4625849471768,101.035931431078 18.4089283309616,101.059547560635 17.5124972599945,102.113591750092 18.1091016708042,102.413004998792 17.9327816838243,102.998705682388 17.9616946476916,103.200192091894 18.3096320663128,103.956476678485 18.2409540877969,104.716947056092 17.4288589543301,104.779320509869 16.4418649357714,105.58903852745 15.5703160669529,105.544338413518 14.7239336206604,105.218776890079 14.2732117782107)))","TH","Thailand","Asia","Asia","South-Eastern Asia","Sovereign country",510125.56979289,68416772,74.895,14857.202932021 +"MULTIPOLYGON (((107.382727492301 14.202440904187,106.496373325631 14.5705838078343,106.043946160916 13.88109100998,105.218776890079 14.2732117782107,105.544338413518 14.7239336206604,105.58903852745 15.5703160669529,104.779320509869 16.4418649357714,104.716947056092 17.4288589543301,103.956476678485 18.2409540877969,103.200192091894 18.3096320663128,102.998705682388 17.9616946476916,102.413004998792 17.9327816838243,102.113591750092 18.1091016708042,101.059547560635 17.5124972599945,101.035931431078 18.4089283309616,101.282014601652 19.4625849471768,100.606293573003 19.5083444279712,100.548881056727 20.1092379826611,100.115987583418 20.4178496363082,100.32910119019 20.7861217310362,101.180005324308 21.436572984294,101.27002566936 21.2016519230952,101.803119744883 21.1743667668451,101.652017856862 22.3181987574095,102.170435825614 22.4647531193893,102.754896274835 21.6751372339695,103.203861118586 20.7665622014137,104.435000441508 20.7587332219215,104.822573683697 19.8866417505639,104.183387892679 19.6246680770602,103.896532017027 19.2651809758218,105.094598423282 18.6669745956111,105.925762160264 17.485315456609,106.556007928496 16.6042839624648,107.312705926546 15.9085383163032,107.564525181104 15.2021731633056,107.382727492301 14.202440904187)))","LA","Lao PDR","Asia","Asia","South-Eastern Asia","Sovereign country",229080.422295565,6576397,65.975,5436.48264275006 +"MULTIPOLYGON (((100.115987583418 20.4178496363082,99.5433093607593 20.1865976018021,98.9596757344549 19.7529806584409,98.2537239929156 19.70820302986,97.7977828308044 18.6270803898818,97.3758964375735 18.4454377303758,97.8591227559349 17.5679460718437,98.4937610209114 16.8378355982079,98.9033484232568 16.1778242049761,98.5373759297657 15.3084974227461,98.1920740091914 15.1237025008704,98.4308191263799 14.6220276961808,99.0977551615388 13.8275025496933,99.2120117533361 13.2692937280765,99.1963537943517 12.8047484399887,99.5872860046397 11.8927627629017,99.038120558674 10.9605457625724,98.553550653073 9.93295990644854,98.4571741068487 10.6752660181051,98.7645455261208 11.4412916121837,98.4283386576299 12.0329867619257,98.5095740091927 13.1223776310707,98.1036039571077 13.6404597030129,97.7777323750752 14.8372858748926,97.5970715677828 16.1005679386998,97.1645398294998 16.9287344426093,96.505768670643 16.4272405054328,95.3693522481124 15.7143899601826,94.8084045755841 15.8034542912376,94.1888041524045 16.037936102762,94.5334859557913 17.2772403019857,94.3248165221968 18.2135139022499,93.5409883971936 19.36649262133,93.6632548359962 19.726961574782,93.0782776224522 19.855144965082,92.3685535013556 20.6708832870253,92.3032344909387 21.4754853378098,92.652257114638 21.3240475529785,92.6727209818256 22.0412389185413,93.1661275573484 22.2784595809771,93.0602942240146 22.7031106633356,93.2863269388593 23.043658352139,93.3251876159428 24.0785564234322,94.1067419779251 23.8507408716735,94.5526579121716 24.6752383488903,94.6032491393854 25.1624954289704,95.1551534362626 26.0013072779321,95.124767694075 26.5735720891323,96.419365675851 27.2645893417392,97.1339990580153 27.08377350515,97.0519885599681 27.6990589462332,97.4025614766361 27.8825361190854,97.32711388549 28.2615827499463,97.9119877461694 28.3359451360143,98.2462309102333 27.7472213811292,98.6826900573705 27.5088121607506,98.7120939473445 26.7435358749403,98.6718380065892 25.9187025009135,97.7246090026791 25.083637193293,97.604719679762 23.897404690033,98.6602624857558 24.06328603769,98.8987492207828 23.1427220728425,99.5319922220874 22.9490388046126,99.2408988789873 22.1183143173046,99.9834892110215 21.7429367131364,100.416537713627 21.5588394230966,101.150032993578 21.849984442629,101.180005324308 21.436572984294,100.32910119019 20.7861217310362,100.115987583418 20.4178496363082)))","MM","Myanmar","Asia","Asia","South-Eastern Asia","Sovereign country",679573.994237083,51924182,66.285,4770.01209867368 +"MULTIPOLYGON (((104.334334751403 10.4865436873752,105.199914992292 10.8893098006581,106.249670037869 10.9618118351636,105.810523716253 11.5676146509212,107.491403029411 12.3372059188279,107.614547967562 13.5355307072442,107.382727492301 14.202440904187,107.564525181104 15.2021731633056,107.312705926546 15.9085383163032,106.556007928496 16.6042839624648,105.925762160264 17.485315456609,105.094598423282 18.6669745956111,103.896532017027 19.2651809758218,104.183387892679 19.6246680770602,104.822573683697 19.8866417505639,104.435000441508 20.7587332219215,103.203861118586 20.7665622014137,102.754896274835 21.6751372339695,102.170435825614 22.4647531193893,102.7069922221 22.7087950708877,103.504514601661 22.7037566187392,104.476858351664 22.819150092047,105.329209425887 23.3520633000569,105.811247186305 22.9768924016179,106.725403273548 22.7942678898984,106.567273390735 22.2182048609248,107.043420037873 21.8118989120299,108.050180291783 21.5523798690601,106.71506798709 20.696850694252,105.881682163519 19.7520504826597,105.662005649846 19.0581651880606,106.426816847766 18.0041209986032,107.36195356652 16.6974565698871,108.26949507043 16.0797423364861,108.877106561317 15.2766905786704,109.335269810017 13.4260283472177,109.200135939574 11.6668592391378,108.366129998815 11.0083206242263,107.220928582795 10.3644839543018,106.405112746203 9.53083974856932,105.158263787865 8.59975962975049,104.795185174582 9.2410383162765,105.076201613386 9.91849050540681,104.334334751403 10.4865436873752)))","VN","Vietnam","Asia","Asia","South-Eastern Asia","Sovereign country",335990.801728306,92544915,75.855,5264.82809971072 +"MULTIPOLYGON (((130.780003660047 42.2200078132032,130.780004853585 42.2200103610826,130.780007358931 42.2200072291688,130.780003660047 42.2200078132032)),((130.63999970691 42.3950242752218,130.64 42.395,130.779992316578 42.2200096042772,130.400030552289 42.2800035670597,129.965948521037 41.9413679062511,129.667362095255 41.6011044378252,129.705189243692 40.8828278671843,129.18811486218 40.661807766272,129.010399611528 40.4854361028598,128.633368361527 40.1898469101503,127.967414178581 40.0254125025976,127.533435500194 39.7568500839767,127.502119582225 39.3239307724515,127.38543419811 39.2134723984277,127.783342726758 39.0508983424374,128.349716424677 38.6122429469279,128.205745884311 38.3703972438019,127.780035435091 38.3045356308459,127.073308547067 38.2561148137884,126.683719924019 37.8047728541512,126.237338901882 37.8403779160003,126.174758742376 37.749685777328,125.689103631697 37.940010077459,125.568439162296 37.7520887314296,125.275330438336 37.6690705429527,125.240087111513 37.8572244329274,124.981033156434 37.9488209091648,124.712160679219 38.1083460556498,124.985994093934 38.5484742294797,125.221948683779 38.6658572454307,125.132858514508 38.8485592717986,125.386589797061 39.3879578720612,125.321115757347 39.5513845891842,124.737482131042 39.6603443466716,124.265624627785 39.9284933538342,125.079941847841 40.5698237167924,126.182045119329 41.1073361272764,126.86908328665 41.8165693222662,127.343782993683 41.503151760416,128.208433058791 41.4667715520825,128.052215203972 41.9942845729179,129.59666873588 42.4249817978546,129.994267205933 42.9853868678438,130.63999970691 42.3950242752218)))","KP","Dem. Rep. Korea","Asia","Asia","Eastern Asia","Sovereign country",125679.216030188,25116363,71.179,NA +"MULTIPOLYGON (((126.174758742376 37.749685777328,126.237338901882 37.8403779160003,126.683719924019 37.8047728541512,127.073308547067 38.2561148137884,127.780035435091 38.3045356308459,128.205745884311 38.3703972438019,128.349716424677 38.6122429469279,129.21291954968 37.4323924830559,129.460449660358 36.7841891546028,129.468304478066 35.632140611304,129.09137658093 35.0824842392314,128.185850457879 34.8903771021864,127.386519403188 34.4756737330441,126.485747511909 34.3900458847365,126.373919712429 34.9345604517959,126.559231398628 35.6845405136479,126.117397902532 36.7254847275193,126.860143263863 36.8939240585746,126.174758742376 37.749685777328)))","KR","Republic of Korea","Asia","Asia","Eastern Asia","Sovereign country",99044.3668304894,50746659,81.7219512195122,33425.6895931418 +"MULTIPOLYGON (((87.7512642760767 49.2971979844055,88.8055668476955 49.4705207383124,90.7136674336407 50.3318118353211,92.2347115417197 50.8021707220417,93.10421 50.49529,94.1475663594356 50.4805366074572,94.8159493346987 50.0134333359709,95.81402 49.97746,97.25976 49.72605,98.2317615091916 50.4224006211287,97.8257397806743 51.0109951849332,98.8614905131003 52.0473660345467,99.9817322123235 51.634006252644,100.889480421963 51.5168557806383,102.06521 51.25991,102.25589 50.51056,103.67654544476 50.0899661321951,104.62158 50.27532,105.886591424587 50.4060191920922,106.888804152455 50.2742959661803,107.868175897251 49.7937051458658,108.475167270951 49.2825477158507,109.402449171997 49.2929605169576,110.662010532679 49.1301280788059,111.581230910287 49.3779682480777,112.897739699354 49.543565375357,114.362456496235 50.2483027207374,114.96210981655 50.1402473008151,115.485695428531 49.8051773138347,116.678800897286 49.8885313991214,116.191802199368 49.1345980901991,115.485282017073 48.1353825954034,115.742837355616 47.7265445013263,116.308952671373 47.8534101426028,117.295507440257 47.6977090521074,118.064142694167 48.0667304551037,118.866574334795 47.7470600449462,119.772823927898 47.0480587835501,119.663269891439 46.6926799586789,118.874325799639 46.8054120957237,117.421701287914 46.6727328558143,116.717868280099 46.3882024196152,115.9850964702 45.727235012386,114.460331658996 45.3398167994938,113.463906691544 44.8088931341271,112.436062453259 45.0116456162243,111.8733061056 45.1020793727351,111.348376906379 44.4574417181101,111.667737257943 44.0731757675877,111.829587843881 43.7431183945395,111.12968224492 43.4068340114002,110.412103306115 42.871233628911,109.243595819131 42.5194463160841,107.744772576938 42.4815158147819,106.129315627062 42.1343277044289,104.964993931093 41.5974095729163,104.522281935649 41.9083466660166,103.312278273535 41.9074681666676,101.83304039918 42.5148729518263,100.845865513108 42.6638044296915,99.51581749878 42.5246914739617,97.451757440178 42.74888967546,96.3493957865278 42.7256352809287,95.7624548685567 43.3194491643946,95.3068754414715 44.2413308782655,94.6889286641253 44.3523318548284,93.4807336771413 44.97547211362,92.1338908223182 45.1150759954565,90.9455395853343 45.2860733099103,90.5857682637183 45.7197160914875,90.970809360725 46.8881460638229,90.2808256367639 47.6935490993079,88.8542977233468 48.069081732773,88.0138322285517 48.5994627956006,87.7512642760767 49.2971979844055)))","MN","Mongolia","Asia","Asia","Eastern Asia","Sovereign country",1544322.15019105,2923896,68.847,11348.6473412397 +"MULTIPOLYGON (((97.32711388549 28.2615827499463,97.4025614766361 27.8825361190854,97.0519885599681 27.6990589462332,97.1339990580153 27.08377350515,96.419365675851 27.2645893417392,95.124767694075 26.5735720891323,95.1551534362626 26.0013072779321,94.6032491393854 25.1624954289704,94.5526579121716 24.6752383488903,94.1067419779251 23.8507408716735,93.3251876159428 24.0785564234322,93.2863269388593 23.043658352139,93.0602942240146 22.7031106633356,93.1661275573484 22.2784595809771,92.6727209818256 22.0412389185413,92.1460347839068 23.6274986841726,91.8699276061713 23.6243464218028,91.7064750508321 22.9852639836492,91.1589632506997 23.5035269231044,91.4677299336437 24.0726394719348,91.9150928079944 24.1304137232371,92.3762016133348 24.976692816665,91.7995959818221 25.1474317489573,90.8722107279121 25.1326006128895,89.9206925801219 25.2697498641922,89.8324809101996 25.9650820988955,89.3550940286873 26.0144072535181,88.5630493509498 26.4465255803427,88.2097892598025 25.7680657007827,88.9315539896231 25.2386923283848,88.306372511756 24.8660794133442,88.0844222350624 24.5016572128219,88.6999402200909 24.2337149113886,88.5297697285538 23.6311418726492,88.8763118835031 22.8791464299378,89.0319612975662 22.055708319583,88.8887659036854 21.6905884872247,88.2084973489952 21.7031716984878,86.9757043802403 21.4955616317552,87.0331685729489 20.7433078068824,86.4993510273738 20.1516384953566,85.0602657409097 19.4785788029711,83.9410058939 18.3020097925497,83.1892171569178 17.671221421779,82.1927921894659 17.0166360539378,82.1912418964972 16.5566641301078,81.6927193541775 16.3102192245079,80.7919991393301 15.9519723576445,80.3248958678439 15.8991848820583,80.0250692076864 15.1364149032141,80.2332735533904 13.83577077886,80.2862935729219 13.0062606877108,79.8625468281285 12.0562153182409,79.8579993020868 10.3572750919971,79.340511509116 10.3088542749396,78.8853454934892 9.54613597252772,79.1897196796883 9.21654368737015,78.2779407083305 8.93304677981693,77.9411653990844 8.25295909263974,77.5398979023379 7.96553477623233,76.5929789570217 8.89927623131419,76.1300614765511 10.2996300317755,75.7464673196485 11.3082506372483,75.3961011087096 11.7812450220158,74.8648157083168 12.7419357365379,74.6167171568835 13.9925829126497,74.4438594908672 14.6172217879777,73.5341992532334 15.990652167215,73.1199092955494 17.9285700545925,72.8209094583086 19.2082335474362,72.8244751321368 20.4195032821415,72.6305334817454 21.356009426351,71.175273471974 20.7574413111142,70.4704586119451 20.8773306340314,69.1641300800388 22.0892980005727,69.6449276060824 22.4507746444543,69.3495967955344 22.8431796330627,68.1766451353734 23.6919650334567,68.8425993183188 24.3591336125609,71.0432401874682 24.3565239527302,70.8446993346028 25.2151020370435,70.2828731627256 25.7222287053398,70.168926629522 26.4918716496788,69.5143929381131 26.9409656845114,70.6164962096019 27.9891962753359,71.7776656432003 27.9131802434345,72.8237516620847 28.9615917017721,73.4506384622174 29.9764134791199,74.4213802428203 30.9798147649312,74.405928989565 31.6926394719653,75.2586417988132 32.2711054550405,74.4515592792787 32.7648996038055,74.1042936542773 33.4414732935869,73.749948358052 34.3176988795279,74.240202671205 34.7488870305713,75.7570609882683 34.5049225937213,76.871721632804 34.6535440129927,77.8374507994746 35.4940095077878,78.9122689147132 34.3219363469758,78.8110864602857 33.5061980250324,79.2088916360686 32.9943946396137,79.1761287779955 32.4837798121377,78.458446486326 32.6181643743127,78.738894484374 31.5159060735271,79.7213668151071 30.8827147486547,81.1112561380293 30.1834809433134,80.4767212259174 29.7298652206553,80.0884245136763 28.7944701197401,81.057202589852 28.416095282499,81.999987420585 27.92547923432,83.3042488951995 27.3645057235756,84.6750179381738 27.2349012313875,85.2517785989834 26.7261984319063,86.0243929381792 26.6309846054086,87.2274719583663 26.3978980575561,88.0602376647498 26.4146153834025,88.1748043151409 26.810405178326,88.0431327656612 27.4458185897868,88.1204407083699 27.8765416529396,88.7303259622786 28.0868647323675,88.8142484883206 27.2993159042394,88.8356425312894 27.0989663762438,89.7445276224389 26.71940298106,90.3732747741341 26.8757241887429,91.2175126484864 26.808648179628,92.0334835143751 26.8383104517636,92.1037117858597 27.4526140406332,91.6966565286967 27.7717418482517,92.5031189310436 27.8968763290464,93.4133476094327 28.6406293808072,94.5659904317029 29.27743805594,95.4048022806646 29.0317166203921,96.117678664131 29.4528020289225,96.5865906107475 28.8309795191543,96.2488334492878 28.4110309921344,97.32711388549 28.2615827499463)))","IN","India","Asia","Asia","Southern Asia","Sovereign country",3142892.09769282,1293859294,68.021,5385.14181406703 +"MULTIPOLYGON (((92.6727209818256 22.0412389185413,92.652257114638 21.3240475529785,92.3032344909387 21.4754853378098,92.3685535013556 20.6708832870253,92.0828861836461 21.1921951359858,92.0252152852084 21.7015697290868,91.8348909850774 22.1829356958856,91.4170870299977 22.7650190292212,90.4960063008273 22.8050165878151,90.586956821661 22.3927936874229,90.2729708190556 21.8363677027201,89.8474670755643 22.0391460230334,89.7020495950949 21.8571157902853,89.4188627461355 21.9661789006373,89.0319612975662 22.055708319583,88.8763118835031 22.8791464299378,88.5297697285538 23.6311418726492,88.6999402200909 24.2337149113886,88.0844222350624 24.5016572128219,88.306372511756 24.8660794133442,88.9315539896231 25.2386923283848,88.2097892598025 25.7680657007827,88.5630493509498 26.4465255803427,89.3550940286873 26.0144072535181,89.8324809101996 25.9650820988955,89.9206925801219 25.2697498641922,90.8722107279121 25.1326006128895,91.7995959818221 25.1474317489573,92.3762016133348 24.976692816665,91.9150928079944 24.1304137232371,91.4677299336437 24.0726394719348,91.1589632506997 23.5035269231044,91.7064750508321 22.9852639836492,91.8699276061713 23.6243464218028,92.1460347839068 23.6274986841726,92.6727209818256 22.0412389185413)))","BD","Bangladesh","Asia","Asia","Southern Asia","Sovereign country",133782.141414655,159405279,71.803,2973.0415646346 +"MULTIPOLYGON (((91.6966565286967 27.7717418482517,92.1037117858597 27.4526140406332,92.0334835143751 26.8383104517636,91.2175126484864 26.808648179628,90.3732747741341 26.8757241887429,89.7445276224389 26.71940298106,88.8356425312894 27.0989663762438,88.8142484883206 27.2993159042394,89.4758101745211 28.0427588974064,90.0158288919712 28.2964385035272,90.7305139505678 28.0649539250758,91.2588537943199 28.0406143254663,91.6966565286967 27.7717418482517)))","BT","Bhutan","Asia","Asia","Southern Asia","Sovereign country",39377.4020057345,776448,69.43,7366.42412644897 +"MULTIPOLYGON (((88.1204407083699 27.8765416529396,88.0431327656612 27.4458185897868,88.1748043151409 26.810405178326,88.0602376647498 26.4146153834025,87.2274719583663 26.3978980575561,86.0243929381792 26.6309846054086,85.2517785989834 26.7261984319063,84.6750179381738 27.2349012313875,83.3042488951995 27.3645057235756,81.999987420585 27.92547923432,81.057202589852 28.416095282499,80.0884245136763 28.7944701197401,80.4767212259174 29.7298652206553,81.1112561380293 30.1834809433134,81.5258044778747 30.4227169866086,82.3275126484509 30.1152680526881,83.3371151061372 29.4637315943522,83.8989929544467 29.3202261418777,84.2345797057501 28.8398937037247,85.011638218123 28.6427739527473,85.8233199401315 28.2035759546987,86.9545170430006 27.9742617864035,88.1204407083699 27.8765416529396)))","NP","Nepal","Asia","Asia","Southern Asia","Sovereign country",150706.871321559,28323241,69.511,2266.18429824848 +"MULTIPOLYGON (((77.8374507994746 35.4940095077878,76.871721632804 34.6535440129927,75.7570609882683 34.5049225937213,74.240202671205 34.7488870305713,73.749948358052 34.3176988795279,74.1042936542773 33.4414732935869,74.4515592792787 32.7648996038055,75.2586417988132 32.2711054550405,74.405928989565 31.6926394719653,74.4213802428203 30.9798147649312,73.4506384622174 29.9764134791199,72.8237516620847 28.9615917017721,71.7776656432003 27.9131802434345,70.6164962096019 27.9891962753359,69.5143929381131 26.9409656845114,70.168926629522 26.4918716496788,70.2828731627256 25.7222287053398,70.8446993346028 25.2151020370435,71.0432401874682 24.3565239527302,68.8425993183188 24.3591336125609,68.1766451353734 23.6919650334567,67.4436666197455 23.944843654877,67.1454419289891 24.6636111516246,66.3728275897933 25.4251408960939,64.5304077492911 25.2370386825514,62.9057007180346 25.2184093287102,61.4973629087842 25.0782370061185,61.8741874530565 26.2399748804721,63.3166317076196 26.7565324976617,63.2338977395203 27.2170470240307,62.7554256529299 27.378923448185,62.727830438086 28.2596448837354,61.7718681171186 28.6993338078908,61.3693087095649 29.3032762720859,60.8742484882088 29.8292389999526,62.5498568052728 29.3185724960443,63.5502608580112 29.4683307968262,64.1480021503313 29.340819200146,64.3504187356185 29.5600306259281,65.0468620136161 29.4721806910319,66.3464726093244 29.8879434270362,66.381457553986 30.7388992375865,66.9388912291185 31.3049112004794,67.6833935891475 31.3031542017814,67.7926892434448 31.5829304062096,68.5569320006093 31.713310044882,68.9266768736577 31.6201891138921,69.3177641132426 31.9014122584244,69.2625220071226 32.5019440780883,69.6871472512649 33.1054989690412,70.3235941913716 33.3585326197584,69.9305432473596 34.0201201441751,70.8818030129884 33.9888559026385,71.1567733092135 34.3489114446322,71.1150187519216 34.7331257187222,71.6130762063507 35.1532034368229,71.4987679381211 35.650563259416,71.2623482603857 36.0743875188578,71.8462919452839 36.5099423284299,72.9200248554445 36.7200070256963,74.0675517109178 36.8361756454885,74.575892775373 37.0208413762835,75.1580277851409 37.1330309107891,75.8968974140501 36.6668061386518,76.1928483417857 35.8984034286878,77.8374507994746 35.4940095077878)))","PK","Pakistan","Asia","Asia","Southern Asia","Sovereign country",874119.998315395,185546257,66.139,4576.2270153496 +"MULTIPOLYGON (((66.5186068052887 37.3627843287588,67.0757820982596 37.3561439072093,67.8299996275595 37.1449940048647,68.1355623717014 37.0231151393043,68.8594458352459 37.3443358424306,69.1962728209244 37.1511435003074,69.518785434858 37.6089966904134,70.1165784036103 37.5882227646321,70.2705741718401 37.735164699854,70.3763041523093 38.1383959010275,70.8068205097329 38.4862816432164,71.3481311379903 38.2589053411322,71.2394039244482 37.9532650823419,71.5419177590848 37.9057744410656,71.4486934752302 37.0656448430805,71.8446382994506 36.7381712916469,72.1930408059624 36.9482876653457,72.6368896829173 37.0475580917784,73.260055779925 37.495256862939,73.9486959166465 37.4215662704908,74.9800024758954 37.4199901393059,75.1580277851409 37.1330309107891,74.575892775373 37.0208413762835,74.0675517109178 36.8361756454885,72.9200248554445 36.7200070256963,71.8462919452839 36.5099423284299,71.2623482603857 36.0743875188578,71.4987679381211 35.650563259416,71.6130762063507 35.1532034368229,71.1150187519216 34.7331257187222,71.1567733092135 34.3489114446322,70.8818030129884 33.9888559026385,69.9305432473596 34.0201201441751,70.3235941913716 33.3585326197584,69.6871472512649 33.1054989690412,69.2625220071226 32.5019440780883,69.3177641132426 31.9014122584244,68.9266768736577 31.6201891138921,68.5569320006093 31.713310044882,67.7926892434448 31.5829304062096,67.6833935891475 31.3031542017814,66.9388912291185 31.3049112004794,66.381457553986 30.7388992375865,66.3464726093244 29.8879434270362,65.0468620136161 29.4721806910319,64.3504187356185 29.5600306259281,64.1480021503313 29.340819200146,63.5502608580112 29.4683307968262,62.5498568052728 29.3185724960443,60.8742484882088 29.8292389999526,61.7812215513634 30.7358503280812,61.6993144061808 31.3795061304927,60.9419446145111 31.5480746526288,60.863654819589 32.1829196233344,60.5360779152908 32.9812688258116,60.963700392506 33.5288323023763,60.5284298033116 33.676446031218,60.8031933938074 34.4041018743199,61.2108170917257 35.6500723333092,62.2306514830059 35.2706639674223,62.9846623065766 35.4040408391676,63.1935384459004 35.8571656357189,63.9828959491587 36.0079574651466,64.5464791197339 36.3120732691843,64.7461051776774 37.1118177353333,65.5889477883578 37.3052167831856,65.7456307310668 37.6611640488121,66.2173848814593 37.3937901881339,66.5186068052887 37.3627843287588)))","AF","Afghanistan","Asia","Asia","Southern Asia","Sovereign country",652270.070308025,32758020,62.895,1838.96024371997 +"MULTIPOLYGON (((67.8299996275595 37.1449940048647,68.392032505166 38.1570252548687,68.1760250181859 38.9015534531139,67.4422196796413 39.1401435410055,67.7014286640174 39.5804784205645,68.5364164569894 39.5334528671789,69.0116329283455 40.0861581487567,69.3294946633728 40.7278244085249,70.666622348925 40.9602133245414,70.4581596210596 40.4964948593703,70.6014066913727 40.2185273300723,71.0141980325202 40.2443655462182,70.6480188333 39.9357538925712,69.5596098163685 40.103211371413,69.4648869159775 39.5266832545487,70.5491618183256 39.6041979029865,71.784693637992 39.2794632024644,73.6753792662548 39.4312368841056,73.9288521666464 38.5058153346227,74.2575142760227 38.6065068629434,74.8648157083168 38.3788463404816,74.8299857929521 37.9900070257014,74.9800024758954 37.4199901393059,73.9486959166465 37.4215662704908,73.260055779925 37.495256862939,72.6368896829173 37.0475580917784,72.1930408059624 36.9482876653457,71.8446382994506 36.7381712916469,71.4486934752302 37.0656448430805,71.5419177590848 37.9057744410656,71.2394039244482 37.9532650823419,71.3481311379903 38.2589053411322,70.8068205097329 38.4862816432164,70.3763041523093 38.1383959010275,70.2705741718401 37.735164699854,70.1165784036103 37.5882227646321,69.518785434858 37.6089966904134,69.1962728209244 37.1511435003074,68.8594458352459 37.3443358424306,68.1355623717014 37.0231151393043,67.8299996275595 37.1449940048647)))","TJ","Tajikistan","Asia","Asia","Central Asia","Sovereign country",138111.759254274,8362745,70.69,2546.50048351137 +"MULTIPOLYGON (((70.9623148944991 42.2661542832055,71.1862805520521 42.7042929143921,71.8446382994506 42.8453954127651,73.4897575214624 42.5008944768913,73.6453035826609 43.0912718776099,74.2128658385226 43.2983393418034,75.636964959622 42.8778998886767,76.0003536314985 42.9880223658907,77.6583919615832 42.9606855332083,79.1421773619798 42.8560924342495,79.6436454609401 42.4966828476595,80.2599902688853 42.3499992945991,80.1194303730514 42.1239407415382,78.5436609231753 41.5822425400387,78.187196893226 41.1853158636048,76.9044844908771 41.0664859075496,76.5263680357974 40.4279460719351,75.4678279967307 40.5620722519487,74.7768624205561 40.3664252792916,73.8222436868283 39.8939734970632,73.9600130553184 39.6600084498617,73.6753792662548 39.4312368841056,71.784693637992 39.2794632024644,70.5491618183256 39.6041979029865,69.4648869159775 39.5266832545487,69.5596098163685 40.103211371413,70.6480188333 39.9357538925712,71.0141980325202 40.2443655462182,71.7748751158566 40.1458444280538,73.0554171080492 40.8660330266895,71.8701147805705 41.3929000921213,71.1578585142916 41.1435871445291,70.4200224140282 41.5199982773431,71.2592476744482 42.1677106796895,70.9623148944991 42.2661542832055)))","KG","Kyrgyzstan","Asia","Asia","Central Asia","Sovereign country",195874.658497004,5835500,70.4024390243902,3181.64216292265 +"MULTIPOLYGON (((52.5024597511961 41.7833155380864,52.9442932472917 42.1160342473976,54.079417759015 42.3241094020208,54.7553454933926 42.0439714625666,55.4552510923538 41.2598591171858,55.9681913592829 41.3086416692694,57.0963912290791 41.3223100856106,56.9322152036878 41.8260261093756,57.7865299823371 42.1705528834655,58.6290108579915 42.7515510117231,59.9764221535698 42.2230819768902,60.0833406919817 41.4251461858714,60.4659529966707 41.2203266464825,61.5471789895136 41.2663703476546,61.8827140643847 41.0848568792294,62.374260288345 40.0538862167904,63.518014764261 39.3632565374256,64.1702230162168 38.8924067245982,65.2159989765074 38.4026950139843,66.5461503437002 37.9746849635269,66.5186068052887 37.3627843287588,66.2173848814593 37.3937901881339,65.7456307310668 37.6611640488121,65.5889477883578 37.3052167831856,64.7461051776774 37.1118177353333,64.5464791197339 36.3120732691843,63.9828959491587 36.0079574651466,63.1935384459004 35.8571656357189,62.9846623065766 35.4040408391676,62.2306514830059 35.2706639674223,61.2108170917257 35.6500723333092,61.1230705096941 36.4915971949662,60.3776379738839 36.5273831243284,59.2347619973168 37.4129879827303,58.4361544126782 37.5223094752438,57.330433790929 38.0292294378109,56.6193660825928 38.1213943548035,56.1803747902733 37.9351266546074,55.5115784035519 37.9641171331232,54.8003039894866 37.3924207626782,53.9215979347956 37.1989183619613,53.7355111021125 37.9061361760917,53.8809285825818 38.9520930038954,53.1010278664329 39.2905736354071,53.3578080584912 39.9752863632744,52.6939726092698 40.033629055332,52.9152510923436 40.8765233424447,53.8581392759411 40.6310344508422,54.7368453306321 40.9510149195935,54.0083109881813 41.5512108424474,53.7217134946906 42.12319143327,52.9167497088801 41.8681165634773,52.8146887551036 41.1353705917947,52.5024597511961 41.7833155380864)))","TM","Turkmenistan","Asia","Asia","Central Asia","Sovereign country",480809.521855032,5466241,67.552,14332.3657698371 +"MULTIPOLYGON (((48.5679712257898 29.9267782659035,48.0145683123761 30.4524567733926,48.0046981138083 30.9851374374572,47.6852860858123 30.9848532170796,47.8492037290421 31.7091759302987,47.3346614927119 32.4691553817991,46.1093616066393 33.017287299119,45.416690708199 33.9677977564796,45.6484595070281 34.748137722303,46.1517879575509 35.0932587753643,46.0763403664048 35.6773833277755,45.4206181170532 35.9775458847428,44.772677101595 37.1704369256168,44.77267 37.17045,44.2257556496005 37.9715843775894,44.4214026222575 38.2812812363145,44.1092252947823 39.4281362981681,44.7939896990819 39.713002631177,44.9526880226503 39.3357646754464,45.4577217954388 38.8741391057831,46.1436230812488 38.7412014837122,46.505719842318 38.7706053736863,47.6850793800831 39.5083639593012,48.0600952492252 39.5822354192625,48.3555294126379 39.2887649602769,48.0107442563865 38.7940147975145,48.6343754412848 38.270377509101,48.8832491392025 38.3202452662626,49.1996122576933 37.5828742538899,50.1477714373846 37.3745665553213,50.8423543638197 36.8728142359834,52.2640246926014 36.7004216578577,53.8257898293264 36.9650308294082,53.9215979347956 37.1989183619613,54.8003039894866 37.3924207626782,55.5115784035519 37.9641171331232,56.1803747902733 37.9351266546074,56.6193660825928 38.1213943548035,57.330433790929 38.0292294378109,58.4361544126782 37.5223094752438,59.2347619973168 37.4129879827303,60.3776379738839 36.5273831243284,61.1230705096941 36.4915971949662,61.2108170917257 35.6500723333092,60.8031933938074 34.4041018743199,60.5284298033116 33.676446031218,60.963700392506 33.5288323023763,60.5360779152908 32.9812688258116,60.863654819589 32.1829196233344,60.9419446145111 31.5480746526288,61.6993144061808 31.3795061304927,61.7812215513634 30.7358503280812,60.8742484882088 29.8292389999526,61.3693087095649 29.3032762720859,61.7718681171186 28.6993338078908,62.727830438086 28.2596448837354,62.7554256529299 27.378923448185,63.2338977395203 27.2170470240307,63.3166317076196 26.7565324976617,61.8741874530565 26.2399748804721,61.4973629087842 25.0782370061185,59.6161340676308 25.3801565617838,58.5257613462723 25.6099616561857,57.3972514178824 25.7399020451836,56.9707658221776 26.9661062688214,56.4921387062902 27.1433047551502,55.7237101581101 26.964633490501,54.7150895526373 26.4806578638715,53.4930969582313 26.812368882753,52.4835978534096 27.5808491073655,51.5207625669474 27.8656896021583,50.8529480324395 28.8145205754694,50.1150085793116 30.1477725285997,49.576850213424 29.9857152369324,48.9413334490986 30.317090359004,48.5679712257898 29.9267782659035)))","IR","Iran","Asia","Asia","Southern Asia","Sovereign country",1617559.0402466,78411092,75.466,16924.2006778247 +"MULTIPOLYGON (((35.7199182472228 32.7091924097949,35.7007979672748 32.7160136988574,35.8363969256086 32.8681232773085,35.8211007016502 33.2774264592763,36.0664604021721 33.8249124211926,36.6117501157159 34.2017886418972,36.4481942075121 34.5939352483441,35.9984025408436 34.6449140488,35.9050232276922 35.4100094670973,36.1497628110265 35.8215347356537,36.417550083163 36.0406169703551,36.6853890317318 36.2596992050565,36.7394942563414 36.8175204534311,37.0667611020458 36.6230362005006,38.1677274920242 36.9012104355278,38.6998913917659 36.7129273544723,39.5225801938525 36.716053778626,40.6732593116957 37.0912763534973,41.2120894712031 37.0743523219217,42.3495910988118 37.2298725449041,41.837064243341 36.6058537867636,41.2897074725055 36.3588146021923,41.3839652850058 35.6283165553144,41.0061588885199 34.4193722600621,38.7923405291361 33.3786864283522,36.8340621274355 32.3129375269808,35.7199182472228 32.7091924097949)))","SY","Syria","Asia","Asia","Western Asia","Sovereign country",185004.125494595,19203090,69.817,NA +"MULTIPOLYGON (((46.505719842318 38.7706053736863,46.1436230812488 38.7412014837122,45.735379266143 39.3197191432197,45.739978468617 39.4739991318271,45.2981449725215 39.4717512070224,45.0019873390567 39.7400035670496,44.7939896990819 39.713002631177,44.4000085792887 40.0050003118423,43.6564363950409 40.2535639511662,43.7526579119684 40.7402009140588,43.5827458025927 41.0921432561826,44.9724800962181 41.2481285670556,45.1794958839793 40.9853539088514,45.5603511899704 40.8122895371059,45.3591748390582 40.5615038111935,45.8919071795551 40.21847565364,45.6100122414029 39.8999938014252,46.0345341326807 39.6280207382731,46.4834989764325 39.4641547714755,46.505719842318 38.7706053736863)))","AM","Armenia","Asia","Asia","Western Asia","Sovereign country",28656.6007515336,2906220,74.255,7971.11792762162 +"MULTIPOLYGON (((11.0273686051969 58.8561494004594,11.4682719255111 59.432393296946,12.3003658382749 60.11793284773,12.6311466813752 61.2935716823701,11.9920642432216 61.8003624538566,11.9305692887942 63.128317572677,12.5799353369739 64.0662189805583,13.5719161312487 64.0491140814697,13.9199052263022 64.4454206407161,13.5556897315091 64.7870276963815,15.108411492583 66.1938668890955,16.1087121924568 67.3024555528369,16.7688786149855 68.0139366726314,17.7291817562653 68.0105518663163,17.9938684424643 68.5673912624774,19.8785596045813 68.4071943223726,20.0252689958579 69.0651386583127,20.6455928890895 69.1062472602009,21.9785347836261 68.6168456081807,23.5394730974344 67.9360086127353,23.5658797543356 66.3960509304374,23.9033785336338 66.0069273952796,22.1831734555019 65.7237405463202,21.2135168799772 65.0260053575153,21.369631381931 64.4135879584243,19.7788757666902 63.609554348395,17.8477791683752 62.7494001328968,17.1195548845181 61.341165676511,17.8313460629064 60.6365833604274,18.7877217953321 60.0819143744226,17.8692248877763 58.9537661810587,16.8291850114701 58.7198269720734,16.4477095882915 57.0411180690719,15.8797855974038 56.1043018662687,14.6666813493521 56.2008851182222,14.1007210628915 55.4077810736227,12.9429105973921 55.3617373724506,12.625100538797 56.307080186582,11.7879423356687 57.4418171250631,11.0273686051969 58.8561494004594)))","SE","Sweden","Europe","Europe","Northern Europe","Sovereign country",450581.582203591,9696110,82.2536585365854,44167.6318669891 +"MULTIPOLYGON (((28.1767094255779 56.1691299505788,29.2295133806603 55.9183442246664,29.3715718930307 55.6700906439362,29.8962943865224 55.7894632025304,30.87390913262 55.5509764675034,30.9718359718131 55.081547756564,30.7575338070987 54.8117709417843,31.3844722836637 54.1570563828624,31.7914241879622 53.9746385768721,31.7312728207745 53.794029446012,32.4055985857512 53.618045355842,32.693643019346 53.3514208034322,32.3045194841882 53.1327261419729,31.49764 53.16743,31.305200636528 53.0739958766732,31.5400183448623 52.7420523138464,31.78597 52.10168,31.7859924475553 52.1016775699397,30.927549269339 52.0423534206144,30.6194543800148 51.8228060980225,30.5551172218115 51.3195034857157,30.1573637224609 51.4161384141015,29.2549381853478 51.3682343613669,28.9928353207635 51.6020443792715,28.6176127458922 51.4277139349348,28.2416150245366 51.5722270778391,27.4540661964084 51.5923033717844,26.3379586117686 51.832288723348,25.327787713327 51.9106560329186,24.5531063168395 51.8884610052492,24.0050777523842 51.6174439560944,23.5270707536844 51.5784540879303,23.5080021501687 52.0236465521247,23.1994938493862 52.4869774440537,23.7991988461334 52.6910993516066,23.8049349301178 53.0897313503061,23.527535841575 53.4701215684066,23.4841276384498 53.9124976670411,24.450683628037 53.9057022161948,25.536353794057 54.2824234076025,25.7684326514798 54.8469625921751,26.5882792497904 55.1671756048717,26.4943314958838 55.6151069199776,27.1024597510945 55.7833137070877,28.1767094255779 56.1691299505788)))","BY","Belarus","Europe","Europe","Eastern Europe","Sovereign country",208969.829718131,9474511,72.9707317073171,17944.2098463253 +"MULTIPOLYGON (((31.7859924475553 52.1016775699397,32.15944 52.06125,32.4120581397877 52.2886949733498,32.7157605323671 52.2384654811621,33.7526998227358 52.3350745713318,34.3917305844571 51.7688817409259,34.1419783871905 51.5664134792063,34.2248157081543 51.2559931504289,35.0221830584179 51.2075723333715,35.37791 50.77394,35.356116163888 50.577197374059,36.6261678403254 50.2255909287451,37.3934595069952 50.3839533555036,38.0106311378569 49.9156615260747,38.5949882342134 49.9264619004237,40.06904 49.60105,40.0807890154694 49.3074299179993,39.67465 48.78382,39.89562 48.23241,39.7382776222389 47.898937079452,38.77057 47.82562,38.2551123390298 47.5464004583569,38.2235380388993 47.1021898463759,37.4251371599899 47.0222205674042,36.7598547706644 46.698700263041,35.8236845232649 46.6459644638871,34.9623417498238 46.2731965195497,35.0126589700474 45.7377251998255,34.861792128174 45.7681824319196,34.7320173882785 45.9656657317606,34.4104017285372 46.0051623917288,33.6994618491091 46.2195728315564,33.4359880947134 45.9719173707975,33.2985673357547 46.0805984563978,31.7441402524152 46.3333478867373,31.6753072446025 46.7062450221555,30.7487488136092 46.5831000840041,30.3776086768889 46.0324101832857,29.6032890154274 45.2933080104311,29.1497249692017 45.4649254420725,28.6797794939394 45.3040308701317,28.233553501099 45.4882831894683,28.4852694027928 45.5969070501459,28.6599874203716 45.9399868841316,28.9337174822216 46.2588304713726,28.8629724464141 46.4378893092638,29.0721069678993 46.5176777207225,29.1706539242798 46.3792623968287,29.7599719581364 46.3499876979354,30.0246586443354 46.423936672545,29.8382100766263 46.5253258327017,29.9088517595693 46.6743606634315,29.5596741065731 46.9285828720913,29.4151351254527 47.3466452093326,29.0508679542273 47.5102269557525,29.122698195113 47.8490951605065,28.6708911475852 48.1181485052341,28.2595467465418 48.1555622422134,27.5225374691952 48.4671194525011,26.8578235206248 48.3682107610945,26.6193367855978 48.2207262233335,26.1974503923669 48.2208812526303,25.9459411964024 47.9871487493742,25.207743361113 47.8910564235275,24.8663171729606 47.7375257431883,24.4020561052504 47.9818777532804,23.7609582862374 47.9855984564055,23.1422363624068 48.0963410508069,22.7105314470405 47.8821939153894,22.6408199398787 48.1502395696874,22.0856083513349 48.4222643092718,22.2808419125336 48.8253921575807,22.5581376482118 49.0857380234671,22.7764188982126 49.0273953314096,22.5184501482116 49.4767735866197,23.4265084164444 50.3085057643574,23.9227571957433 50.4248810898787,24.0299857927489 50.7054066025752,23.5270707536844 51.5784540879303,24.0050777523842 51.6174439560944,24.5531063168395 51.8884610052492,25.327787713327 51.9106560329186,26.3379586117686 51.832288723348,27.4540661964084 51.5923033717844,28.2416150245366 51.5722270778391,28.6176127458922 51.4277139349348,28.9928353207635 51.6020443792715,29.2549381853478 51.3682343613669,30.1573637224609 51.4161384141015,30.5551172218115 51.3195034857157,30.6194543800148 51.8228060980225,30.927549269339 52.0423534206144,31.7859924475553 52.1016775699397)))","UA","Ukraine","Europe","Europe","Eastern Europe","Sovereign country",572548.983743491,45271947,71.1865853658537,8243.47351509088 +"MULTIPOLYGON (((23.4841276384498 53.9124976670411,23.527535841575 53.4701215684066,23.8049349301178 53.0897313503061,23.7991988461334 52.6910993516066,23.1994938493862 52.4869774440537,23.5080021501687 52.0236465521247,23.5270707536844 51.5784540879303,24.0299857927489 50.7054066025752,23.9227571957433 50.4248810898787,23.4265084164444 50.3085057643574,22.5184501482116 49.4767735866197,22.7764188982126 49.0273953314096,22.5581376482118 49.0857380234671,21.6078080583642 49.4701073268541,20.8879553565384 49.3287722845358,20.4158394711199 49.4314533554998,19.8250228207269 49.2171253525692,19.3207125179905 49.5715740016592,18.9095748226763 49.4358458522446,18.8531441586136 49.4962297633776,18.3929138526222 49.9886286484708,17.649445021239 50.04903839782,17.5545670915511 50.3621459010764,16.8687691586057 50.473973700556,16.7194759457144 50.2157465683935,16.1762532894623 50.4226073268579,16.2386267432386 50.6977326523798,15.4909721208397 50.7847299261432,15.0169958838587 51.1066740993216,14.6070984229195 51.74518809672,14.6850264828157 52.0899474147552,14.4375997250022 52.6248501654084,14.0745211117194 52.9812625189253,14.3533154639341 53.248171291713,14.1196863135426 53.757029120491,14.8029004248735 54.0507062852057,16.3634770036557 54.5131586777857,17.6228316586087 54.8515359564329,18.6208585954616 54.6826056992708,18.6962545101755 54.4387187770693,19.6606400896064 54.4260838893739,20.8922445004186 54.3125249294125,22.7310986670927 54.3275369329933,23.2439872575895 54.2205667181491,23.4841276384498 53.9124976670411)))","PL","Poland","Europe","Europe","Eastern Europe","Sovereign country",310402.33298673,38011735,77.6024390243903,24347.0736576846 +"MULTIPOLYGON (((16.979666782304 48.1234970159763,16.9037541032673 47.7148656276283,16.3405843441504 47.7129019232012,16.5342676123804 47.4961709661691,16.2022982113374 46.852385972677,16.0116638526127 46.6836107448117,15.137091912505 46.658702704447,14.6324715511748 46.4318173284695,13.8064754574215 46.5093061386912,12.3764852230408 46.7675591090699,12.1530880062431 47.1153931748265,11.1648279150933 46.9415794948127,11.0485559424365 46.7513585475463,10.4427014502466 46.8935462509974,9.93244835779666 46.920728054383,9.47996951664902 47.1028099635634,9.63293175623298 47.34760122333,9.59422610844635 47.5250580918203,9.89606814946319 47.5801968450757,10.4020837744652 47.3024876979392,10.5445040218616 47.5663992376538,11.4264140153547 47.523766181013,12.1413574561128 47.7030834010658,12.6207597184845 47.6723876002844,12.9326269873659 47.467645575544,13.0258512712205 47.6375835231358,12.8841028174439 48.2891458196879,13.243357374737 48.4161148138291,13.5959456722644 48.8771719427371,14.3388977393247 48.5553052842072,14.9014473812541 48.9644017604458,15.253415561594 49.0390742051076,16.0296472510502 48.7338990342079,16.4992826677188 48.7858080104451,16.9602881201946 48.5969823268506,16.879982944413 48.4700133327095,16.979666782304 48.1234970159763)))","AT","Austria","Europe","Europe","Western Europe","Sovereign country",85064.8951585954,8546356,81.490243902439,44320.5020125474 +"MULTIPOLYGON (((22.0856083513349 48.4222643092718,22.6408199398787 48.1502395696874,22.7105314470405 47.8821939153894,22.0997676937828 47.6724392767167,21.6265149268539 46.9942377793182,21.0219523454712 46.3160879583519,20.2201924984628 46.1274689804866,19.5960445492416 46.1717298447445,18.82983808765 45.9088776718919,18.8298247928739 45.9088723580253,18.4560624528829 45.7594811061361,17.6300663591296 45.9517691106942,16.8825150895953 46.3806318222844,16.5648083838649 46.5037509222198,16.3705049984474 46.8413272161665,16.2022982113374 46.852385972677,16.5342676123804 47.4961709661691,16.3405843441504 47.7129019232012,16.9037541032673 47.7148656276283,16.979666782304 48.1234970159763,17.4884729346498 47.8674661321862,17.85713260262 47.7584288600504,18.6965128923369 47.8809536810144,18.7770247738477 48.0817682969006,19.1743648617399 48.1113788926039,19.6613635596585 48.2666148952087,19.7694706560131 48.2026911484636,20.2390543962493 48.3275672470969,20.4735620459899 48.5628500433218,20.8012939795849 48.6238540716424,21.8722363624017 48.31997081155,22.0856083513349 48.4222643092718)))","HU","Hungary","Europe","Europe","Eastern Europe","Sovereign country",92476.460365273,9866468,75.7634146341463,24161.4255236519 +"MULTIPOLYGON (((26.6193367855978 48.2207262233335,26.8578235206248 48.3682107610945,27.5225374691952 48.4671194525011,28.2595467465418 48.1555622422134,28.6708911475852 48.1181485052341,29.122698195113 47.8490951605065,29.0508679542273 47.5102269557525,29.4151351254527 47.3466452093326,29.5596741065731 46.9285828720913,29.9088517595693 46.6743606634315,29.8382100766263 46.5253258327017,30.0246586443354 46.423936672545,29.7599719581364 46.3499876979354,29.1706539242798 46.3792623968287,29.0721069678993 46.5176777207225,28.8629724464141 46.4378893092638,28.9337174822216 46.2588304713726,28.6599874203716 45.9399868841316,28.4852694027928 45.5969070501459,28.233553501099 45.4882831894683,28.0544429867754 45.9445860866056,28.1600179379477 46.3715626084172,28.128030226359 46.8104763860883,27.5511662126848 47.4051170924708,27.2338729184127 47.8267709417564,26.9241760596876 48.123264472031,26.6193367855978 48.2207262233335)))","MD","Moldova","Europe","Europe","Eastern Europe","Sovereign country",32320.3917738368,3556397,71.258,4762.7808726743 +"MULTIPOLYGON (((28.233553501099 45.4882831894683,28.6797794939394 45.3040308701317,29.1497249692017 45.4649254420725,29.6032890154274 45.2933080104311,29.6265434099588 45.0353909368624,29.1416117693318 44.820210272799,28.8378577003202 44.9138738063281,28.558081495892 43.7074616562581,27.9701070492751 43.8124681666752,27.2423995297409 44.1759860296324,26.0651587256997 43.9434937607513,25.5692716814269 43.6884447291747,24.1006791521242 43.7410513372479,23.3323022803763 43.8970108099047,22.9448323910518 43.8237853053471,22.657149692483 44.2349230006613,22.4740084164406 44.4092276067818,22.7057255388374 44.578002834647,22.4590222510759 44.7025171982543,22.1450879249028 44.4784223496206,21.5620227393536 44.7689472519655,21.4835262387022 45.1811701523579,20.8743127784134 45.4163754339342,20.76217492034 45.7345730657715,20.2201924984628 46.1274689804866,21.0219523454712 46.3160879583519,21.6265149268539 46.9942377793182,22.0997676937828 47.6724392767167,22.7105314470405 47.8821939153894,23.1422363624068 48.0963410508069,23.7609582862374 47.9855984564055,24.4020561052504 47.9818777532804,24.8663171729606 47.7375257431883,25.207743361113 47.8910564235275,25.9459411964024 47.9871487493742,26.1974503923669 48.2208812526303,26.6193367855978 48.2207262233335,26.9241760596876 48.123264472031,27.2338729184127 47.8267709417564,27.5511662126848 47.4051170924708,28.128030226359 46.8104763860883,28.1600179379477 46.3715626084172,28.0544429867754 45.9445860866056,28.233553501099 45.4882831894683)))","RO","Romania","Europe","Europe","Eastern Europe","Sovereign country",238356.297115474,19908979,74.9609756097561,19677.5202527307 +"MULTIPOLYGON (((26.4943314958838 55.6151069199776,26.5882792497904 55.1671756048717,25.7684326514798 54.8469625921751,25.536353794057 54.2824234076025,24.450683628037 53.9057022161948,23.4841276384498 53.9124976670411,23.2439872575895 54.2205667181491,22.7310986670927 54.3275369329933,22.6510518734725 54.5827409938667,22.7577637061553 54.8565744085814,22.3157235043306 55.0152985703659,21.2684489275035 55.1904816758353,21.0558004086224 56.0310763617111,22.2011568539395 56.3378018255795,23.87826378754 56.2736713731053,24.8606844418408 56.3725283880796,25.0009342790809 56.1645307481048,25.5330465023903 56.100296942766,26.4943314958838 55.6151069199776)))","LT","Lithuania","Europe","Europe","Northern Europe","Sovereign country",63831.0914781956,2932367,74.5170731707317,26258.2100974103 +"MULTIPOLYGON (((27.2881848487515 57.4745283067038,27.7700159034409 57.2442581244112,27.8552820167225 56.7593264837843,28.1767094255779 56.1691299505788,27.1024597510945 55.7833137070877,26.4943314958838 55.6151069199776,25.5330465023903 56.100296942766,25.0009342790809 56.1645307481048,24.8606844418408 56.3725283880796,23.87826378754 56.2736713731053,22.2011568539395 56.3378018255795,21.0558004086224 56.0310763617111,21.090423618258 56.7838727891229,21.5818664893537 57.4118706325499,22.5243412614929 57.7533743353508,23.3184529965221 57.0062364772749,24.1207296078534 57.0256926540328,24.3128625831146 57.793423570377,25.1645935401493 57.9701569688152,25.6028096859844 57.8475287949866,26.4635323422378 57.4763886582663,27.2881848487515 57.4745283067038)))","LV","Latvia","Europe","Europe","Northern Europe","Sovereign country",63923.5330136017,1993782,74.1243902439024,22172.2535081352 +"MULTIPOLYGON (((27.981126857001 59.4753733343253,27.98112 59.47537,28.1316992530517 59.3008251003309,27.42015 58.72457,27.7166858253157 57.7918991156244,27.2881848487515 57.4745283067038,26.4635323422378 57.4763886582663,25.6028096859844 57.8475287949866,25.1645935401493 57.9701569688152,24.3128625831146 57.793423570377,24.4289278500422 58.3834133978533,24.0611983578532 58.2573745794934,23.4265600928767 58.6127534043646,23.3397953630586 59.1872403021534,24.6042143083762 59.465853786855,25.8641890805166 59.6110903998113,26.9491357764845 59.4458033311258,27.9811141293532 59.4753880886129,27.981126857001 59.4753733343253)))","EE","Estonia","Europe","Europe","Northern Europe","Sovereign country",44678.1968086173,1314545,77.0341463414634,27113.6859213723 +"MULTIPOLYGON (((14.1196863135426 53.757029120491,14.3533154639341 53.248171291713,14.0745211117194 52.9812625189253,14.4375997250022 52.6248501654084,14.6850264828157 52.0899474147552,14.6070984229195 51.74518809672,15.0169958838587 51.1066740993216,14.5707182145861 51.0023393825243,14.3070133806006 51.1172677679414,14.0562276546882 50.9269176295943,13.3381319515603 50.7332343613644,12.9668367855432 50.4840764430691,12.2401111182226 50.2663377956073,12.4151908708274 49.9691207952806,12.5210242041612 49.5474152695627,13.0313289730434 49.3070681829732,13.5959456722644 48.8771719427371,13.243357374737 48.4161148138291,12.8841028174439 48.2891458196879,13.0258512712205 47.6375835231358,12.9326269873659 47.467645575544,12.6207597184845 47.6723876002844,12.1413574561128 47.7030834010658,11.4264140153547 47.523766181013,10.5445040218616 47.5663992376538,10.4020837744652 47.3024876979392,9.89606814946319 47.5801968450757,9.59422610844635 47.5250580918203,8.52261193200977 47.8308275416913,8.3173014665141 47.6135798203363,7.46675906742223 47.6205819769118,7.59367638513106 48.3330191107037,8.09927859867474 49.0177835150033,6.65822960778357 49.2019583196916,6.18632042809418 49.4638028021145,6.24275109215699 49.9022256536787,6.04307335778111 50.1280516627942,6.15665815595878 50.8037210150106,5.98865807457781 51.8516157090251,6.58939659997083 51.8520291204834,6.84286950036238 52.2284402532975,7.0920532568739 53.1440432806449,6.90513960127413 53.4821621771306,7.10042483890527 53.6939321966627,7.93623945479396 53.7482958034338,8.12170617028949 53.5277924668443,8.80073449060467 54.0207856309089,8.57211795414537 54.3956464707541,8.52622928227021 54.9627436387252,9.28204878097114 54.8308653835162,9.92190636560912 54.983104153048,9.9395797054529 54.5966419541533,10.9501123389205 54.3636070827332,10.9394669938685 54.0086933457526,11.9562524756433 54.1964855007012,12.5184403825467 54.470370591848,13.6474670752595 54.0755109727059,14.1196863135426 53.757029120491)))","DE","Germany","Europe","Europe","Western Europe","Sovereign country",357430.341206566,80982500,81.090243902439,43560.6192440775 +"MULTIPOLYGON (((22.657149692483 44.2349230006613,22.9448323910518 43.8237853053471,23.3323022803763 43.8970108099047,24.1006791521242 43.7410513372479,25.5692716814269 43.6884447291747,26.0651587256997 43.9434937607513,27.2423995297409 44.1759860296324,27.9701070492751 43.8124681666752,28.558081495892 43.7074616562581,28.0390950863847 43.2931716985742,27.673897739378 42.5778923610062,27.9967204119054 42.0073587102878,27.1357393734905 42.1414848903013,26.1170418637208 41.8269046087246,26.1061381365071 41.3288988307278,25.1972013689254 41.2344859889305,24.492644891058 41.583896185872,23.6920736019923 41.3090809189439,22.9523771501665 41.3379938828111,22.8813737321973 41.9992971868504,22.3805257504246 42.3202595078151,22.5450118344096 42.461362006188,22.4365946794613 42.5803211533239,22.6048014665713 42.8985187851611,22.9860185075885 43.2111612005271,22.5001566911802 43.642814439461,22.4104464047216 44.0080634629,22.657149692483 44.2349230006613)))","BG","Bulgaria","Europe","Europe","Eastern Europe","Sovereign country",110216.875059118,7223938,74.4658536585366,16302.3205614307 +"MULTIPOLYGON (((26.2900028826017 35.2999903427479,26.1649975928877 35.0049954290098,24.7249821306423 34.9199876978896,24.7350073585069 35.0849905461976,23.5149784685281 35.279991563451,23.699980096133 35.7050043808355,24.2466650733487 35.3680223658602,25.0250154965289 35.424995632462,25.7692077979642 35.3540180527091,25.7450232276516 35.1799976669662,26.2900028826017 35.2999903427479)),((22.9523771501665 41.3379938828111,23.6920736019923 41.3090809189439,24.492644891058 41.583896185872,25.1972013689254 41.2344859889305,26.1061381365071 41.3288988307278,26.1170418637208 41.8269046087246,26.6041955909362 41.5621145696611,26.2946020850757 40.9362612981741,26.0569421729653 40.8241234401008,25.4476770362442 40.8525454778614,24.9258484229609 40.9470616725232,23.7148112322008 40.6871292180951,24.407998894964 40.1249929876241,23.8999678891026 39.9620055201755,23.3429993018607 39.9609978297458,22.8139876644889 40.4760051539665,22.6262988624047 40.2565611842392,22.8497477556348 39.6593108180257,23.3500272966526 39.1900112981672,22.9730993995155 38.9709032252496,23.5300163103249 38.5100011256384,24.0250248552489 38.2199929876164,24.0400110206136 37.6550145533694,23.1150028825891 37.9200112981622,23.409971958111 37.4099907496574,22.7749719581086 37.3050100774565,23.1542252946986 36.4225058049921,22.4900281104511 36.4100001083774,21.6700264828436 36.8449864771942,21.2950106137015 37.6449893255046,21.1200342139613 38.3103233912627,20.7300321794546 38.7699852564988,20.2177120297129 39.3402346868396,20.1500159034105 39.624997666984,20.6150004411728 40.1100068222594,20.6749967790636 40.434999904943,20.9999898617472 40.580003973954,21.0200403174764 40.8427269557259,21.674160597427 40.931274522458,22.0553776384443 41.1498658310527,22.597308383889 41.1304871689432,22.76177 41.3048,22.9523771501665 41.3379938828111)))","GR","Greece","Europe","Europe","Southern Europe","Sovereign country",131964.646663977,10892413,81.3853658536585,24081.6305378246 +"MULTIPOLYGON (((44.772677101595 37.1704369256168,44.2934517759029 37.0015143906063,43.9422587420473 37.2562275253729,42.7791256040218 37.3852635768058,42.3495910988118 37.2298725449041,41.2120894712031 37.0743523219217,40.6732593116957 37.0912763534973,39.5225801938525 36.716053778626,38.6998913917659 36.7129273544723,38.1677274920242 36.9012104355278,37.0667611020458 36.6230362005006,36.7394942563414 36.8175204534311,36.6853890317318 36.2596992050565,36.417550083163 36.0406169703551,36.1497628110265 35.8215347356537,35.7820849952699 36.2749954290149,36.160821567537 36.6506055771283,35.5509363136283 36.5654428167113,34.7145532569843 36.7955321314909,34.0268949724764 36.219960028624,32.5091581560641 36.1075637883892,31.6995951677796 36.6442752141726,30.6216247901711 36.6778648951623,30.3910962257171 36.262980658507,29.6999756202455 36.144357408181,28.7329028663354 36.6768313665165,27.6411865577373 36.6588221298627,27.0487679379433 37.653360907536,26.318218214633 38.2081332464054,26.8047001482287 38.9857601995335,26.1707853533043 39.4636121689365,27.2800199724494 40.4200137395783,28.8199776547472 40.4600112981722,29.2400036964156 41.2199907496727,31.1459338722044 41.087621568357,32.3479793637457 41.7362641464846,33.5132829119275 42.0189600693373,35.1677038917518 42.0402249212254,36.9131270688421 41.3353583847643,38.3476648292645 40.9485861272757,39.5126066424202 41.1027627630186,40.3734326515382 41.0136725937474,41.5540841001107 41.5356562363276,42.6195487811045 41.5831727158199,43.5827458025927 41.0921432561826,43.7526579119684 40.7402009140588,43.6564363950409 40.2535639511662,44.4000085792887 40.0050003118423,44.7939896990819 39.713002631177,44.1092252947823 39.4281362981681,44.4214026222575 38.2812812363145,44.2257556496005 37.9715843775894,44.77267 37.17045,44.772677101595 37.1704369256168)),((26.1170418637208 41.8269046087246,27.1357393734905 42.1414848903013,27.9967204119054 42.0073587102878,28.1155245297444 41.6228860540362,28.9884428240187 41.2999341904282,28.8064384294867 41.0549620631486,27.6190173682841 40.9998233098931,27.1923767432824 40.6905657008424,26.3580090674978 40.1519939234965,26.0433512712726 40.6177536077432,26.0569421729653 40.8241234401008,26.2946020850757 40.9362612981741,26.6041955909362 41.5621145696611,26.1170418637208 41.8269046087246)))","TR","Turkey","Asia","Asia","Western Asia","Sovereign country",798849.164057534,77030628,75.239,22401.8804311394 +"MULTIPOLYGON (((21.0200403174764 40.8427269557259,20.9999898617472 40.580003973954,20.6749967790636 40.434999904943,20.6150004411728 40.1100068222594,20.1500159034105 39.624997666984,19.9800004411701 39.6949933945234,19.9600016618732 39.915005805006,19.4060819841367 40.2507734238225,19.3190588721571 40.7272301295536,19.4035498389543 41.4095657415355,19.5400272966371 41.7199860703128,19.371768833095 41.8775475123707,19.3717681633473 41.8775506797835,19.3044861182508 42.1957451442078,19.7380513851796 42.6882473821656,19.8016133968987 42.5000934921908,20.0707 42.58863,20.2837545101819 42.3202595078151,20.52295 42.21787,20.5902465466802 41.8554089192836,20.5902474301049 41.8554041611336,20.4631750830992 41.5150890162753,20.6051819190374 41.0862263046852,21.0200403174764 40.8427269557259)))","AL","Albania","Europe","Europe","Southern Europe","Sovereign country",29694.8002916761,2889104,77.963,10701.1207857986 +"MULTIPOLYGON (((16.5648083838649 46.5037509222198,16.8825150895953 46.3806318222844,17.6300663591296 45.9517691106942,18.4560624528829 45.7594811061361,18.8298247928739 45.9088723580253,19.0727689958542 45.5215111354321,19.3904757015846 45.2365156113424,19.0054845975576 44.860234493543,18.5532141455917 45.0815896673315,17.8617834815264 45.0677403834771,17.002146030351 45.2337767604309,16.5349394060002 45.2116075709777,16.3181567725359 45.0041266953259,15.9593673031334 45.2337767604309,15.750026075919 44.8187116562626,16.2396602718845 44.3511432968857,16.4564429053489 44.0412397324313,16.9161564470173 43.6677224798257,17.2973734880345 43.4463406438874,17.674921502359 43.0285625270236,18.56 42.65,18.4500168830209 42.4799922453122,18.4500163103048 42.4799913600293,17.5099703304833 42.8499946152392,16.9300057308716 43.2099984808004,16.0153845557377 43.5072154811272,15.1744539730521 44.2431912298279,15.3762504411518 44.3179153509221,14.9203092790405 44.7384839951295,14.9016024105509 45.0760602890761,14.25874759284 45.2337767604309,13.952254672917 44.8021235214969,13.6569755388012 45.136935126316,13.6794031104158 45.484149074885,13.7150598486972 45.5003237981924,14.4119682145854 45.4661656764475,14.5951094906278 45.6349409043127,14.9352437679729 45.4716950547027,15.3276745947974 45.4523163925933,15.3239538916724 45.7317825384277,15.6715295752676 45.8341535507979,15.7687329444086 46.2381082220234,16.5648083838649 46.5037509222198)))","HR","Croatia","Europe","Europe","Southern Europe","Sovereign country",57530.8517530272,4238389,77.4780487804878,20334.4464738451 +"MULTIPOLYGON (((9.59422610844635 47.5250580918203,9.63293175623298 47.34760122333,9.47996951664902 47.1028099635634,9.93244835779666 46.920728054383,10.4427014502466 46.8935462509974,10.3633781266786 46.4835712754099,9.92283654139038 46.3148994004092,9.18288170740306 46.440214748717,8.96630577966781 46.0369318711112,8.48995242680132 46.0051508652517,8.31662967289438 46.1636424830909,7.75599205895983 45.8244900579593,7.27385094567666 45.7769477402508,6.84359297041451 45.9911465521006,6.50009972497043 46.4296727565294,6.02260949059354 46.2729898138205,6.037388950229 46.7257787135619,6.76871382002361 47.2877082383037,6.73657107913806 47.5418012558828,7.19220218265551 47.449765529971,7.46675906742223 47.6205819769118,8.3173014665141 47.6135798203363,8.52261193200977 47.8308275416913,9.59422610844635 47.5250580918203)))","CH","Switzerland","Europe","Europe","Western Europe","Sovereign country",46185.2506729716,8188649,83.1975609756098,57218.0279263612 +"MULTIPOLYGON (((6.04307335778111 50.1280516627942,6.24275109215699 49.9022256536787,6.18632042809418 49.4638028021145,5.89775923017635 49.4426671413071,5.67405195478483 49.5294835475575,5.78241743330091 50.0903278672212,6.04307335778111 50.1280516627942)))","LU","Luxembourg","Europe","Europe","Western Europe","Sovereign country",2416.87048266498,556319,82.2292682926829,93655.3341630648 +"MULTIPOLYGON (((6.15665815595878 50.8037210150106,6.04307335778111 50.1280516627942,5.78241743330091 50.0903278672212,5.67405195478483 49.5294835475575,4.79922163251572 49.9853730332364,4.28602298342508 49.9074966497726,3.58818444175566 50.3789924180036,3.12325158042569 50.7803632676145,2.65842207196027 50.7968480495157,2.51357303224614 51.1485061712618,3.31497114422854 51.3457809515361,3.31501148496416 51.3457766247381,3.31497114422854 51.3457551133199,4.04707116050753 51.2672586126686,4.97399132652691 51.4750237086981,5.60697594567 51.0372984889698,6.15665815595878 50.8037210150106)))","BE","Belgium","Europe","Europe","Western Europe","Sovereign country",30126.0378859233,11209057,81.2878048780488,41360.3955755286 +"MULTIPOLYGON (((6.90513960127413 53.4821621771306,7.0920532568739 53.1440432806449,6.84286950036238 52.2284402532975,6.58939659997083 51.8520291204834,5.98865807457781 51.8516157090251,6.15665815595878 50.8037210150106,5.60697594567 51.0372984889698,4.97399132652691 51.4750237086981,4.04707116050753 51.2672586126686,3.31497114422854 51.3457551133199,3.31501148496416 51.3457766247381,3.83028852704314 51.620544542032,4.70599734866119 53.0917984075978,6.07418257002092 53.5104033473781,6.90513960127413 53.4821621771306)))","NL","Netherlands","Europe","Europe","Western Europe","Country",40024.104481118,16865008,81.7073170731707,45668.4414721322 +"MULTIPOLYGON (((-9.03481767418025 41.8805705836597,-8.67194576662672 42.134689439455,-8.26385698081779 42.2804686549503,-8.01317460776991 41.7908861354171,-7.4225129866738 41.7920746933598,-7.25130896649082 41.918346055665,-6.66860551596766 41.8833869492196,-6.38908769370092 41.3818154973947,-6.85112667482255 41.1110826686175,-6.86401994467939 40.3308718938748,-7.02641313315659 40.1845242376242,-7.06659155926353 39.7118915878828,-7.49863237143973 39.6295710312418,-7.09803666831313 39.0300727402238,-7.37409216961632 38.3730585800649,-7.0292811751488 38.0757640650898,-7.16650794109986 37.8038943548022,-7.53710547528102 37.4289043238762,-7.45372555177809 37.0977875839661,-7.85561316571199 36.8382685409963,-8.38281612795369 36.9788801132625,-8.89885698082033 36.8688093124808,-8.74610144696555 37.6513455266766,-8.83999752443988 38.2662433945176,-9.28746375165522 38.3584858261586,-9.52657060386971 38.7374291041549,-9.44698889814023 39.3920661484284,-9.04830522300843 39.7550930852788,-8.97735348147168 40.1593061386658,-8.7686840478771 40.7606389430302,-8.79085323733031 41.1843340113913,-8.99078935386757 41.5434593776036,-9.03481767418025 41.8805705836597)))","PT","Portugal","Europe","Europe","Southern Europe","Sovereign country",93408.5940991601,10401062,81.1219512195122,26023.6978492184 +"MULTIPOLYGON (((-7.45372555177809 37.0977875839661,-7.53710547528102 37.4289043238762,-7.16650794109986 37.8038943548022,-7.0292811751488 38.0757640650898,-7.37409216961632 38.3730585800649,-7.09803666831313 39.0300727402238,-7.49863237143973 39.6295710312418,-7.06659155926353 39.7118915878828,-7.02641313315659 40.1845242376242,-6.86401994467939 40.3308718938748,-6.85112667482255 41.1110826686175,-6.38908769370092 41.3818154973947,-6.66860551596766 41.8833869492196,-7.25130896649082 41.918346055665,-7.4225129866738 41.7920746933598,-8.01317460776991 41.7908861354171,-8.26385698081779 42.2804686549503,-8.67194576662672 42.134689439455,-9.03481767418025 41.8805705836597,-8.98443315269567 42.5927751735063,-9.39288367353065 43.0266246608127,-7.97818966310831 43.748337714201,-6.75449174643676 43.5679094508539,-5.4118863590616 43.5742398138097,-4.34784277995578 43.403449205085,-3.51753170410609 43.4559007838613,-1.90135128417776 43.4228020289783,-1.50277096191053 43.0340143906304,0.338046909190581 42.5795460068395,0.701590610363894 42.7957343613326,1.82679324708715 42.3433847112657,2.98599897625846 42.4730150416699,3.03948408368055 41.8921202662769,2.09184166831218 41.2260885686831,0.810524529635188 41.0147319606093,0.721331007499401 40.6783183863892,0.106691521819869 40.123933620762,-0.278711310212941 39.3099781357327,0.111290724293838 38.738514309233,-0.467123582349103 38.2923658310412,-0.683389451490598 37.6423538274578,-1.43838212727485 37.4430636663242,-2.14645260253812 36.6741441920373,-3.41578080892339 36.6588996445112,-4.36890092611472 36.6778390569462,-4.99521928549221 36.3247081568796,-5.37715979656146 35.9468500839615,-5.8664322575009 36.0298165960061,-6.23669389487218 36.3676771103303,-6.5201908024254 36.9429133163873,-7.45372555177809 37.0977875839661)))","ES","Spain","Europe","Europe","Southern Europe","Sovereign country",502306.467818081,46480882,83.2292682926829,31195.4052422035 +"MULTIPOLYGON (((-6.19788489422099 53.8675650091634,-6.03298539877761 53.1531641709444,-6.78885657391085 52.2601179062923,-8.56161658368356 51.6693012558994,-9.97708574059027 51.8204548203531,-9.16628251793078 52.8646288112427,-9.68852454267245 53.8813626165853,-8.32798743329201 54.6645189479686,-7.57216793459106 55.1316222194549,-7.36603064617879 54.5958409694527,-7.57216793459106 54.059956366586,-6.95373023113807 54.0737022975756,-6.19788489422099 53.8675650091634)))","IE","Ireland","Europe","Europe","Northern Europe","Sovereign country",58457.5134141208,4657740,81.3487804878049,48898.3286615603 +"MULTIPOLYGON (((165.779989862326 -21.0800049781156,166.599991489934 -21.7000188127535,167.120011428087 -22.1599907365835,166.740034621445 -22.3999760881469,166.189732293969 -22.1297083472605,165.474375441752 -21.6796066219982,164.829815301776 -21.149819838142,164.167995233414 -20.4447465959516,164.029605747736 -20.1056458472524,164.459967075863 -20.1200118954295,165.020036249042 -20.4599911434777,165.460009393575 -20.8000220679583,165.779989862326 -21.0800049781156)))","NC","New Caledonia","Oceania","Oceania","Melanesia","Dependency",23219.0117362846,268050,77.2528725957226,NA +"MULTIPOLYGON (((162.119024693041 -10.4827190080211,162.398645868172 -10.8263672827621,161.700032180018 -10.8200110815902,161.319796991215 -10.2047514787232,161.917383254238 -10.4467005347137,162.119024693041 -10.4827190080211)),((161.679981724289 -9.59998219161137,161.529396600591 -9.78431202559648,160.788253208661 -8.91754322676489,160.579997186524 -8.32000864017396,160.920028111005 -8.32000864017396,161.28000613835 -9.12001148848445,161.679981724289 -9.59998219161137)),((160.852228631838 -9.87293710697705,160.462588332357 -9.89520964929484,159.849447463214 -9.79402719486735,159.640002883135 -9.63997975020528,159.702944777667 -9.24294972090681,160.362956170898 -9.40030445723557,160.688517694337 -9.61016244877287,160.852228631838 -9.87293710697705)),((159.640002883135 -8.02002695071963,159.875027297199 -8.33732024499174,159.917401971678 -8.53828989017483,159.133677199539 -8.11418141035543,158.586113722975 -7.75482350019774,158.211149530265 -7.4218722469412,158.359977655265 -7.32001799889392,158.820001255528 -7.56000335045738,159.640002883135 -8.02002695071963)),((157.140000441719 -7.02163827884064,157.538425734689 -7.34781991946694,157.339419793933 -7.40476734785259,156.902030471015 -7.17687428144543,156.491357863591 -6.76594329186045,156.542827590154 -6.59933847415145,157.140000441719 -7.02163827884064)))","SB","Solomon Islands","Oceania","Oceania","Melanesia","Sovereign country",24728.114237136,575504,70.113,2139.56074060145 +"MULTIPOLYGON (((176.885823602605 -40.0659778785822,176.508017206119 -40.6048080380896,176.01244022044 -41.2896241188215,175.239567499083 -41.6883077939533,175.067898391009 -41.4258948707751,174.650972935278 -41.2818209775454,175.227630243224 -40.4592355283234,174.90015669179 -39.9089332008472,173.824046665744 -39.5088542620435,173.852261997775 -39.1466024716775,174.57480187408 -38.7976832008428,174.743473749081 -38.0278077125584,174.697016636451 -37.3811288388579,174.292028436579 -36.7110922177615,174.319003534236 -36.5348239072139,173.840996535536 -36.1219808896341,173.05417117746 -35.2371253395004,172.636005487354 -34.5291065406694,173.007042271209 -34.4506617164504,173.551298456107 -35.006183363588,174.329390497126 -35.2654957008286,174.61200890533 -36.1563973935405,175.336615838927 -37.2090979957583,175.357596470438 -36.5261939430212,175.808886753643 -36.7989421526577,175.958490025128 -37.5553817685461,176.763195428777 -37.8812533505787,177.43881310456 -37.9612484677665,178.010354445709 -37.5798247210202,178.517093540763 -37.6953732236248,178.274731073314 -38.5828125953731,177.970460239979 -39.166342868813,177.206992629299 -39.1457756487608,176.939980503647 -39.4497364235016,177.03294640534 -39.8799427223315,176.885823602605 -40.0659778785822)),((169.667814569373 -43.5553256162264,170.524919875366 -43.0316883278128,171.125089960004 -42.5127535947378,171.569713983443 -41.7674244117921,171.948708937872 -41.5144165992911,172.097227004279 -40.9561044248097,172.798579543344 -40.4939620908235,173.020374790741 -40.9190524228564,173.247234328502 -41.3319987933008,173.958405389703 -40.9267005348356,174.247586704808 -41.3491553688217,174.248516880589 -41.7700082334067,173.876446568088 -42.2331840960388,173.222739699596 -42.9700383440886,172.711246372771 -43.3722876930486,173.08011274647 -43.8533436012536,172.308583612352 -43.8656942685714,171.452925246464 -44.2425188128437,171.185137974327 -44.8971041806849,170.616697219117 -45.9089287249597,169.831422154009 -46.3557748349876,169.332331170934 -46.6412354469679,168.411353794629 -46.6199447568636,167.763744745147 -46.2901974424092,166.676886021184 -46.2199174944922,166.509144321965 -45.8527047666262,167.046424188503 -45.1109412575086,168.303763462597 -44.1239730771661,168.949408807652 -43.9358191871914,169.667814569373 -43.5553256162264)))","NZ","New Zealand","Oceania","Oceania","Australia and New Zealand","Country",277627.604539654,4509700,81.4048780487805,34455.3312172237 +"MULTIPOLYGON (((147.689259474884 -40.8082581520227,148.289067824496 -40.8754375140021,148.359864536736 -42.0624451637464,148.017301467073 -42.4070236142687,147.914051955354 -43.2115223121885,147.564564243764 -42.9376888974739,146.870343052355 -43.6345972633621,146.663327264594 -43.5808537737786,146.04837772032 -43.5497445615388,145.431929559511 -42.6937761370563,145.295090366802 -42.0336097145276,144.718071323831 -41.1625517718158,144.74375451068 -40.7039751116577,145.397978143495 -40.7925485166059,146.364120721624 -41.1376954078834,146.908583612251 -41.0005461565807,147.689259474884 -40.8082581520227)),((126.148713820501 -32.2159660784206,125.088623488466 -32.7287513160529,124.221647983905 -32.9594865862361,124.028946567889 -33.4838473447017,123.659666782731 -33.8901791318127,122.811036411634 -33.9144670549899,122.183064406423 -34.0034021949642,121.299190708503 -33.8210360654062,120.580268182458 -33.9301766904066,119.893695103028 -33.9760653622818,119.298899367349 -34.5093661435339,119.007340936358 -34.4641492652785,118.505717808101 -34.7468193499151,118.024971958489 -35.0647327613747,117.295507440257 -35.0254586728329,116.625109084135 -35.0250969378068,115.56434695848 -34.3864279111116,115.02680870978 -34.1965170224389,115.048616164207 -33.6234253883221,115.545123325667 -33.487257989233,115.714673700017 -33.259571628555,115.679378696761 -32.9003687476942,115.801645135564 -32.205062351207,115.689610630355 -31.6124370256838,115.160909051577 -30.6015943336225,114.997043084779 -30.0307247860941,115.040037876446 -29.4610954729408,114.641974318502 -28.8102308082247,114.616497837382 -28.5163986142131,114.173579136208 -28.1180766741073,114.048883905088 -27.3347653134271,113.477497593237 -26.5431340471479,113.338953078262 -26.1165450985785,113.77835778204 -26.5490251604292,113.440962355607 -25.6212781714932,113.936901076312 -25.9112346330829,114.232852004047 -26.2984461402459,114.216160516417 -25.7862810198011,113.721255324358 -24.9989388974021,113.625343866024 -24.6839710425832,113.393523390763 -24.3847644996132,113.502043898576 -23.8063501929703,113.706992629045 -23.5602153459641,113.843418410296 -23.0599874813788,113.736551548316 -22.4754753557254,114.149756300922 -21.755881036061,114.225307244933 -22.5174882951787,114.647762078919 -21.829519952077,115.460167270979 -21.4951734351485,115.947372674627 -21.0686878394437,116.711615431792 -20.7016818173068,117.166316359528 -20.6235987281138,117.441545037914 -20.7468986955622,118.229558953933 -20.3742082658732,118.836085239743 -20.2633106421749,118.987807244952 -20.0442025692573,119.252493931151 -19.9529419898299,119.805225050945 -19.976506442955,120.856220330897 -19.6837077775892,121.399856398607 -19.2397555477697,121.655137974129 -18.7053178850072,122.241665480642 -18.1976486141718,122.286623976736 -17.798603204014,122.312772251475 -17.2549671363034,123.012574497572 -16.4051998836959,123.433789097183 -17.2685580379962,123.859344517107 -17.0690353329173,123.503242222183 -16.5965060360404,123.817073195492 -16.111316013252,124.2582865744 -16.3279436174195,124.379726190286 -15.567059828354,124.92615278534 -15.0751001929354,125.167275018414 -14.68039560309,125.670086704614 -14.510070082256,125.685796340031 -14.2306556128538,126.125149367376 -14.3473409969689,126.14282270722 -14.0959868303012,126.582589146024 -13.9527914364204,127.065867140817 -13.817967624571,127.804633416862 -14.2769060197551,128.359689976109 -14.8691696102522,128.985543247596 -14.8759908993148,129.62147342338 -14.9697836239245,129.409600050983 -14.4206698543911,129.888640578329 -13.6187033016535,130.339465773643 -13.3573755835535,130.183506300986 -13.1075200334223,130.617795037967 -12.5363921037325,131.22349450086 -12.1836487769082,131.73509118055 -12.3024528947472,132.575298293183 -12.114040622611,132.557211541881 -11.6030123836767,131.824698114144 -11.2737818335452,132.357223748911 -11.1285193823727,133.019560581596 -11.3764112280768,133.550845981989 -11.7865153947451,134.393068475482 -12.0423654110222,134.678632440327 -11.9411829565947,135.298491245668 -12.248606052299,135.882693312728 -11.9622669409698,136.25838097549 -12.0493417293816,136.492475213772 -11.8572087541204,136.951620314685 -12.3519589168828,136.685124953356 -12.887223402562,136.305406528875 -13.2912297502199,135.961758254134 -13.3245093726159,136.077616815333 -13.7242782528258,135.783836297753 -14.2239893530882,135.428664178611 -14.7154322241839,135.500184360903 -14.9977405737944,136.295174595281 -15.5502649878591,137.065360142159 -15.8707622209333,137.580470819245 -16.2150822892941,138.303217401279 -16.8076042619527,138.585164015863 -16.8066224097392,139.108542922115 -17.0626791317454,139.260574985918 -17.3716008439862,140.215245396078 -17.7108049455501,140.875463495039 -17.3690686988039,141.071110467696 -16.8320472144268,141.274095493739 -16.3888701310917,141.398222284104 -15.8405315080426,141.702183058845 -15.0449211564769,141.563380161709 -14.5613331030896,141.635520461188 -14.2703947892863,141.519868605719 -13.6980783016538,141.650920038011 -12.9446875952706,141.842691278246 -12.7415475399312,141.686990187751 -12.4076144344611,141.928629185148 -11.8774659155788,142.118488397388 -11.3280420874516,142.143706496346 -11.0427365047682,142.515260044525 -10.6681857235167,142.797310011974 -11.1573548315916,142.866763136974 -11.7847067196149,143.115946893486 -11.9056295711779,143.158631626559 -12.3256556128462,143.5221236513 -12.8343584123274,143.597157830988 -13.4004220516526,143.5618111513 -13.7636556942322,143.922099237239 -14.548310642152,144.563713820575 -14.1711760392859,144.894908075133 -14.5944576961886,145.374723748964 -14.9849764950183,145.271991001567 -15.4282052547857,145.485259637636 -16.2856722958048,145.637033319277 -16.7849183081766,145.888904250268 -16.9069263648177,146.160308872665 -17.7616545549253,146.063673944279 -18.2800725236773,146.38747846902 -18.9582740210759,147.471081577748 -19.4807227515467,148.177601760042 -19.9559392229028,148.848413527623 -20.3912098120972,148.717465448196 -20.6334689266816,149.289420200802 -21.2605107561111,149.678337030231 -22.3425118954384,150.077382440389 -22.1227837053333,150.482939081015 -22.556142266533,150.727265252891 -22.4024048804647,150.899554478152 -23.4622368303387,151.609175246384 -24.0762561988307,152.073539666959 -24.4578866513062,152.855197381806 -25.267501316023,153.136162144177 -26.0711731910262,153.16194868389 -26.6413192685025,153.092908970349 -27.2602995744945,153.569469028944 -28.1100668271021,153.5121081891 -28.9950774065327,153.339095493787 -29.4582015927325,153.069241164359 -30.3502401669548,153.089601678682 -30.9236418596654,152.891577590139 -31.640445651986,152.450002476205 -32.5500025367553,151.709117466437 -33.0413420549864,151.343971795862 -33.8160234514739,151.010555454715 -34.3103602027779,150.714139439089 -35.1734599749168,150.328219842733 -35.6718791643719,150.075212030232 -36.4202055803905,149.946124302367 -37.1090524228412,149.997283970336 -37.4252605120352,149.423882277626 -37.7726811663334,148.304622430616 -37.8090613746669,147.381733026315 -38.2192172177675,146.922122837511 -38.6065320777951,146.317921991155 -39.0357565244114,145.489652134381 -38.593767999019,144.876976353128 -38.4174480120392,145.032212355733 -37.896187839511,144.485682407814 -38.0853235816993,143.609973586196 -38.8094654274053,142.745426873953 -38.5382675107376,142.178329705982 -38.3800342750598,141.606581659105 -38.3085140927679,140.638578729413 -38.0193327776626,139.992158237874 -37.4029362932851,139.806588169514 -36.6436027971883,139.574147577065 -36.1383623186707,139.082808058834 -35.7327540016117,138.120747918856 -35.6122962379394,138.449461704665 -35.1272612444479,138.207564325107 -34.3847225888459,137.719170363516 -35.076825046531,136.829405552315 -35.2605347633286,137.352371047108 -34.7073385556441,137.503886346588 -34.1302678362407,137.890116001538 -33.6404786109784,137.810327590079 -32.9000070126681,136.99683719294 -33.7527714983486,136.372069126532 -34.0947661272562,135.989043410384 -34.8901180966605,135.208212518454 -34.4786703427526,135.239218377829 -33.947953383115,134.613416782775 -33.2227780087632,134.085903761939 -32.8480721982148,134.273902622617 -32.617233575167,132.99077680881 -32.0112240536802,132.288080682505 -31.9826469866228,131.326330601121 -31.495803318001,129.53579389864 -31.5904228655275,128.240937534702 -31.9484888648779,127.102867466338 -32.2822669410511,126.148713820501 -32.2159660784206)))","AU","Australia","Oceania","Oceania","Australia and New Zealand","Country",7687613.84310903,23504138,82.3,43547.1974836868 +"MULTIPOLYGON (((81.7879590188914 7.52305532473316,81.6373222187606 6.48177521405192,81.2180196471443 6.19714142498829,80.3483569681044 5.96836985923215,79.8724687031285 6.76346344647493,79.6951668639351 8.20084341067339,80.1478007343796 9.82407766360956,80.8388179869866 9.26842682539119,81.3043192890718 8.56420624433369,81.7879590188914 7.52305532473316)))","LK","Sri Lanka","Asia","Asia","Southern Asia","Sovereign country",65370.3895242611,20771000,74.906,10650.3901782483 +"MULTIPOLYGON (((109.475209588664 18.1977009139686,108.655207961056 18.5076819930714,108.62621748254 19.3678878850019,109.119055617308 19.8210385197693,110.211598748823 20.101253973872,110.786550734502 20.0775344914501,111.010051304165 19.6959298771907,110.570646600387 19.2558792180093,110.339187860151 18.6783950871476,109.475209588664 18.1977009139686)),((80.2599902688853 42.3499992945991,80.1801501809943 42.9200678574269,80.8662064961013 43.180362046881,79.9661063984414 44.9175169948046,81.9470707539181 45.3170274928531,82.4589258157691 45.5396495631665,83.1804838398605 47.3300312363509,85.1642903991132 47.0009557155161,85.7204838398707 47.4529694687731,85.7682328633083 48.455750637397,86.5987764831034 48.5491816269806,87.3599703307626 49.2149807806291,87.7512642760767 49.2971979844055,88.0138322285517 48.5994627956006,88.8542977233468 48.069081732773,90.2808256367639 47.6935490993079,90.970809360725 46.8881460638229,90.5857682637183 45.7197160914875,90.9455395853343 45.2860733099103,92.1338908223182 45.1150759954565,93.4807336771413 44.97547211362,94.6889286641253 44.3523318548284,95.3068754414715 44.2413308782655,95.7624548685567 43.3194491643946,96.3493957865278 42.7256352809287,97.451757440178 42.74888967546,99.51581749878 42.5246914739617,100.845865513108 42.6638044296915,101.83304039918 42.5148729518263,103.312278273535 41.9074681666676,104.522281935649 41.9083466660166,104.964993931093 41.5974095729163,106.129315627062 42.1343277044289,107.744772576938 42.4815158147819,109.243595819131 42.5194463160841,110.412103306115 42.871233628911,111.12968224492 43.4068340114002,111.829587843881 43.7431183945395,111.667737257943 44.0731757675877,111.348376906379 44.4574417181101,111.8733061056 45.1020793727351,112.436062453259 45.0116456162243,113.463906691544 44.8088931341271,114.460331658996 45.3398167994938,115.9850964702 45.727235012386,116.717868280099 46.3882024196152,117.421701287914 46.6727328558143,118.874325799639 46.8054120957237,119.663269891439 46.6926799586789,119.772823927898 47.0480587835501,118.866574334795 47.7470600449462,118.064142694167 48.0667304551037,117.295507440257 47.6977090521074,116.308952671373 47.8534101426028,115.742837355616 47.7265445013263,115.485282017073 48.1353825954034,116.191802199368 49.1345980901991,116.678800897286 49.8885313991214,117.879244419426 49.510983384797,119.288460728026 50.142882798862,119.27939 50.58292,120.18208 51.64355,120.7382 51.96411,120.725789015792 52.5162263047309,120.177088657717 52.7538862168412,121.00308475147 53.2514010687312,122.245747918793 53.4317259792137,123.57147 53.4588,125.06821129771 53.1610448268689,125.946348911646 52.792798570357,126.564399041857 51.7842554795327,126.939156528838 51.3538941514059,127.287455682485 50.7397972682655,127.6574 49.76027,129.39781782442 49.4406000840154,130.582293328982 48.7296874049761,130.98726 47.79013,132.50669 47.78896,133.373595819228 48.1834416774349,135.026311476787 48.4782298854439,134.50081 47.57845,134.11235 47.21248,133.769643996313 46.116926988299,133.09712 45.14409,131.88345421766 45.3211616074365,131.02519 44.96796,131.288555129115 44.1115196803483,131.144687941615 42.9299897324269,130.63386640841 42.9030146347705,130.63999970691 42.3950242752218,129.994267205933 42.9853868678438,129.59666873588 42.4249817978546,128.052215203972 41.9942845729179,128.208433058791 41.4667715520825,127.343782993683 41.503151760416,126.86908328665 41.8165693222662,126.182045119329 41.1073361272764,125.079941847841 40.5698237167924,124.265624627785 39.9284933538342,122.867570428561 39.6377875839762,122.131387974131 39.1704517685447,121.054554478033 38.8974710149628,121.585994907722 39.3608535833241,121.376757033373 39.7502613388595,122.168595005381 40.422442531896,121.640358514494 40.9463898789033,120.768628778162 40.5933881699175,119.639602085449 39.8980559352142,119.023463983233 39.2523330755111,118.042748651198 39.2042739934797,117.532702264477 38.7376358098841,118.05969852099 38.0614755315611,118.878149855628 37.8973253443859,118.911636183753 37.4484638534987,119.702802362142 37.1563886581851,120.823457472824 37.870427761378,121.711258579598 37.4811233587072,122.357937453298 37.4544841578607,122.519994744966 36.9306143255018,121.104163853033 36.6513290471804,120.637008905115 36.1114395208111,119.664561802246 35.6097905543377,119.151208123859 34.9098591171604,120.227524855634 34.3603319361686,120.620369093917 33.3767227239251,121.22901411345 32.4603187118772,121.90814578663 31.6921743840746,121.89191938689 30.9493515080951,121.264257440273 30.6762674016487,121.503519321785 30.1429149439643,122.092113885589 29.8325204534031,121.938428175953 29.0180223658348,121.684438511239 28.2255126002066,121.125661248866 28.1356731226672,120.395473260582 27.0532068954493,119.585496860839 25.7407805445326,118.656871372555 24.5473908554002,117.281606479971 23.6245014510997,115.890735304835 22.7828732365781,114.763827345846 22.6680740422417,114.152546828266 22.2237600773962,113.806779819801 22.5483397486214,113.241077915502 22.0513674992705,111.843592157032 21.5504936792815,110.785465529424 21.3971438664553,110.444039341272 20.3410326197063,109.889861281374 20.2824573837035,109.627655063925 21.0082270370267,109.864488153118 21.3950509709475,108.522812941524 21.7152123072118,108.050180291783 21.5523798690601,107.043420037873 21.8118989120299,106.567273390735 22.2182048609248,106.725403273548 22.7942678898984,105.811247186305 22.9768924016179,105.329209425887 23.3520633000569,104.476858351664 22.819150092047,103.504514601661 22.7037566187392,102.7069922221 22.7087950708877,102.170435825614 22.4647531193893,101.652017856862 22.3181987574095,101.803119744883 21.1743667668451,101.27002566936 21.2016519230952,101.180005324308 21.436572984294,101.150032993578 21.849984442629,100.416537713627 21.5588394230966,99.9834892110215 21.7429367131364,99.2408988789873 22.1183143173046,99.5319922220874 22.9490388046126,98.8987492207828 23.1427220728425,98.6602624857558 24.06328603769,97.604719679762 23.897404690033,97.7246090026791 25.083637193293,98.6718380065892 25.9187025009135,98.7120939473445 26.7435358749403,98.6826900573705 27.5088121607506,98.2462309102333 27.7472213811292,97.9119877461694 28.3359451360143,97.32711388549 28.2615827499463,96.2488334492878 28.4110309921344,96.5865906107475 28.8309795191543,96.117678664131 29.4528020289225,95.4048022806646 29.0317166203921,94.5659904317029 29.27743805594,93.4133476094327 28.6406293808072,92.5031189310436 27.8968763290464,91.6966565286967 27.7717418482517,91.2588537943199 28.0406143254663,90.7305139505678 28.0649539250758,90.0158288919712 28.2964385035272,89.4758101745211 28.0427588974064,88.8142484883206 27.2993159042394,88.7303259622786 28.0868647323675,88.1204407083699 27.8765416529396,86.9545170430006 27.9742617864035,85.8233199401315 28.2035759546987,85.011638218123 28.6427739527473,84.2345797057501 28.8398937037247,83.8989929544467 29.3202261418777,83.3371151061372 29.4637315943522,82.3275126484509 30.1152680526881,81.5258044778747 30.4227169866086,81.1112561380293 30.1834809433134,79.7213668151071 30.8827147486547,78.738894484374 31.5159060735271,78.458446486326 32.6181643743127,79.1761287779955 32.4837798121377,79.2088916360686 32.9943946396137,78.8110864602857 33.5061980250324,78.9122689147132 34.3219363469758,77.8374507994746 35.4940095077878,76.1928483417857 35.8984034286878,75.8968974140501 36.6668061386518,75.1580277851409 37.1330309107891,74.9800024758954 37.4199901393059,74.8299857929521 37.9900070257014,74.8648157083168 38.3788463404816,74.2575142760227 38.6065068629434,73.9288521666464 38.5058153346227,73.6753792662548 39.4312368841056,73.9600130553184 39.6600084498617,73.8222436868283 39.8939734970632,74.7768624205561 40.3664252792916,75.4678279967307 40.5620722519487,76.5263680357974 40.4279460719351,76.9044844908771 41.0664859075496,78.187196893226 41.1853158636048,78.5436609231753 41.5822425400387,80.1194303730514 42.1239407415382,80.2599902688853 42.3499992945991)))","CN","China","Asia","Asia","Eastern Asia","Country",9409830.49343391,1364270000,75.932,12758.647789259 +"MULTIPOLYGON (((121.77781782439 24.3942735865194,121.175632358893 22.7908572453672,120.747079705896 21.9705713973821,120.220083449384 22.8148609481667,120.106188592612 23.5562627222582,120.694679803552 24.5384508326137,121.495044386889 25.2954588892574,121.951243931161 24.997595933527,121.77781782439 24.3942735865194)))","TW","Taiwan","Asia","Asia","Eastern Asia","Sovereign country",34345.7011138443,NA,NA,NA +"MULTIPOLYGON (((10.4427014502466 46.8935462509974,11.0485559424365 46.7513585475463,11.1648279150933 46.9415794948127,12.1530880062431 47.1153931748265,12.3764852230408 46.7675591090699,13.8064754574215 46.5093061386912,13.6981099789055 46.0167780625174,13.9376302425783 45.5910159368646,13.1416064795543 45.7366917994954,12.3285811703063 45.3817780625148,12.3838749528585 44.8853742539191,12.2614534847591 44.600482082694,12.5892370947865 44.0913658717545,13.5269059587225 43.5877273626379,14.029820997787 42.7610077988325,15.1425696143279 41.9551396754568,15.9261910336019 41.9613150091157,16.1698970882904 41.7402949082034,15.8893457373778 41.5410822617182,16.7850016618605 41.1796056178366,17.5191687354312 40.8771434596322,18.3766874528825 40.3556249049426,18.4802470231954 40.1688662786398,18.293385044028 39.8107744410733,17.7383801612133 40.2776710068303,16.8695959815223 40.4422346054638,16.4487431169373 39.7954007024664,17.1714896989715 39.4246998154207,17.0528406104293 38.9028712021373,16.6350883317818 38.8435724960824,16.100960727613 37.9858987493342,15.6840869483145 37.908849188787,15.6879626807363 38.2145928004419,15.8919812354247 38.7509424911992,16.1093323096443 38.9645470240777,15.7188135108146 39.5440723740149,15.4136125016988 40.0483568385352,14.9984957210982 40.1729487167909,14.7032682634147 40.6045502792926,14.0606718278653 40.7863479680954,13.6279850602854 41.1882872584616,12.8880819027304 41.2530895045556,12.1066825700449 41.7045348170574,11.1919063656142 42.3554253199897,10.5119478695177 42.9314625107472,10.200028924204 43.9200068222746,9.70248823409784 44.0362787949313,8.88894616052687 44.3663361679795,8.42856082523858 44.2312281357524,7.85076663578314 43.7671479355552,7.43518476729187 43.6938449163492,7.54959638838611 44.1279011093848,7.00756229007663 44.2547667506614,6.74995527510166 45.0285179713676,7.09665245934784 45.3330988632959,6.80235517744561 45.7085798203286,6.84359297041451 45.9911465521006,7.27385094567666 45.7769477402508,7.75599205895983 45.8244900579593,8.31662967289438 46.1636424830909,8.48995242680132 46.0051508652517,8.96630577966781 46.0369318711112,9.18288170740306 46.440214748717,9.92283654139038 46.3148994004092,10.3633781266786 46.4835712754099,10.4427014502466 46.8935462509974)),((14.7612492204462 38.1438736028505,15.5203760108138 38.2311550969914,15.1602429541717 37.4440455185378,15.309897902089 37.1342194687318,15.0999882341194 36.6199872909954,14.335228712632 36.9966309677547,13.82673261888 37.1045313583802,12.4310038591088 37.6129499374837,12.5709436377551 38.1263811305197,13.7411564470046 38.0349655217953,14.7612492204462 38.1438736028505)),((8.70999067550011 40.8999844427052,9.21001183435627 41.2099913600242,9.80997521326492 40.5000088567661,9.66951867029562 39.1773764104718,9.21481774255943 39.2404733343001,8.80693566247967 38.9066177434785,8.42830244307711 39.1718470322165,8.38825320805091 40.3783108587188,8.15999840661769 40.9500072291638,8.70999067550011 40.8999844427052)))","IT","Italy","Europe","Europe","Southern Europe","Sovereign country",315104.851197605,60789140,83.090243902439,33945.8438783585 +"MULTIPOLYGON (((9.92190636560912 54.983104153048,9.28204878097114 54.8308653835162,8.52622928227021 54.9627436387252,8.12031090661753 55.5177226833236,8.08997684086222 56.5400117051376,8.25658165857121 56.8099693874303,8.54343753422341 57.1100027533169,9.42446902836755 57.1720661484995,9.77555870935853 57.4479407822897,10.5800057308461 57.7300165879549,10.5461059912627 57.2157327337861,10.2500000342302 56.8900161810504,10.369992710012 56.6099815944608,10.9121818376183 56.4586213242779,10.66780398931 56.0813833685472,10.369992710012 56.1900072292247,9.64998497888928 55.4699994981021,9.92190636560912 54.983104153048)),((12.3709041683533 56.1114073757088,12.6900061377556 55.6099909531807,12.0899910824147 54.8000145534379,11.0435433285042 55.3648637966042,10.9039136084516 55.7799547389887,12.3709041683533 56.1114073757088)))","DK","Denmark","Europe","Europe","Northern Europe","Country",42759.9277031922,5643475,80.7,45057.0741699595 +"MULTIPOLYGON (((-6.19788489422099 53.8675650091634,-6.95373023113807 54.0737022975756,-7.57216793459106 54.059956366586,-7.36603064617879 54.5958409694527,-7.57216793459106 55.1316222194549,-6.73384701173615 55.1728600124238,-5.66194861492197 54.5546031764838,-6.19788489422099 53.8675650091634)),((-3.09383067378872 53.4045474006697,-3.09207963704711 53.4044408229636,-2.94500851074434 53.9849997015467,-3.61470082543303 54.6009367732926,-3.63000545898933 54.615012925833,-4.84416907390306 54.7909711777868,-5.08252661784928 55.0616006536994,-4.7191121077567 55.5084726019435,-5.04798092286211 55.7839855007076,-5.5863976709112 55.3111461452368,-5.64499874513024 56.2750149603448,-6.14998084148641 56.7850096706335,-5.78682471355529 57.8188483750646,-5.00999874512763 58.6300133327501,-4.21149451335356 58.5508450384791,-3.00500484863528 58.6350001084663,-4.07382849772807 57.5530248073553,-3.05500179687772 57.6900190293609,-1.95928056477692 57.6847997096995,-2.21998816568936 56.8700174017536,-3.11900305827118 55.9737930365155,-2.08500932454302 55.9099984808513,-2.00567567967386 55.8049028503502,-1.11499101399221 54.6249864772654,-0.4304849918542 54.4643761257022,0.184981316742039 53.325014146531,0.469976840831805 52.929999498092,1.68153079591468 52.739520168664,1.55998782716432 52.099998480836,1.05056155763094 51.8067605657957,1.44986534995024 51.2894278021219,0.550333693045502 50.7657388372759,-0.787517462558696 50.7749889186562,-2.48999752441443 50.5000186224312,-2.95627397298409 50.696879991247,-3.61744808594239 50.2283556178728,-4.54250790039924 50.3418370631857,-5.24502315919113 49.9599999049811,-5.77656694174527 50.1596776393569,-4.3099897933019 51.2100011256892,-3.41485063314212 51.4260086126692,-3.42271946710838 51.4268481674061,-4.98436723471093 51.593466091511,-5.26729570150894 51.9914004583746,-4.22234656413491 52.3013556992614,-4.77001339356417 52.8400049912556,-4.57999915202697 53.4950037705552,-3.09383067378872 53.4045474006697)))","GB","United Kingdom","Europe","Europe","Northern Europe","Country",249986.395211549,64613160,81.3048780487805,38251.7924802929 +"MULTIPOLYGON (((-14.5086954411292 66.4558922390314,-14.7396374170416 65.8087482774403,-13.6097322249798 65.1266710476199,-14.9098337467949 64.3640819362887,-17.7944380355434 63.6787490912339,-18.656245896875 63.4963829616758,-19.9727546859428 63.6436349554915,-22.7629719711102 63.9601789414954,-21.7784842595177 64.4021157904555,-23.9550439112191 64.8911298692335,-22.1844026351704 65.0849681667603,-22.2274232650533 65.3785936550427,-24.3261840479393 65.6111892767885,-23.6505146957231 66.2625190293952,-22.1349224512509 66.4104686550469,-20.5762837386795 65.7321121283514,-19.0568416000016 66.2766008571948,-17.7986238265591 65.9938532579098,-16.1678189762921 66.5267923041359,-14.5086954411292 66.4558922390314)))","IS","Iceland","Europe","Europe","Northern Europe","Sovereign country",107735.721363006,327386,82.8609756097561,41701.1372653816 +"MULTIPOLYGON (((46.4049507993488 41.8606751572273,46.6860705910166 41.8271371526699,47.3733154640662 41.2197323675112,47.8156657244846 41.1514161240214,47.987283156126 41.4058192001942,48.5843533961134 41.8088687916207,49.1102637062607 41.2822866888005,49.6189148293096 40.57292430273,50.0848295428531 40.5261571315058,50.3928210793127 40.2565611842391,49.5692021014448 40.1761009791607,49.3952592303504 39.3994817164622,49.2232283872507 39.0492188583879,48.8565324237076 38.8154863551318,48.8832491392025 38.3202452662626,48.6343754412848 38.270377509101,48.0107442563865 38.7940147975145,48.3555294126379 39.2887649602769,48.0600952492252 39.5822354192625,47.6850793800831 39.5083639593012,46.505719842318 38.7706053736863,46.4834989764325 39.4641547714755,46.0345341326807 39.6280207382731,45.6100122414029 39.8999938014252,45.8919071795551 40.21847565364,45.3591748390582 40.5615038111935,45.5603511899704 40.8122895371059,45.1794958839793 40.9853539088514,44.9724800962181 41.2481285670556,45.2174263852816 41.411451931314,45.9626005389304 41.1238725856098,46.5016374041669 41.0644446884741,46.6379081561206 41.1816726751282,46.145431756379 41.7228024358726,46.4049507993488 41.8606751572273)),((46.1436230812488 38.7412014837122,45.4577217954388 38.8741391057831,44.9526880226503 39.3357646754464,44.7939896990819 39.713002631177,45.0019873390567 39.7400035670496,45.2981449725215 39.4717512070224,45.739978468617 39.4739991318271,45.735379266143 39.3197191432197,46.1436230812488 38.7412014837122)))","AZ","Azerbaijan","Asia","Asia","Western Asia","Sovereign country",91113.2541543127,9535079,71.8,16715.1055213058 +"MULTIPOLYGON (((39.9550085792709 43.4349976669992,40.0769649594798 43.5531041530023,40.92219 43.38215,42.3944 43.2203,43.75599 42.74083,43.93121 42.55496,44.537622918482 42.7119927028036,45.4702791684857 42.50278066667,45.7764 42.09244,46.4049507993488 41.8606751572273,46.145431756379 41.7228024358726,46.6379081561206 41.1816726751282,46.5016374041669 41.0644446884741,45.9626005389304 41.1238725856098,45.2174263852816 41.411451931314,44.9724800962181 41.2481285670556,43.5827458025927 41.0921432561826,42.6195487811045 41.5831727158199,41.5540841001107 41.5356562363276,41.7031706072727 41.9629428167329,41.4534700864384 42.6451233994179,40.8754691912538 43.0136280380913,40.3213944842203 43.1286339381568,39.9550085792709 43.4349976669992)))","GE","Georgia","Asia","Asia","Western Asia","Sovereign country",69048.1605044603,3727000,72.951,8749.15618927352 +"MULTIPOLYGON (((120.833896112147 12.7044961613424,120.323436313967 13.4664134790538,121.180128208502 13.4296973739104,121.527393833503 13.0695901554845,121.262190382982 12.2055602075644,120.833896112147 12.7044961613424)),((122.586088901867 9.98104482669613,122.837081333509 10.2611569279342,122.947410516452 10.8818683944081,123.498849725438 10.9406244979239,123.337774285985 10.2673839380254,124.077935825701 11.2327255314537,123.982437778826 10.2787785913458,123.623183221533 9.9500906437533,123.309920688979 9.31826874433671,122.995883009942 9.02218862552041,122.380054966319 9.71336090742422,122.586088901867 9.98104482669613)),((126.376813592637 8.4147063257133,126.478512811388 7.75035411216898,126.537423944201 7.18938060142454,126.196772902533 6.27429433840005,125.831420526229 7.29371531822184,125.363852166852 6.78648529706095,125.683160841984 6.04965688722727,125.396511672061 5.58100332277228,124.219787632342 6.16135549562615,123.938719517107 6.88513560630614,124.243662144061 7.36061045982366,123.610212437027 7.83352732994274,123.296071405125 7.41887563723276,122.825505812675 7.4573745792902,122.085499302256 6.89942413983484,121.919928013193 7.19211945233601,122.312358840017 8.03496206301647,122.94239790252 8.31623688398113,123.487687616063 8.69300975182118,123.84115441294 8.24032420494437,124.60146976125 8.514157619659,124.764612257996 8.96040945071549,125.471390822452 8.98699697512966,125.412117954613 9.76033478437753,126.222714471543 9.28607432701887,126.306636997585 8.78248749433456,126.376813592637 8.4147063257133)),((118.50458092659 9.31638255455805,117.174274530101 8.36749990481468,117.664477166821 9.06688873945289,118.386913690262 9.68449961998921,118.987342157061 10.3762920190805,119.511496209798 11.3696680770272,119.68967654834 10.5542914901099,119.029458449379 10.0036532658238,118.50458092659 9.31638255455805)),((122.336956821788 18.2248827173541,122.174279412933 17.8102827010764,122.515653924653 17.093504746972,122.252310825694 16.2624443628541,121.662786086108 15.9310175643501,121.505069614753 15.1248135441646,121.728828566577 14.3283763696823,122.258925409027 14.218202216036,122.701275669446 14.3365412459844,123.95029503794 13.782130642141,123.855107049659 13.2377711043784,124.181288690285 12.9975273706535,124.077419061378 12.5366769474746,123.298035109552 13.0275255395989,122.92865197153 13.5529198267104,122.671355015149 13.1858362899251,122.034649692881 13.7844819198103,121.126384718919 13.6366873234555,120.628637323083 13.8576557479356,120.679383579594 14.2710155298383,120.991819289231 14.525392767795,120.693336216313 14.7566706405173,120.564145135583 14.3962792017138,120.070428501466 14.9708694523671,119.920928582846 15.4063467472907,119.883773228028 16.36370433193,120.286487664879 16.0346288110953,120.390047235192 17.5990811222995,120.715867140792 18.5052273625375,121.321308221524 18.5040646428109,121.937601353036 18.2185523543984,122.246006300954 18.4789498967171,122.336956821788 18.2248827173541)),((122.038370396006 11.41584096928,121.883547804859 11.891755072472,122.483821242361 11.5821874048275,123.120216506036 11.5836601831479,123.100837843926 11.1659337427165,122.637713657727 10.7413084985742,122.00261030486 10.4410167505261,121.967366978037 10.9056912296946,122.038370396006 11.41584096928)),((125.502551711124 12.1626946069783,125.783464797062 11.0461219344478,125.011883986512 11.3114545760504,125.032761265158 10.9758161483147,125.27744917206 10.3587220321013,124.801819289246 10.1346788598999,124.760168084819 10.8379951033923,124.459101190286 10.8899299178456,124.302521600442 11.4953709985772,124.891012811382 11.4155825871185,124.877990350444 11.7941899683049,124.266761509296 12.5577609318497,125.227116327008 12.5357209334772,125.502551711124 12.1626946069783)))","PH","Philippines","Asia","Asia","South-Eastern Asia","Sovereign country",292256.939380041,100102249,68.813,6585.89594870884 +"MULTIPOLYGON (((100.085756870527 6.46448944745029,100.259596388757 6.64282481528954,101.075515578213 6.20486705161592,101.154218784594 5.69138418214771,101.814281854258 5.81080841717424,102.141186964936 6.22163605389463,102.371147088635 6.12820506431092,102.961705356867 5.52449514406111,103.381214634212 4.85500112550375,103.438575474056 4.18160553630834,103.332122023535 3.72669790284299,103.42942874554 3.38286876058901,103.502447544369 2.79101858155018,103.85467410687 2.51545400635376,104.247931756611 1.63114105875908,104.228811476663 1.29304800048949,103.519707472754 1.22633372640068,102.573615350355 1.96711538330469,101.390638462329 2.76081370687558,101.273539666756 3.27029165284115,100.695435418707 3.93913971599487,100.557407668055 4.76728038168829,100.196706170658 5.31249258058371,100.306260207117 6.0405618351439,100.085756870527 6.46448944745029)),((117.88203494677 4.13755137777952,117.015214471506 4.30609406169947,115.865517205877 4.3065591495901,115.519078403792 3.1692383894944,115.134037306785 2.82148183838623,114.621355422018 1.4306881778989,113.80584964402 1.21754873291107,112.859809198052 1.4977900252299,112.380251906384 1.41012095784674,111.79754845586 0.904441229654608,111.159137811327 0.976478176269481,110.514060907027 0.773131415200965,109.830226678509 1.33813568766416,109.663260125774 2.00646698649496,110.396135288537 1.6637747257514,111.168852980597 1.85063670491881,111.370081007942 2.69730337158886,111.796928338673 2.88589651123806,112.995614862115 3.10239492432486,113.712935418759 3.89350942628116,114.204016554828 4.52587392823681,114.659595981914 4.00763682699775,114.869557326315 4.34831370688192,115.347460972151 4.31663605388701,115.405700311344 4.95522756593384,115.45071048387 5.44772980389153,116.220741001451 6.14319122967557,116.72510298062 6.924771429874,117.1296260926 6.92805288332454,117.643393182446 6.42216644940325,117.689075148592 5.98749013918015,118.347691278152 5.70869578696549,119.18190392464 5.40783559816221,119.110693800942 5.01612824138981,118.439727004064 4.96651886638961,118.618320754065 4.47820241944756,117.88203494677 4.13755137777952)))","MY","Malaysia","Asia","Asia","South-Eastern Asia","Sovereign country",338226.486563138,30228017,74.976,24194.6339084542 +"MULTIPOLYGON (((115.45071048387 5.44772980389153,115.405700311344 4.95522756593384,115.347460972151 4.31663605388701,114.869557326315 4.34831370688192,114.659595981914 4.00763682699775,114.204016554828 4.52587392823681,114.599961379049 4.90001129802997,115.45071048387 5.44772980389153)))","BN","Brunei Darussalam","Asia","Asia","South-Eastern Asia","Sovereign country",10700.3342457981,411704,76.917,76089.2865740815 +"MULTIPOLYGON (((13.8064754574215 46.5093061386912,14.6324715511748 46.4318173284695,15.137091912505 46.658702704447,16.0116638526127 46.6836107448117,16.2022982113374 46.852385972677,16.3705049984474 46.8413272161665,16.5648083838649 46.5037509222198,15.7687329444086 46.2381082220234,15.6715295752676 45.8341535507979,15.3239538916724 45.7317825384277,15.3276745947974 45.4523163925933,14.9352437679729 45.4716950547027,14.5951094906278 45.6349409043127,14.4119682145854 45.4661656764475,13.7150598486972 45.5003237981924,13.9376302425783 45.5910159368646,13.6981099789055 46.0167780625174,13.8064754574215 46.5093061386912)))","SI","Slovenia","Europe","Europe","Southern Europe","Sovereign country",19118.1227179494,2061980,81.0780487804878,28417.656441512 +"MULTIPOLYGON (((28.5919295590432 69.0647769232867,28.4459436378187 68.364612942164,29.9774263852206 67.6982970241928,29.0545886573523 66.9442862006221,30.21765 65.80598,29.544429559047 64.9486715765905,30.4446846860037 64.2044534369391,30.0358724301427 63.5528136257386,31.5160921567111 62.8676874864129,31.1399910824909 62.3576927761244,30.2111072120444 61.7800277777497,28.07 60.50352,28.0700019215257 60.5035191279682,28.0699975928953 60.5035165472758,26.255172967237 60.4239606797625,24.4966239763445 60.0573163926517,22.8696948584995 59.8463731960362,22.2907637875336 60.3919212917415,21.3222440935193 60.7201699896595,21.5448661638327 61.7053294948718,21.0592110531537 62.6073932969587,21.5360294939108 63.1897350124559,22.442744174904 63.8178103705313,24.7305115088975 64.9023436550408,25.3980676612439 65.1114265000937,25.2940430030404 65.5343464219705,23.9033785336338 66.0069273952796,23.5658797543356 66.3960509304374,23.5394730974344 67.9360086127353,21.9785347836261 68.6168456081807,20.6455928890895 69.1062472602009,21.2449361508107 69.3704430202931,22.3562378272474 68.8417414415149,23.6620495948308 68.8912474636505,24.7356791521267 68.6495567898215,25.6892126807764 69.092113755969,26.1796220232262 69.8252989773261,27.7322921078679 70.1641930202963,29.015572950972 69.766491197378,28.5919295590432 69.0647769232867)))","FI","Finland","Europe","Europe","Northern Europe","Country",341242.33887092,5461512,81.1804878048781,39017.5372069548 +"MULTIPOLYGON (((22.5581376482118 49.0857380234671,22.2808419125336 48.8253921575807,22.0856083513349 48.4222643092718,21.8722363624017 48.31997081155,20.8012939795849 48.6238540716424,20.4735620459899 48.5628500433218,20.2390543962493 48.3275672470969,19.7694706560131 48.2026911484636,19.6613635596585 48.2666148952087,19.1743648617399 48.1113788926039,18.7770247738477 48.0817682969006,18.6965128923369 47.8809536810144,17.85713260262 47.7584288600504,17.4884729346498 47.8674661321862,16.979666782304 48.1234970159763,16.879982944413 48.4700133327095,16.9602881201946 48.5969823268506,17.1019848975389 48.8169688991171,17.5450069515771 48.8000190293254,17.8864848161618 48.9034752467737,17.9135115902505 48.9964928248991,18.1049727718919 49.0439834661753,18.170498488038 49.2715147975564,18.3999935238462 49.31500051533,18.5549711442895 49.4950153672188,18.8531441586136 49.4962297633776,18.9095748226763 49.4358458522446,19.3207125179905 49.5715740016592,19.8250228207269 49.2171253525692,20.4158394711199 49.4314533554998,20.8879553565384 49.3287722845358,21.6078080583642 49.4701073268541,22.5581376482118 49.0857380234671)))","SK","Slovakia","Europe","Europe","Eastern Europe","Sovereign country",47068.0820296185,5418649,76.8121951219512,27285.284673711 +"MULTIPOLYGON (((15.0169958838587 51.1066740993216,15.4909721208397 50.7847299261432,16.2386267432386 50.6977326523798,16.1762532894623 50.4226073268579,16.7194759457144 50.2157465683935,16.8687691586057 50.473973700556,17.5545670915511 50.3621459010764,17.649445021239 50.04903839782,18.3929138526222 49.9886286484708,18.8531441586136 49.4962297633776,18.5549711442895 49.4950153672188,18.3999935238462 49.31500051533,18.170498488038 49.2715147975564,18.1049727718919 49.0439834661753,17.9135115902505 48.9964928248991,17.8864848161618 48.9034752467737,17.5450069515771 48.8000190293254,17.1019848975389 48.8169688991171,16.9602881201946 48.5969823268506,16.4992826677188 48.7858080104451,16.0296472510502 48.7338990342079,15.253415561594 49.0390742051076,14.9014473812541 48.9644017604458,14.3388977393247 48.5553052842072,13.5959456722644 48.8771719427371,13.0313289730434 49.3070681829732,12.5210242041612 49.5474152695627,12.4151908708274 49.9691207952806,12.2401111182226 50.2663377956073,12.9668367855432 50.4840764430691,13.3381319515603 50.7332343613644,14.0562276546882 50.9269176295943,14.3070133806006 51.1172677679414,14.5707182145861 51.0023393825243,15.0169958838587 51.1066740993216)))","CZ","Czech Republic","Europe","Europe","Eastern Europe","Sovereign country",81207.6029294362,10525347,78.8243902439024,29119.6166119074 +"MULTIPOLYGON (((36.42951 14.42211,36.32322 14.82249,36.75389 16.29186,36.85253 16.95655,37.16747 17.26314,37.904 17.42754,38.4100899594732 17.9983073999703,38.99062299984 16.8406261255517,39.266110060388 15.9227234969673,39.8142936541402 15.4356472844003,41.1792749366977 14.4910796167532,41.7349516131324 13.9210368921416,42.2768306821449 13.3439920109544,42.5895764503753 13.0004212508619,43.0812260272002 12.6996385767071,42.7796423683448 12.4554157576957,42.35156 12.54223,42.00975 12.86582,41.59856 13.45209,41.1552 13.77333,40.8966 14.11864,40.02625 14.51959,39.34061 14.53155,39.0994 14.74064,38.51295 14.50547,37.90607 14.95943,37.59377 14.2131,36.42951 14.42211)))","ER","Eritrea","Africa","Africa","Eastern Africa","Sovereign country",119319.584873889,NA,64.174,NA +"MULTIPOLYGON (((141.884600864835 39.1808645696515,140.959489373946 38.1740009628766,140.976387567305 37.1420742864402,140.599769728762 36.3439834661245,140.774074334883 35.8428771021902,140.253279250245 35.1381139185936,138.975527785396 34.6676000025761,137.217598911691 34.6062859156618,135.792983026269 33.4648052027666,135.120982700745 33.849071153289,135.079434849183 34.5965449081748,133.340316196832 34.3759382187208,132.156770868051 33.9049333765965,130.986144647343 33.8857614202162,132.00003624891 33.1499923772445,131.332790155157 31.4503545191648,130.686317987186 31.0295791692282,130.202419875205 31.4182376164954,130.447676222862 32.3194745956657,129.814691603719 32.6103095566044,129.408463169473 33.2960558131175,130.353935174685 33.6041507024417,130.878450962447 34.23274282484,131.884229364144 34.7497138534879,132.617672967662 35.4333930527094,134.608300815978 35.7316177434658,135.677537876529 35.5271341008869,136.723830601142 37.3049842392403,137.390611607004 36.8273906519988,138.857602166906 37.8274846461435,139.426404657143 38.2159622258976,140.054790073812 39.4388074814364,139.8833793479 40.5633124863237,140.305782505454 41.1950051946595,141.368973423427 41.3785598821603,141.91426313697 39.9916161158787,141.884600864835 39.1808645696515)),((144.61342654844 43.9608828802175,145.320825230083 44.3847329778754,145.543137241803 43.2620883245506,144.0596619 42.9883582627006,143.183849725517 41.9952147486992,141.611490920172 42.6787905950561,141.067286411707 41.584593817708,139.955106235921 41.569555975911,139.81754357316 42.5637588567744,140.312087030193 43.3332726100327,141.38054894426 43.3888247747464,141.671952345954 44.7721253525515,141.967644891528 45.5514834661613,143.14287031471 44.510358384777,143.910161981379 44.1740998398537,144.61342654844 43.9608828802175)),((132.37117638563 33.4636424830401,132.924372593315 34.060298570282,133.492968377822 33.9446208765967,133.904106073136 34.3649311386426,134.638428176004 34.1492337102564,134.766379022359 33.8063347437836,134.203415968971 33.2011778834296,133.792950067277 33.5219851750976,133.280268182509 33.2895704208649,133.014858026258 32.7045673691047,132.363114862193 32.9893820256814,132.37117638563 33.4636424830401)))","JP","Japan","Asia","Asia","Eastern Asia","Sovereign country",404619.932853689,127276000,83.5878048780488,37337.3174057788 +"MULTIPOLYGON (((-58.166392381408 -20.1767009416537,-57.8706739976178 -20.732687676682,-57.9371557277613 -22.0901758765572,-56.8815095689029 -22.2821538225215,-56.4733174302294 -22.0863001441353,-55.7979581366069 -22.3569296200478,-55.6106827459811 -22.6556193986948,-55.5176393296396 -23.5719975725266,-55.4007472397954 -23.9569353166688,-55.0279017808096 -24.0012736955752,-54.6528342352351 -23.839578138934,-54.2929595607545 -24.0210140927107,-54.2934763250774 -24.570799655864,-54.4289460923306 -25.1621847470122,-54.6252906968236 -25.7392554664155,-54.7887949285951 -26.6217855770961,-55.6958455063982 -27.3878370093909,-56.486701626193 -27.5484990373863,-57.6097596909761 -27.3958985328284,-58.6181735907197 -27.1237187639471,-57.6336600409111 -25.6036565080816,-57.7772171698179 -25.162339776309,-58.807128465395 -24.7714592424533,-60.028966030504 -24.0327963192733,-60.8465647040099 -23.8807125790383,-62.6850571356579 -22.2490292294224,-62.2911793687292 -21.0516346167874,-62.2659612697708 -20.5137346330613,-61.7863264634538 -19.633736667563,-60.0435646226265 -19.3427466773274,-59.1150424872061 -19.3569060197754,-58.1834714422805 -19.8683993466004,-58.166392381408 -20.1767009416537)))","PY","Paraguay","South America","Americas","South America","Sovereign country",401335.916394788,6552584,72.913,8501.54353959203 +"MULTIPOLYGON (((52.0000098000222 19.0000033635161,52.7821842791921 17.3497423364912,53.1085726255475 16.651051133689,52.3852059263259 16.3824112004197,52.1917293638251 15.938433132384,52.1681649107 15.5974203556899,51.1725150897325 15.1752497420815,49.5745764504031 14.7087665877827,48.6792305845142 14.0032024194857,48.2389473813874 13.9480895044464,47.9389140155008 14.0072331812044,47.3544535662797 13.5922197534684,46.7170764503917 13.399699204965,45.8775928078103 13.3477643905117,45.6250500831999 13.2909461532068,45.4064587746053 13.0269054224114,45.1443559100209 12.9539383000153,44.9895333188744 12.6995869002747,44.4945764503829 12.7216527368633,44.1751127459545 12.5859504256649,43.4829586118371 12.6368000350401,43.2228711281121 13.2209504256674,43.2514481951695 13.7675837264509,43.0879439633981 14.0626303166213,42.8922453143087 14.8022492537987,42.6048726743336 15.2133352726806,42.8050154966 15.2619627954673,42.7024377785007 15.718885809792,42.8236706886574 15.9117422551053,42.779332309751 16.3478913436487,43.2183752785027 16.6668899601864,43.1157975604034 17.0884404566074,43.3807943051961 17.5799866805677,43.7915185890519 17.3199767114911,44.0626131528551 17.4103587915696,45.2166512387972 17.4333289657233,45.3999992205688 17.3333350692386,46.3666585630205 17.2333153345376,46.7499943377616 17.2833381209962,47.0000049171898 16.9499992944974,47.4666947772176 17.1166816268549,48.1833435402413 18.1666692163773,49.1166715838649 18.6166675887749,52.0000098000222 19.0000033635161)))","YE","Yemen","Asia","Asia","Western Asia","Sovereign country",455915.007254186,26246327,64.523,3766.80525494897 +"MULTIPOLYGON (((34.9560372250843 29.3565546737788,36.0689408709221 29.1974946151845,36.5012142270436 29.5052536076987,36.7405277849873 29.8652833114762,37.503581984209 30.0037761500184,37.6681197446264 30.3386652694859,37.9988489112944 30.5084998642131,37.002165561681 31.5084129908447,39.0048856951526 32.010216986615,39.195468377445 32.1610088160427,40.3999943377362 31.8899917668879,41.8899809100078 31.1900086532784,44.7094987322847 29.1788910995594,46.5687134132818 29.0990251734523,47.4598218117228 29.0025194361472,47.7088505389374 28.5260627304161,48.4160941912839 28.5520042994267,48.8075948423272 27.6896279973399,49.2995544777458 27.4612181666098,49.4709135272257 27.1099992945381,50.1524223162909 26.689663194276,50.2129354185047 26.2770268824254,50.1133032570459 25.9439722763043,50.2398588397288 25.6080496281909,50.5273865090007 25.3278083358721,50.6605566750169 24.999895534764,50.8101082700696 24.7547425399714,51.112415398977 24.5563308781867,51.3896077817906 24.6273859725881,51.5795186704633 24.2454971379511,51.617707553927 24.0142192652288,52.0007332700743 23.0011544865789,55.0068030129249 22.4969475367071,55.2083410988632 22.708329982997,55.6666593768598 22.0000011255723,54.9999817238624 19.9999940047961,52.0000098000222 19.0000033635161,49.1166715838649 18.6166675887749,48.1833435402413 18.1666692163773,47.4666947772176 17.1166816268549,47.0000049171898 16.9499992944974,46.7499943377616 17.2833381209962,46.3666585630205 17.2333153345376,45.3999992205688 17.3333350692386,45.2166512387972 17.4333289657233,44.0626131528551 17.4103587915696,43.7915185890519 17.3199767114911,43.3807943051961 17.5799866805677,43.1157975604034 17.0884404566074,43.2183752785027 16.6668899601864,42.779332309751 16.3478913436487,42.6495727882661 16.774635321515,42.3479891294107 17.075805568912,42.2708878924312 17.4747217879891,41.754381951674 17.833046169501,41.2213912290156 18.6715996363012,40.9393412615665 19.4864852971118,40.2476522153398 20.1746345077265,39.8016846046609 20.3388622095501,39.1393994484083 21.2919048120929,39.0236959165068 21.9868753117702,39.0663289731476 22.5796556665903,38.4927722511401 23.6884510360609,38.0238603045236 24.0786856145129,37.4836348813444 24.285494696545,37.1548177426712 24.8584829777973,37.209491408036 25.0845415308581,36.9316272316026 25.6029594996102,36.6396037127212 25.8262275253272,36.2491365903238 26.5701356063849,35.6401815121964 27.3765204940834,35.1301868019079 28.0633519556747,34.632336053208 28.0585460474716,34.7877787615419 28.6074272730597,34.8322204933129 28.9574834254048,34.9560372250843 29.3565546737788)))","SA","Saudi Arabia","Asia","Asia","Western Asia","Sovereign country",1920324.14608918,30776722,74.234,49958.4433361471 +"MULTIPOLYGON (((-48.6606160141825 -78.0470187315987,-48.1513964503784 -78.0470696005868,-46.662856818211 -77.8314755250651,-45.1547576564211 -78.0470696005868,-43.9208278061557 -78.4781027223333,-43.4899497137061 -79.0855599913685,-43.3724375066744 -79.5166447895473,-43.3332667709971 -80.0261227355129,-44.8805366684643 -80.3396436502277,-46.506173875502 -80.5943567849943,-48.3864208644418 -80.8294845519223,-50.4821068996065 -81.0254415831731,-52.8519880845118 -80.9666854796573,-54.1642594061316 -80.6335275206716,-53.987991095584 -80.2220280903314,-51.8531343247422 -79.9477295877261,-50.9913264634106 -79.6146233051727,-50.3645946925748 -79.1834868305616,-49.9141312322865 -78.8112090048867,-49.3069589910731 -78.458569030927,-48.6606160141825 -78.0470179241545,-48.6606160141825 -78.0470187315987)),((-66.2900308905551 -80.255772800618,-64.0376877508977 -80.2949435362952,-61.8832456122172 -80.3928703754883,-61.1389757961335 -79.9813709451481,-60.6101191880584 -79.6286792947561,-59.5720946926116 -80.0401787250963,-59.8658493719747 -80.5496566710619,-60.1596557277702 -81.0003268370793,-62.2553934393671 -80.8631775857767,-64.4881253729698 -80.9219336892925,-65.7416664292899 -80.5888274067391,-65.7416664292899 -80.5496566710619,-66.2900308905551 -80.255772800618)),((-73.9158186510023 -71.2693445779258,-73.9158186510023 -71.2693437704815,-73.2303307766506 -71.1517798870175,-72.0747165595236 -71.1909506226948,-71.7809618801604 -70.6814726767292,-71.7221799384284 -70.3091956584985,-71.7417911444832 -69.5057821656568,-71.1738154771632 -69.0354749553684,-70.2532515123158 -68.8787403362272,-69.724446580673 -69.2510173544578,-69.4894221666096 -69.6233460491208,-69.0585182359438 -70.0740162151382,-68.7255411444711 -70.5051526897493,-68.4513459947304 -70.9558228557667,-68.3338337876987 -71.4064930217842,-68.5101279364624 -71.7984070842857,-68.784297247987 -72.1707357789487,-69.9594709947365 -72.3078850302513,-71.0758886379701 -72.5038420615021,-72.3881341213738 -72.4842566936635,-71.8984999254083 -72.0923426311619,-73.0736219957255 -72.2294918824645,-74.1900396389591 -72.3666928101995,-74.9538948228815 -72.0727572633233,-75.0126250881812 -71.6612578329831,-73.9158186510023 -71.2693445779258)),((-102.330725063876 -71.8941643207668,-102.330725063876 -71.8941635133226,-101.703967454824 -71.7177918499104,-100.430918545314 -71.8549927776453,-98.9815496488239 -71.9333342489998,-97.8847432116451 -72.0705351767347,-96.7879367744662 -71.9529712932707,-96.2003499010914 -72.5212053427522,-96.9837646146362 -72.4428638713977,-98.1980832588468 -72.4820346070749,-99.4320131091122 -72.4428638713977,-100.783455166409 -72.5016199749135,-101.801868455801 -72.3056629436628,-102.330725063876 -71.8941643207668)),((-122.621734585442 -73.6577776020239,-122.621735392886 -73.6577767945796,-122.406244670229 -73.3246188355939,-121.211511393857 -73.5009904990061,-119.918851278292 -73.6577251181473,-118.724143032692 -73.4813534547352,-119.292118700012 -73.8340967815595,-120.23221716371 -74.0888099163261,-121.622829956684 -74.0104684449717,-122.621734585442 -73.6577776020239)),((-127.283129645682 -73.4617688943408,-127.283130453126 -73.4617680868965,-126.558471843097 -73.2462256878071,-125.559566406895 -73.4813534547352,-124.031881877267 -73.8732675172367,-124.619468750642 -73.8340967815595,-125.912180542639 -73.7361182659341,-127.283129645682 -73.4617688943408)),((-163.712895677729 -78.5956674132415,-163.712895677729 -78.5956666057973,-163.105800951164 -78.2233379111343,-161.245113491846 -78.3801758831402,-160.246208055645 -78.6936451214227,-159.482404548154 -79.046337579259,-159.208183560198 -79.4970594217087,-161.127601284815 -79.6342086730113,-162.439846768218 -79.281465346187,-163.027407803377 -78.928773695795,-163.06660437727 -78.8699659158468,-163.712895677729 -78.5956674132415)),((180.0 -84.71338,180 -90,-180.0 -90.0,-180.0 -84.71338,-179.942499356179 -84.7214433735525,-179.058677334691 -84.1394117166491,-177.256771817106 -84.4529326313639,-177.140806673266 -84.4179412271483,-176.084672818078 -84.0992591287584,-175.947234613628 -84.1104487102166,-175.829882168663 -84.1179143208157,-174.382502814816 -84.5343230122235,-173.116559414745 -84.1179143208157,-172.889105598013 -84.0610185688624,-169.951222907571 -83.8846469054502,-168.999988980159 -84.1179143208157,-168.530198534193 -84.2373902322744,-167.022099372403 -84.5704965148279,-164.182143521155 -84.8252096495946,-161.929774543281 -85.1387305643094,-158.071379564425 -85.3739100076697,-155.192252977499 -85.0995598286322,-150.942098965438 -85.2955168598829,-148.533072883072 -85.6090377745977,-145.888918226333 -85.3151022277216,-143.1077184786 -85.0407520486839,-142.892279432376 -84.5704965148279,-146.829068366463 -84.5312741027184,-150.060731574484 -84.2961463357904,-150.902928229761 -83.9042322732888,-153.5862011383 -83.6886898741994,-153.409906989536 -83.238019708182,-153.037759162386 -82.8265202778418,-152.665637173453 -82.4541915831788,-152.861516690055 -82.0426921528386,-154.526298794554 -81.7683936502333,-155.290179816692 -81.415650323409,-156.83744971416 -81.1021294086943,-154.408786587522 -81.1609371886424,-152.097661506133 -81.0041508930688,-150.648292609643 -81.3373088520545,-148.865998298112 -81.0433733051783,-147.220749885019 -80.6710446105155,-146.417748996192 -80.337938327962,-146.770286424731 -79.9264388976219,-148.062946540296 -79.6520887185843,-149.531900804625 -79.3582048481404,-151.588416104112 -79.2993970681923,-153.390321621698 -79.1622478168896,-155.329376390586 -79.0642693012642,-155.975667691044 -78.6919397991571,-157.268301968393 -78.3784188844422,-158.05176835837 -78.0256755576179,-158.365134243788 -76.889207458655,-157.875474209606 -76.9872376507126,-156.974573127246 -77.3007585654275,-155.329376390586 -77.2027283733698,-153.742832404577 -77.0655791220672,-152.920246955355 -77.496663920246,-151.333780483994 -77.3987370810528,-150.001949632752 -77.1831430055312,-148.74848609108 -76.9088445029259,-147.612483080008 -76.5757382203726,-146.10440894899 -76.4777597047471,-146.143528008235 -76.1054310100842,-146.496091274991 -75.7331539918535,-146.202309949967 -75.3804106650292,-144.909623996186 -75.204039001617,-144.322037122811 -75.5371969606027,-142.794352593183 -75.341239929352,-141.638764214272 -75.086475118153,-140.209006523836 -75.0668897503144,-138.857590304755 -74.968911234689,-137.506199923891 -74.733783467761,-136.428901339902 -74.5182410686716,-135.214582695691 -74.3026986695822,-134.431193820363 -74.361454773098,-133.745654269579 -74.4398479208849,-132.257167928732 -74.3026986695822,-130.925311239274 -74.4790186565619,-129.554283814138 -74.4594332887235,-128.242038330734 -74.3222840374207,-126.890622111653 -74.4202625530462,-125.402082479486 -74.5182410686716,-124.011495524728 -74.4790186565619,-122.562152466454 -74.4986040244007,-121.073612834286 -74.5182410686716,-119.702559570934 -74.4790186565619,-118.684145474098 -74.1850831096859,-117.469800991671 -74.0283484905447,-116.216311611783 -74.243890889634,-115.021552497195 -74.0675192262219,-113.944331427855 -73.7148275758299,-113.297988450965 -74.0283484905447,-112.945451829869 -74.3810401409366,-112.299083014763 -74.7141980999224,-111.261058519316 -74.4202625530462,-110.066325242944 -74.7925395712768,-108.714909023863 -74.9101034547409,-107.559346483168 -75.1844536337784,-106.149148322355 -75.1256975302625,-104.876073574629 -74.9493258668504,-103.367948574623 -74.9884966025277,-102.016506517326 -75.1256975302625,-100.645530768622 -75.3020175172425,-100.116699998763 -74.8709327190635,-100.763042975654 -74.5378264365102,-101.252703009836 -74.1850831096859,-102.545337287185 -74.1067416383314,-103.113312954505 -73.7344129436684,-103.328752000729 -73.3620842490055,-103.681288621824 -72.6175302125442,-102.917485114334 -72.7546794638469,-101.605239630931 -72.8134355673627,-100.312527838933 -72.7546794638469,-99.1373799304001 -72.9114140829881,-98.1188891263595 -73.2053496298642,-97.6880368721261 -73.5580412802563,-96.336594814829 -73.6168490602044,-95.0439605374799 -73.4796998089018,-93.6729072741281 -73.283742777651,-92.439003262079 -73.1661788941871,-91.4205641344707 -73.4013066611151,-90.0887332832285 -73.3229135133282,-89.226951260113 -72.5587224325959,-88.4239511787296 -73.0093925986134,-87.2683369616026 -73.1857642620257,-86.0148217434985 -73.0877857464002,-85.1922362942765 -73.4796998089018,-83.8799908108728 -73.5188705445789,-82.6656463284461 -73.6364344280431,-81.4709130520742 -73.8519768271324,-80.687446662097 -73.4796998089018,-80.295790981757 -73.1269564820774,-79.296885545555 -73.5188705445789,-77.9258581204193 -73.4208920289536,-76.9073673163788 -73.6364344280431,-76.2218794420271 -73.9695407105964,-74.8900485907848 -73.8716138714034,-73.852024095338 -73.6560197958817,-72.8335332912974 -73.4013066611151,-71.6192146470869 -73.2641574098124,-70.20904232449 -73.1465418499161,-68.9359159003313 -73.0093925986134,-67.9566216701841 -72.7938501995241,-67.3690606350256 -72.4803292848093,-67.1340362209621 -72.0492444866304,-67.2515484279937 -71.6377450562903,-67.5649401516279 -71.2458309937887,-67.917476772723 -70.8539169312871,-68.2308426581409 -70.4620545452178,-68.485452440043 -70.1093112183935,-68.544208543559 -69.717397155892,-68.4462817043658 -69.3255347698227,-67.976232876239 -68.9532060751598,-67.5844996812503 -68.5417066448195,-67.4278425767575 -68.1498442587502,-67.6236704169277 -67.7187594605715,-67.7411826239594 -67.3268453980699,-67.2515484279937 -66.8761752320524,-66.7031839667286 -66.5822396851762,-66.0568151516219 -66.2099626669457,-65.3713272772702 -65.8963900757986,-64.5682755194545 -65.6025062053547,-64.1765423244659 -65.1714230220644,-63.6281520249846 -64.8970728430267,-63.0013944159326 -64.6423080318279,-62.041685553624 -64.583551928312,-61.4149279445721 -64.2700310135972,-60.7098547023817 -64.0740739823464,-59.8872692531596 -63.9565100988824,-59.1625848049146 -63.7017452876835,-58.5945574611623 -63.3882243729686,-57.8111427476176 -63.2706604895046,-57.2235817124589 -63.5254253007037,-57.5957295396089 -63.858531583257,-58.614142829001 -64.1524671301332,-59.0450725978829 -64.3680095292226,-59.7893424139666 -64.2112232336491,-60.6119278631887 -64.3092017492744,-61.2974157375403 -64.5443295162025,-62.0221001857855 -64.7990943274014,-62.511760219967 -65.0930298742775,-62.6488577948374 -65.4849423218907,-62.5901275295377 -65.8572193401213,-62.1200787014108 -66.1903256226747,-62.8055665757624 -66.425505066035,-63.7456900702324 -66.5038465373896,-64.29410620793 -66.8370044963752,-64.8816930813047 -67.1504737346577,-65.5084248521405 -67.5816102092689,-65.6650819566333 -67.9538872274995,-65.3125453355381 -68.3653349814074,-64.7837145656793 -68.6789075725545,-63.9611032782411 -68.9139836630502,-63.1972997707511 -69.2275562541973,-62.7859553697078 -69.6194186402665,-62.5705163234829 -69.9917473349295,-62.2767358059036 -70.3836613974311,-61.8066611395606 -70.7167676799845,-61.5129064601974 -71.0890446982151,-61.3758088853272 -72.0100737509532,-61.0819766913156 -72.3823507691839,-61.0036610581772 -72.7742648316854,-60.6902693345431 -73.1661788941871,-60.8273669094135 -73.6952422079912,-61.3758088853272 -74.1067416383314,-61.9633699204857 -74.4398479208849,-63.295200771728 -74.5769971721874,-63.7456900702324 -74.9297404990118,-64.3528364732296 -75.2628467815652,-65.8609873114518 -75.6351237997957,-67.1928181626942 -75.7919100953694,-68.4462817043658 -76.0074524944588,-69.7977237616629 -76.2229948935482,-70.6007238430463 -76.6344943238884,-72.2067756822454 -76.6736650595657,-73.9695363023697 -76.6344943238884,-75.5559769355141 -76.7128874716752,-77.2403702460676 -76.7128874716752,-76.9269785224336 -77.1048015341768,-75.399293992805 -77.2810698447244,-74.2828763495714 -77.5554200237618,-73.6561187405195 -77.9081116741539,-74.7725363837531 -78.2216325888687,-76.496100429984 -78.1236540732432,-77.9258581204193 -78.3784188844422,-77.9846659003675 -78.7899183147824,-78.0237849596125 -79.1818331847282,-76.8486370510791 -79.5149394672817,-76.6332238430704 -79.8872164855122,-75.3600974189117 -80.2595451801752,-73.2448518541246 -80.4163314757488,-71.4429463365393 -80.690629978354,-70.0131628078877 -81.0041508930688,-68.1916460842476 -81.3176718077836,-65.7042785305267 -81.4744581033572,-63.2560300360507 -81.7487566059625,-61.5520255194423 -82.0426921528386,-59.6914155747735 -82.3758501118244,-58.7121213446263 -82.8461056456804,-58.2224871486609 -83.2184343403434,-57.0081168280179 -82.865691013519,-55.3628942531416 -82.5717554666428,-53.6197706772883 -82.2582345519281,-51.5436441717461 -82.0035214171613,-49.7613498602155 -81.7291712381238,-47.2739306300622 -81.7095858702853,-44.8257079738025 -81.8467351215878,-42.8083634099924 -82.0819145649481,-42.1620204331018 -81.6508297667693,-40.7714334783436 -81.3568942198932,-38.2448176742971 -81.3373088520545,-36.2666696843802 -81.1217147765329,-34.3863968572244 -80.9061723774435,-32.3102961898983 -80.7690231261408,-30.097097947702 -80.5926514627287,-28.5498022120187 -80.337938327962,-29.2549012924251 -79.9851950011377,-29.685805223091 -79.6325033507457,-29.685805223091 -79.260226332515,-31.6248083155467 -79.2993970681923,-33.681323615034 -79.4561316873335,-35.6399120753283 -79.4561316873335,-35.914107225069 -79.0838546691029,-35.7770096501987 -78.339248148765,-35.3265461899105 -78.1236540732432,-33.8967626612589 -77.8885263063153,-32.2123693507053 -77.6534502158195,-30.9980507064946 -77.3595146689433,-29.7837320622841 -77.0655791220672,-28.8827793034914 -76.6736650595657,-27.5117518783557 -76.4973450725857,-26.1603356592748 -76.3601441448508,-25.4748219467069 -76.2818026734963,-23.9275520492398 -76.2425802613868,-22.458597784911 -76.1054310100842,-21.2246937728618 -75.9094739788334,-20.0103751286511 -75.6743462119054,-18.9135428532562 -75.4392184449773,-17.5229817367142 -75.1256975302625,-16.641588507544 -74.7925395712768,-15.7014908512903 -74.4986040244007,-15.4077103337109 -74.1067416383314,-16.4653201969964 -73.8716138714034,-16.1127835759013 -73.4601144410632,-15.446855231172 -73.1465418499161,-14.408804897509 -72.9505848186653,-13.311972622114 -72.7154570517373,-12.2935076562896 -72.4019361370225,-11.5100671045286 -72.0100737509532,-11.0204329085631 -71.5397665406649,-10.2957742985342 -71.2654163616273,-9.10101518394612 -71.3242241415755,-8.61138098798062 -71.6573304241289,-7.41662187339244 -71.6965011598061,-7.3774511377153 -71.3242241415755,-6.86823157391115 -70.9323100790739,-5.7909846663548 -71.0302885946993,-5.5363748844527 -71.4026172893623,-4.34166744629692 -71.4613733928781,-3.04898149251562 -71.2850534058982,-1.79549211262781 -71.1674378460019,-0.65948910155555 -71.2262456259501,-0.228636847322093 -71.6377450562903,0.868195428072909 -71.3046387737368,1.8866862321135 -71.1282671103247,3.02263756675342 -70.9911178590221,4.13905520998702 -70.8539169312871,5.15754601402762 -70.618789164359,6.27391198082887 -70.4620545452178,7.1357198421606 -70.2465121461283,7.74286624515781 -69.8937688193041,8.4871102230253 -70.148533630503,9.5251347184722 -70.0113327027682,10.2498450049334 -70.4816399130565,10.8178206722533 -70.8343315634485,11.9538236833256 -70.6383745321978,12.4042871436139 -70.2465121461283,13.4227779476544 -69.9721619670909,14.734997592842 -70.0309180706067,15.1267566260466 -70.4032467652697,15.9493420752686 -70.0309180706067,17.0265889828252 -69.9133541871428,18.2017110531423 -69.8741834514655,19.25937259286 -69.8937688193041,20.3757385596614 -70.0113327027682,21.4529854672178 -70.0701404827163,21.9230342953447 -70.4032467652697,22.5694031104514 -70.6971823121459,23.6661837094142 -70.5208106487337,24.8413574561636 -70.4816399130565,25.9773087908036 -70.4816399130565,27.0937264340373 -70.4620545452178,28.0925801938068 -70.324853617483,29.1502417335246 -70.207289734019,30.0315832862625 -69.9329395549813,30.9717326189486 -69.7566195680015,31.9901717465568 -69.658641052376,32.7540527686953 -69.3842908733385,33.3024430681767 -68.8356421916957,33.8704187354966 -68.5025875855746,34.9084949073758 -68.6592705282835,35.3002022641483 -69.0120138551079,36.1620101254798 -69.2471416220359,37.2000346209266 -69.1687484742491,37.9051078631168 -69.5214401246412,38.6494035174169 -69.7762049358402,39.6678943214574 -69.5410771689121,40.0204309425525 -69.109940694301,40.9213578631291 -68.9336207073212,41.9594340350081 -68.6005144247677,42.9387024269391 -68.4633134970327,44.1138761736887 -68.2674081422143,44.8972908872334 -68.0518657431249,45.7199280128878 -67.8167379761968,46.5033427264326 -67.6011955771075,47.4434403826863 -67.7187594605715,48.3444189796951 -67.3660678101795,48.9907361183696 -67.0917176311419,49.9308854510556 -67.1113029989805,50.7534709002777 -66.8761752320524,50.9493245786639 -66.5234835816605,51.791547072157 -66.2491334026229,52.614132521379 -66.0531763713721,53.6130379575808 -65.8963900757986,54.533550245996 -65.818048604444,55.4149434751662 -65.8768047079599,56.3550411314199 -65.9747832235853,57.1580928892357 -66.2491334026229,57.2559680519965 -66.6802182008017,58.1373612811666 -67.0133244833551,58.7445076841639 -67.2876746623926,59.9393184751842 -67.4052385458567,60.6052209816974 -67.6795887248942,61.4278064309194 -67.9538872274995,62.3874894550117 -68.0126950074476,63.1904895363951 -67.8167379761968,64.052349074159 -67.4052385458567,64.9924467304129 -67.6207292685137,65.9717151223439 -67.73834482841,66.9118644550297 -67.8559087118741,67.8911328469609 -67.9343018596608,68.8900382831629 -67.9343018596608,69.7126237323848 -68.9727914429984,69.6734529967075 -69.2275562541973,69.5559407896758 -69.6782264202147,68.5962577655835 -69.9329395549813,67.8127396991741 -70.3052682496443,67.9498889504766 -70.6971823121459,69.0663065937102 -70.677545267875,68.9291573424078 -71.0694593303766,68.4199894550359 -71.4417880250395,67.9498889504766 -71.8532874553796,68.7137699726151 -72.1668083700944,69.8693066750939 -72.2647868857198,71.0248950540046 -72.0884152223077,71.573285353486 -71.6965011598061,71.9062882831749 -71.3242241415755,72.454626906224 -71.0107032268606,73.0814103534921 -70.7167676799845,73.3360201353942 -70.3640243531602,73.8648767434692 -69.8741834514655,74.4915568378727 -69.7762049358402,75.6275598489449 -69.7370342001628,76.6264652851468 -69.6194186402665,77.6449044127552 -69.4626840211253,78.1345386087206 -69.0707699586237,78.4283708027322 -68.6984412639607,79.1138586770839 -68.3262159221625,80.0931270690149 -68.0715027873958,80.9353495625077 -67.875545756145,81.4837915384214 -67.5423877971592,82.0517672057414 -67.3660678101795,82.7764258157704 -67.2092815146059,83.7753312519724 -67.3072600302312,84.6762064961166 -67.2092815146059,85.6555265644799 -67.0917176311419,86.7523588398748 -67.1504737346577,87.4770174499038 -66.8761752320524,87.9862886901402 -66.2099109905134,88.358410679074 -66.4842611695509,88.8284078307685 -66.9545683798393,89.6706303242616 -67.1504737346577,90.6303650247863 -67.2288668824445,91.5900997253108 -67.1113029989805,92.608538852919 -67.1896961467672,93.5486365091729 -67.2092815146059,94.175419956441 -67.1113029989805,95.0175907735016 -67.1701107789287,95.7814717956402 -67.385653178018,96.6823987162168 -67.2485039267154,97.7596456237731 -67.2485039267154,98.6802095886205 -67.1113029989805,99.718182407635 -67.2485039267154,100.384188267013 -66.9153459677297,100.893356154385 -66.5822396851762,101.578895705169 -66.3078895061387,102.832410923273 -65.5632837932451,103.478676385515 -65.70048472098,104.242557407653 -65.9747832235853,104.908459914166 -66.3275265504097,106.181560500109 -66.9349313355684,107.160880568472 -66.9545683798393,108.081392856887 -66.9545683798393,109.158639764444 -66.8370044963752,110.235834995568 -66.6998035686403,111.058472121222 -66.425505066035,111.743959995574 -66.1315695191589,112.860377638807 -66.0923471070494,113.604673293107 -65.8768047079599,114.388088006652 -66.0727617392107,114.897307570456 -66.3862826539254,115.602380812647 -66.6998035686403,116.699161411609 -66.660632832963,117.384700962393 -66.9153459677297,118.579460076981 -67.1701107789287,119.832923618653 -67.268089294554,120.870999790532 -67.1896961467672,121.654414504077 -66.8761752320524,122.320368687022 -66.5626543173377,123.221295607599 -66.4842611695509,124.122274204608 -66.6214620972859,125.160247023622 -66.7193889364789,126.100396356308 -66.5626543173377,127.001426629749 -66.5626543173377,127.882768182487 -66.660632832963,128.803280470902 -66.7586113485885,129.704259067911 -66.5822396851762,130.781454299035 -66.425505066035,131.799945103076 -66.3862826539254,132.935896437716 -66.3862826539254,133.856460402563 -66.2883041383001,134.75738732314 -66.2099626669457,135.031582472881 -65.7200700888187,135.070753208558 -65.3085706584785,135.697484979393 -65.5828691610837,135.873804966373 -66.0335910035334,136.206704543198 -66.4450904338737,136.618048944241 -66.778196716427,137.460271437734 -66.9545683798393,138.596222772374 -66.8957605998911,139.908442417561 -66.8761752320524,140.80942101457 -66.8173674521043,142.12169233619 -66.8173674521043,143.061841668876 -66.7977820842657,144.374061314064 -66.8370044963752,145.490427280865 -66.9153459677297,146.195552199488 -67.2288668824445,145.999698521101 -67.6011955771075,146.646067336208 -67.8951311239837,147.723262567332 -68.1302588909117,148.839628534134 -68.3850237021106,150.132314487915 -68.5612920126582,151.48370486878 -68.718129984664,152.502247349252 -68.8748129273729,153.638198683892 -68.8945016480761,154.284567498999 -68.5612920126582,155.165857375305 -68.8356421916957,155.929790073875 -69.1492147828428,156.811131626613 -69.3842908733385,158.025527785472 -69.482269388964,159.181012811519 -69.599833272428,159.670698683916 -69.9917473349295,160.806650018556 -70.2268751018575,161.570479364263 -70.5796184286818,162.686897007496 -70.7363530478232,163.842433709975 -70.7167676799845,164.919680617531 -70.7755237835003,166.114439732119 -70.7559384156618,167.309095493843 -70.8343315634485,168.425616489941 -70.9714808147511,169.463589308956 -71.2066602581114,170.501665480835 -71.4026172893623,171.206790399458 -71.6965011598061,171.089226515994 -72.0884152223077,170.560421584351 -72.4411585491321,170.109958124062 -72.8918287151494,169.757369826535 -73.2445203655415,169.287320998408 -73.6560197958817,167.975101353221 -73.8128060914552,167.38748864163 -74.1654977418472,166.094802687848 -74.3810401409366,165.644390903992 -74.7729542034382,164.958851353209 -75.1452828981012,164.23419274318 -75.458803812816,163.822796665704 -75.8703032431562,163.568238560234 -76.2425802613868,163.470260044609 -76.6933021038365,163.48989708888 -77.0655791220672,164.0578727562 -77.4574415081365,164.273363478857 -77.8297702027994,164.743463983416 -78.1825135296237,166.604125604517 -78.319611104494,166.995781284857 -78.7507475791052,165.193875767272 -78.9074830056907,163.66621707586 -79.12302540478,161.766384719081 -79.1622478168896,160.924162225588 -79.730481866371,160.747893915041 -80.2007374002271,160.316964146159 -80.57306609489,159.788210890948 -80.945394789553,161.120015903974 -81.2785010721065,161.629287144211 -81.6900005024466,162.490991652678 -82.0622775206773,163.705336135105 -82.3954354796629,165.095948928079 -82.7089563943778,166.604125604517 -83.0224773090926,168.895665318068 -83.3359982238074,169.404781529008 -83.8258908019343,172.283933954149 -84.0414332010237,172.477048781624 -84.1179143208157,173.224083286835 -84.4137102192544,175.985671828513 -84.1589970844877,178.277211542064 -84.4725179992025,180.0 -84.71338)))","AQ","Antarctica","Antarctica","Antarctica","Antarctica","Indeterminate",12335956.0763551,NA,NA,NA +"MULTIPOLYGON (((32.7317802263775 35.1400259465884,32.8024735857528 35.1455036484114,32.9469608904408 35.3867033961337,33.6672270037249 35.3732158473055,34.5764738299005 35.6715955673588,33.9008044776842 35.2457559270576,33.9736165707835 35.058506374648,33.8664396502101 35.0935946721742,33.6753918800271 35.0178628606505,33.5256852556775 35.0386884628641,33.4758174985159 35.0003445501035,33.4559220720835 35.1014236516664,33.3838334490363 35.1627119003646,33.190977003723 35.1731247014714,32.9195723813261 35.0878327499736,32.7317802263775 35.1400259465884)))","","Northern Cyprus","Asia","Asia","Western Asia","Sovereign country",3786.36450592132,NA,NA,NA +"MULTIPOLYGON (((32.7317802263775 35.1400259465884,32.9195723813261 35.0878327499736,33.190977003723 35.1731247014714,33.3838334490363 35.1627119003646,33.4559220720835 35.1014236516664,33.4758174985159 35.0003445501035,33.5256852556775 35.0386884628641,33.6753918800271 35.0178628606505,33.8664396502101 35.0935946721742,33.9736165707835 35.058506374648,34.00488081232 34.9780978460019,32.9798271013784 34.5718694117554,32.4902962582775 34.7016547714565,32.256667107886 35.1032323267966,32.7317802263775 35.1400259465884)))","CY","Cyprus","Asia","Asia","Western Asia","Sovereign country",6207.00619061686,1152309,80.173,29786.3656529772 +"MULTIPOLYGON (((-2.16991370279862 35.1683963079167,-1.79298580566171 34.5279186060913,-1.73345455566147 33.9197128362321,-1.3880492822226 32.8640150009414,-1.12455115396631 32.6515215113571,-1.30789913573787 32.2628889023061,-2.61660478352957 32.0943462183862,-3.06898027181265 31.7244979924732,-3.64749793132015 31.6372940129807,-3.69044104655472 30.8969516057512,-4.85964616537447 30.5011876490438,-5.24212927898279 30.0004430201356,-6.06063229005377 29.7316997340017,-7.05922766766196 29.5792284205246,-8.67411617678297 28.8412889673966,-8.66558956545481 27.6564258895924,-8.81782833498667 27.6564258895924,-8.79488399904908 27.1206963160225,-9.41303748212448 27.0884760604886,-9.73534339032888 26.8609447291074,-10.1894242008776 26.8609447291074,-10.5512625797853 26.9908076034569,-11.392554897497 26.8834239771544,-11.7182197738004 26.1040917017606,-12.0307588363016 26.0308661972031,-12.5009626937254 24.7701162785782,-13.891110398809 23.6910090194593,-14.2211677718573 22.3101630721882,-14.6308326888511 21.8609398462749,-14.7509545557135 21.5006000839037,-17.0029617985611 21.4207341577966,-17.0204284326758 21.4223102889816,-16.9732478499932 21.885744533775,-16.5891369287677 22.1582343612501,-16.2619217594956 22.6793395044813,-16.3264139469959 23.0177684595609,-15.982610642958 23.723358466074,-15.4260037907422 24.359133612561,-15.0893318343607 24.520260728447,-14.8246451481617 25.1035326197253,-14.8009256657397 25.6362649602223,-14.4399399479648 26.2544184432977,-13.7738048975065 26.6188923202523,-13.1399417790144 27.6401478134205,-13.1216133699148 27.6541476717198,-12.6188366357831 28.0381855331487,-11.6889192366908 28.1486439071725,-10.9009569971044 28.8321422388809,-10.3995922510086 29.0985859237778,-9.56481116376568 29.9335737167499,-9.81471839032918 31.1777355006091,-9.43479326011936 32.0380964218365,-9.30069291832189 32.5646792668907,-8.65747636558501 33.2402452662424,-7.65417843263822 33.6970649277025,-6.91254411460142 34.1104763860375,-6.24434200685141 35.1458653834375,-5.92999426921989 35.759988104794,-5.19386349122203 35.7551821965909,-4.59100623210514 35.3307119817456,-3.64005652507007 35.399855048152,-2.60430579264408 35.1790933294012,-2.16991370279862 35.1683963079167)))","MA","Morocco","Africa","Africa","Northern Africa","Sovereign country",591718.98943203,34318082,75.309,7078.88148932392 +"MULTIPOLYGON (((36.86623 22.0,32.9 22.0,29.02 22.0,25 22,25.0 25.682499996361,25.0 29.2386545295335,24.70007 30.04419,24.95762 30.6616,24.80287 31.08929,25.16482 31.56915,26.49533 31.58568,27.45762 31.32126,28.45048 31.02577,28.91353 30.87005,29.68342 31.18686,30.09503 31.4734,30.97693 31.55586,31.68796 31.4296,31.96041 30.9336,32.19247 31.26034,32.99392 31.02407,33.7734 30.96746,34.2654347446462 31.2193573095203,34.26544 31.21936,34.8232432887838 29.7610807617182,34.9226 29.50133,34.64174 29.09942,34.42655 28.34399,34.15451 27.8233,33.92136 27.6487,33.58811 27.97136,33.13676 28.41765,32.42323 29.85108,32.32046 29.76043,32.73482 28.70523,33.34876 27.69989,34.10455 26.14227,34.47387 25.59856,34.79507 25.03375,35.69241 23.92671,35.49372 23.75237,35.52598 23.10244,36.69069 22.20485,36.86623 22.0)))","EG","Egypt","Africa","Africa","Northern Africa","Sovereign country",996311.623193406,91812566,71.12,9879.79935855302 +"MULTIPOLYGON (((25 22,25.0 20.00304,23.85 20.0,23.83766 19.58047,19.84926 21.49509,15.86085 23.40972,14.8513 22.86295,14.1438708838552 22.4912889673711,13.5814245947905 23.0405060897693,11.9995056494716 23.4716684025964,11.560669386449 24.0979092473255,10.7713635596229 24.5625320500618,10.3038468766784 24.3793132593709,9.94826134607797 24.9369536402325,9.91069257980178 25.3654546167968,9.31941084151816 26.0943248560575,9.71628584151966 26.5122063257857,9.62905602381107 27.1409534774809,9.75612837081678 27.6882585718842,9.68388471847277 28.1441738957792,9.85999799972345 28.959989732371,9.80563439295236 29.4246383733234,9.48213992680527 30.3075560572462,9.97001712407285 30.5393248560752,10.0565751481617 30.9618313664935,9.95022505050508 31.3760696477453,10.6369014827995 31.7614208033458,10.9447896663945 32.0818146835554,11.4322534522037 32.3689031031529,11.488787469131 33.1369957545232,12.66331 32.79278,13.08326 32.87882,13.91868 32.71196,15.24563 32.26508,15.71394 31.37626,16.61162 31.18218,18.02109 30.76357,19.08641 30.26639,19.57404 30.52582,20.05335 30.98576,19.82033 31.75179,20.13397 32.2382,20.85452 32.7068,21.54298 32.8432,22.89576 32.63858,23.2368 32.19149,23.60913 32.18726,23.9275 32.01667,24.92114 31.89936,25.16482 31.56915,24.80287 31.08929,24.95762 30.6616,24.70007 30.04419,25.0 29.2386545295335,25.0 25.682499996361,25 22)))","LY","Libya","Africa","Africa","Northern Africa","Sovereign country",1633720.7173726,6204108,71.659,16371.9021546442 +"MULTIPOLYGON (((47.78942 8.003,44.9636 5.00162,43.66087 4.95755,42.76967 4.25259,42.12861 4.23413,41.855083092644 3.91891192048373,41.1718 3.91909,40.76848 4.25702,39.85494 3.83879,39.5593842587659 3.42206,38.89251 3.50074,38.67114 3.61607,38.43697 3.58851,38.120915 3.598605,36.8550932380081 4.44786412767277,36.1590786328556 4.44786412767277,35.8174476623535 4.77696566346189,35.8174476623535 5.3382320827908,35.298007118233 5.506,34.70702 6.59422,34.25032 6.82607,34.0751 7.22595,33.56829 7.71334,32.95418 7.78497,33.2948 8.35458,33.8255 8.37916,33.97498 8.68456,33.96162 9.58358,34.25745 10.63009,34.73115 10.91017,34.83163 11.31896,35.26049 12.08286,35.86363 12.57828,36.27022 13.56333,36.42951 14.42211,37.59377 14.2131,37.90607 14.95943,38.51295 14.50547,39.0994 14.74064,39.34061 14.53155,40.02625 14.51959,40.8966 14.11864,41.1552 13.77333,41.59856 13.45209,42.00975 12.86582,42.35156 12.54223,42.0 12.1,41.66176 11.6312,41.73959 11.35511,41.75557 11.05091,42.31414 11.0342,42.55493 11.10511,42.776851841001 10.9268785669344,42.55876 10.57258,42.92812 10.02194,43.29699 9.54048,43.67875 9.18358,46.94834 7.99688,47.78942 8.003)))","ET","Ethiopia","Africa","Africa","Eastern Africa","Sovereign country",1132393.1671779,97366774,64.535,1424.52698442707 +"MULTIPOLYGON (((42.35156 12.54223,42.7796423683448 12.4554157576957,43.0812260272002 12.6996385767071,43.3178524106647 12.390148423711,43.2863814633989 11.9749282902459,42.7158736508965 11.7356405705183,43.1453048032421 11.4620396997489,42.776851841001 10.9268785669344,42.55493 11.10511,42.31414 11.0342,41.75557 11.05091,41.73959 11.35511,41.66176 11.6312,42.0 12.1,42.35156 12.54223)))","DJ","Djibouti","Africa","Africa","Eastern Africa","Sovereign country",21880.2505119017,912164,62.006,NA +"MULTIPOLYGON (((48.9482047585099 11.410617281698,48.9482047585097 11.410617281698,48.9420052427184 11.3942660587981,48.9384912453225 10.9823273787835,48.938232863161 9.97350006758151,48.9381295102964 9.45174896894662,48.486735874227 8.83762624758999,47.78942 8.003,46.94834 7.99688,43.67875 9.18358,43.29699 9.54048,42.92812 10.02194,42.55876 10.57258,42.776851841001 10.9268785669344,43.1453048032421 11.4620396997489,43.4706596209517 11.2777098657639,43.6666683286348 10.8641692163482,44.1178035825428 10.4455384383516,44.6142590675709 10.4422053084689,45.5569405454391 10.6980294865298,46.645401238803 10.8165493839912,47.5256575864628 11.12722809493,48.0215963071678 11.1930638696697,48.3787838071693 11.3754816756601,48.9482064145935 11.4106216496185,48.9482047585099 11.410617281698)))","","Somaliland","Africa","Africa","Eastern Africa","Indeterminate",167349.612740013,NA,NA,NA +"MULTIPOLYGON (((33.9037111971045 -0.95,31.86617 -1.02736,30.76986 -1.01455,30.4191048520192 -1.13465911215042,29.821518588996 -1.44332244222979,29.5794661801409 -1.34131316488563,29.5878377621722 -0.587405694179381,29.8195032081366 -0.205310153813372,29.8757788429024 0.597379868976361,30.0861535987627 1.06231273030629,30.4685075212903 1.58380544677971,30.8526701189481 1.84939647054381,31.1741492042358 2.20446523682126,30.77334679538 2.33988332764213,30.8338598975938 3.50916596111034,30.8338524217154 3.50917160422246,31.24556 3.7819,31.88145 3.55827,32.68642 3.79232,33.39 3.79,34.005 4.24988494736205,34.47913 3.5556,34.59607 3.05374,35.03599 1.90584,34.6721 1.17694,34.18 0.515,33.8935689696669 0.109813537861896,33.9037111971045 -0.95)))","UG","Uganda","Africa","Africa","Eastern Africa","Sovereign country",245768.479387209,38833338,59.224,1637.27508138464 +"MULTIPOLYGON (((30.4191048520192 -1.13465911215042,30.8161348813177 -1.69891407634539,30.7583089535831 -2.28725025798837,30.46967 -2.41383,30.4696736457612 -2.41385475710134,29.9383590024079 -2.34848683025424,29.6321761410786 -2.9178577612461,29.0249263852168 -2.83925790773016,29.1174788754516 -2.29221119548838,29.2548348324833 -2.21510995850891,29.2918868344366 -1.62005584066799,29.5794661801409 -1.34131316488563,29.821518588996 -1.44332244222979,30.4191048520192 -1.13465911215042)))","RW","Rwanda","Africa","Africa","Eastern Africa","Sovereign country",23365.4111927782,11345357,66.188,1629.86886584829 +"MULTIPOLYGON (((18.56 42.65,17.674921502359 43.0285625270236,17.2973734880345 43.4463406438874,16.9161564470173 43.6677224798257,16.4564429053489 44.0412397324313,16.2396602718845 44.3511432968857,15.750026075919 44.8187116562626,15.9593673031334 45.2337767604309,16.3181567725359 45.0041266953259,16.5349394060002 45.2116075709777,17.002146030351 45.2337767604309,17.8617834815264 45.0677403834771,18.5532141455917 45.0815896673315,19.0054845975576 44.860234493543,19.00548 44.86023,19.36803 44.863,19.11761 44.42307,19.59976 44.03847,19.454 43.5681,19.21852 43.52384,19.03165 43.43253,18.70648 43.20011,18.56 42.65)))","BA","Bosnia and Herzegovina","Europe","Europe","Southern Europe","Sovereign country",50605.0748516557,3566002,76.561,10516.7864355965 +"MULTIPOLYGON (((22.3805257504246 42.3202595078151,22.8813737321973 41.9992971868504,22.9523771501665 41.3379938828111,22.76177 41.3048,22.597308383889 41.1304871689432,22.0553776384443 41.1498658310527,21.674160597427 40.931274522458,21.0200403174764 40.8427269557259,20.6051819190374 41.0862263046852,20.4631750830992 41.5150890162753,20.5902474301049 41.8554041611336,20.5902465466802 41.8554089192836,20.71731 41.84711,20.76216 42.05186,21.3527 42.2068,21.5766359894021 42.2452243970619,21.91708 42.30364,22.3805257504246 42.3202595078151)))","MK","Macedonia","Europe","Europe","Southern Europe","Sovereign country",25062.2552860575,2077495,75.384,12298.4901835571 +"MULTIPOLYGON (((18.8298247928739 45.9088723580253,18.82983808765 45.9088776718919,19.5960445492416 46.1717298447445,20.2201924984628 46.1274689804866,20.76217492034 45.7345730657715,20.8743127784134 45.4163754339342,21.4835262387022 45.1811701523579,21.5620227393536 44.7689472519655,22.1450879249028 44.4784223496206,22.4590222510759 44.7025171982543,22.7057255388374 44.578002834647,22.4740084164406 44.4092276067818,22.657149692483 44.2349230006613,22.4104464047216 44.0080634629,22.5001566911802 43.642814439461,22.9860185075885 43.2111612005271,22.6048014665713 42.8985187851611,22.4365946794613 42.5803211533239,22.5450118344096 42.461362006188,22.3805257504246 42.3202595078151,21.91708 42.30364,21.5766359894021 42.2452243970619,21.54332 42.32025,21.66292 42.43922,21.77505 42.6827,21.63302 42.67717,21.43866 42.86255,21.27421 42.90959,21.143395 43.068685,20.95651 43.13094,20.81448 43.27205,20.63508 43.21671,20.49679 42.88469,20.25758 42.81275,20.3398 42.89852,19.95857 43.10604,19.63 43.2137799702705,19.48389 43.35229,19.21852 43.52384,19.454 43.5681,19.59976 44.03847,19.11761 44.42307,19.36803 44.863,19.00548 44.86023,19.0054845975576 44.860234493543,19.3904757015846 45.2365156113424,19.0727689958542 45.5215111354321,18.8298247928739 45.9088723580253)))","RS","Serbia","Europe","Europe","Southern Europe","Sovereign country",76388.6050646267,7130576,75.3365853658537,13112.9089581967 +"MULTIPOLYGON (((20.0707 42.58863,19.8016133968987 42.5000934921908,19.7380513851796 42.6882473821656,19.3044861182508 42.1957451442078,19.3717681633473 41.8775506797835,19.16246 41.95502,18.88214 42.28151,18.4500168830209 42.4799922453122,18.56 42.65,18.70648 43.20011,19.03165 43.43253,19.21852 43.52384,19.48389 43.35229,19.63 43.2137799702705,19.95857 43.10604,20.3398 42.89852,20.25758 42.81275,20.0707 42.58863)))","ME","Montenegro","Europe","Europe","Southern Europe","Sovereign country",13443.6780594717,621810,76.712,14796.6353955591 +"MULTIPOLYGON (((20.5902465466802 41.8554089192836,20.52295 42.21787,20.2837545101819 42.3202595078151,20.0707 42.58863,20.25758 42.81275,20.49679 42.88469,20.63508 43.21671,20.81448 43.27205,20.95651 43.13094,21.143395 43.068685,21.27421 42.90959,21.43866 42.86255,21.63302 42.67717,21.77505 42.6827,21.66292 42.43922,21.54332 42.32025,21.5766359894021 42.2452243970619,21.3527 42.2068,20.76216 42.05186,20.71731 41.84711,20.5902465466802 41.8554089192836)))","XK","Kosovo","Europe","Europe","Southern Europe","Sovereign country",11230.2616721538,1821800,71.0975609756098,8698.29155889883 +"MULTIPOLYGON (((-61.68 10.76,-61.105 10.89,-60.895 10.855,-60.935 10.11,-61.77 10.0,-61.95 10.09,-61.66 10.365,-61.68 10.76)))","TT","Trinidad and Tobago","North America","Americas","Caribbean","Sovereign country",7737.80985537389,1354493,70.426,31181.8211959284 +"MULTIPOLYGON (((30.8338524217154 3.50917160422246,29.9535001970695 4.17369904216768,29.715995314256 4.60080475506015,29.1590784034465 4.38926727947323,28.6966776872988 4.45507721599694,28.4289937680269 4.28715464926449,27.9799772478428 4.40841339763737,27.3742261085175 5.23394440350006,27.2134090512252 5.55095347739456,26.4659094581232 5.94671743410187,26.2134184099451 6.54660329836207,25.7966479835112 6.97931590415807,25.1241308936647 7.50008515057944,25.1149324887168 7.82510407147917,24.5673690121521 8.22918793378547,23.8869795808607 8.61972971293307,24.1940677211877 8.7286964724039,24.537415163602 8.91753756573172,24.7949257454127 9.81024091600869,25.069603699344 10.273759963268,25.7906333284139 10.4110989402337,25.962307049621 10.1364209863024,26.4773282132425 9.55273033419809,26.7520061671738 9.4668934735945,27.1125209817089 9.63856719480162,27.8335506107788 9.60423245056029,27.9708895877444 9.39822398511166,28.9665971707458 9.39822398511166,29.0009319149872 9.60423245056029,29.5159530786086 9.79307354388806,29.6189573113328 10.0849188699402,29.9966394979886 10.2909273353887,30.8378407319034 9.70723668328452,31.3528618955249 9.81024091600869,31.8507156870255 10.5312705450788,32.4000715948883 11.0806264529415,32.3142347342848 11.6814844771665,32.0738915245948 11.9733298032185,32.6747495488196 12.0248319195807,32.7434190373025 12.24800775715,33.2069380845618 12.1793382686671,33.0867664797167 11.4411412674765,33.2069380845618 10.7201116384066,33.7219592481831 10.3252620796302,33.8421308530282 9.98191463721599,33.8249634809075 9.48406084571536,33.9633927949712 9.46428522942063,33.97498 8.68456,33.8255 8.37916,33.2948 8.35458,32.95418 7.78497,33.56829 7.71334,34.0751 7.22595,34.25032 6.82607,34.70702 6.59422,35.298007118233 5.506,34.6201962678539 4.84712274208199,34.005 4.24988494736205,33.39 3.79,32.68642 3.79232,31.88145 3.55827,31.24556 3.7819,30.8338524217154 3.50917160422246)))","SS","South Sudan","Africa","Africa","Eastern Africa","Sovereign country",624909.099085845,11530971,55.817,1935.87940008879 diff --git a/data/zion.gpkg b/data/zion.gpkg new file mode 100644 index 0000000..c483da0 Binary files /dev/null and b/data/zion.gpkg differ diff --git a/data/zion_points.gpkg b/data/zion_points.gpkg new file mode 100644 index 0000000..9846833 Binary files /dev/null and b/data/zion_points.gpkg differ